Whamcloud - gitweb
LU-9040 scrub: handle group boundary properly (2)
[fs/lustre-release.git] / lustre / osd-ldiskfs / osd_scrub.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License version 2 for more details.  A copy is
14  * included in the COPYING file that accompanied this code.
15
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2012, 2016, Intel Corporation.
24  */
25 /*
26  * lustre/osd-ldiskfs/osd_scrub.c
27  *
28  * Top-level entry points into osd module
29  *
30  * The OI scrub is used for rebuilding Object Index files when restores MDT from
31  * file-level backup.
32  *
33  * The otable based iterator scans ldiskfs inode table to feed up layer LFSCK.
34  *
35  * Author: Fan Yong <yong.fan@whamcloud.com>
36  */
37
38 #define DEBUG_SUBSYSTEM S_LFSCK
39
40 #include <linux/kthread.h>
41 #include <lustre/lustre_idl.h>
42 #include <lustre_disk.h>
43 #include <dt_object.h>
44 #include <linux/xattr.h>
45
46 #include "osd_internal.h"
47 #include "osd_oi.h"
48 #include "osd_scrub.h"
49
50 #define HALF_SEC        msecs_to_jiffies(MSEC_PER_SEC >> 1)
51
52 #define OSD_OTABLE_MAX_HASH             0x00000000ffffffffULL
53
54 #define SCRUB_NEXT_BREAK        1 /* exit current loop and process next group */
55 #define SCRUB_NEXT_CONTINUE     2 /* skip current object and process next bit */
56 #define SCRUB_NEXT_EXIT         3 /* exit all the loops */
57 #define SCRUB_NEXT_WAIT         4 /* wait for free cache slot */
58 #define SCRUB_NEXT_CRASH        5 /* simulate system crash during OI scrub */
59 #define SCRUB_NEXT_FATAL        6 /* simulate failure during OI scrub */
60 #define SCRUB_NEXT_NOSCRUB      7 /* new created object, no scrub on it */
61 #define SCRUB_NEXT_NOLMA        8 /* the inode has no FID-in-LMA */
62 #define SCRUB_NEXT_OSTOBJ       9 /* for OST-object */
63 #define SCRUB_NEXT_OSTOBJ_OLD   10 /* old OST-object, no LMA or no FID-on-OST
64                                     * flags in LMA */
65
66 /* misc functions */
67
68 static inline struct osd_device *osd_scrub2dev(struct osd_scrub *scrub)
69 {
70         return container_of0(scrub, struct osd_device, od_scrub);
71 }
72
73 static inline struct super_block *osd_scrub2sb(struct osd_scrub *scrub)
74 {
75         return osd_sb(osd_scrub2dev(scrub));
76 }
77
78 static inline int osd_scrub_has_window(struct osd_scrub *scrub,
79                                        struct osd_otable_cache *ooc)
80 {
81         return scrub->os_pos_current < ooc->ooc_pos_preload + SCRUB_WINDOW_SIZE;
82 }
83
84 static inline const char *osd_scrub2name(struct osd_scrub *scrub)
85 {
86         return LDISKFS_SB(osd_scrub2sb(scrub))->s_es->s_volume_name;
87 }
88
89 /**
90  * update/insert/delete the specified OI mapping (@fid @id) according to the ops
91  *
92  * \retval   1, changed nothing
93  * \retval   0, changed successfully
94  * \retval -ve, on error
95  */
96 static int osd_scrub_refresh_mapping(struct osd_thread_info *info,
97                                      struct osd_device *dev,
98                                      const struct lu_fid *fid,
99                                      const struct osd_inode_id *id,
100                                      int ops, bool force,
101                                      enum oi_check_flags flags, bool *exist)
102 {
103         handle_t *th;
104         int       rc;
105         ENTRY;
106
107         if (dev->od_scrub.os_file.sf_param & SP_DRYRUN && !force)
108                 RETURN(0);
109
110         /* DTO_INDEX_INSERT is enough for other two ops:
111          * delete/update, but save stack. */
112         th = osd_journal_start_sb(osd_sb(dev), LDISKFS_HT_MISC,
113                                 osd_dto_credits_noquota[DTO_INDEX_INSERT]);
114         if (IS_ERR(th)) {
115                 rc = PTR_ERR(th);
116                 CDEBUG(D_LFSCK, "%s: fail to start trans for scrub op %d "
117                        DFID" => %u/%u: rc = %d\n", osd_name(dev), ops,
118                        PFID(fid), id ? id->oii_ino : -1, id ? id->oii_gen : -1,
119                        rc);
120                 RETURN(rc);
121         }
122
123         switch (ops) {
124         case DTO_INDEX_UPDATE:
125                 rc = osd_oi_update(info, dev, fid, id, th, flags);
126                 if (unlikely(rc == -ENOENT)) {
127                         /* Some unlink thread may removed the OI mapping. */
128                         rc = 1;
129                 }
130                 break;
131         case DTO_INDEX_INSERT:
132                 rc = osd_oi_insert(info, dev, fid, id, th, flags, exist);
133                 if (unlikely(rc == -EEXIST)) {
134                         rc = 1;
135                         /* XXX: There are trouble things when adding OI
136                          *      mapping for IGIF object, which may cause
137                          *      multiple objects to be mapped to the same
138                          *      IGIF formatted FID. Consider the following
139                          *      situations:
140                          *
141                          *      1) The MDT is upgrading from 1.8 device.
142                          *      The OI scrub generates IGIF FID1 for the
143                          *      OBJ1 and adds the OI mapping.
144                          *
145                          *      2) For some reason, the OI scrub does not
146                          *      process all the IGIF objects completely.
147                          *
148                          *      3) The MDT is backuped and restored against
149                          *      this device.
150                          *
151                          *      4) When the MDT mounts up, the OI scrub will
152                          *      try to rebuild the OI files. For some IGIF
153                          *      object, OBJ2, which was not processed by the
154                          *      OI scrub before the backup/restore, and the
155                          *      new generated IGIF formatted FID may be just
156                          *      the FID1, the same as OBJ1.
157                          *
158                          *      Under such case, the OI scrub cannot know how
159                          *      to generate new FID for the OBJ2.
160                          *
161                          *      Currently, we do nothing for that. One possible
162                          *      solution is to generate new normal FID for the
163                          *      conflict object.
164                          *
165                          *      Anyway, it is rare, only exists in theory. */
166                 }
167                 break;
168         case DTO_INDEX_DELETE:
169                 rc = osd_oi_delete(info, dev, fid, th, flags);
170                 if (rc == -ENOENT) {
171                         /* It is normal that the unlink thread has removed the
172                          * OI mapping already. */
173                         rc = 1;
174                 }
175                 break;
176         default:
177                 LASSERTF(0, "Unexpected ops %d\n", ops);
178                 break;
179         }
180
181         ldiskfs_journal_stop(th);
182         if (rc < 0)
183                 CDEBUG(D_LFSCK, "%s: fail to refresh OI map for scrub op %d "
184                        DFID" => %u/%u: rc = %d\n", osd_name(dev), ops,
185                        PFID(fid), id ? id->oii_ino : -1, id ? id->oii_gen : -1,
186                        rc);
187
188         RETURN(rc);
189 }
190
191 /* OI_scrub file ops */
192
193 static void osd_scrub_file_to_cpu(struct scrub_file *des,
194                                   struct scrub_file *src)
195 {
196         memcpy(des->sf_uuid, src->sf_uuid, 16);
197         des->sf_flags   = le64_to_cpu(src->sf_flags);
198         des->sf_magic   = le32_to_cpu(src->sf_magic);
199         des->sf_status  = le16_to_cpu(src->sf_status);
200         des->sf_param   = le16_to_cpu(src->sf_param);
201         des->sf_time_last_complete      =
202                                 le64_to_cpu(src->sf_time_last_complete);
203         des->sf_time_latest_start       =
204                                 le64_to_cpu(src->sf_time_latest_start);
205         des->sf_time_last_checkpoint    =
206                                 le64_to_cpu(src->sf_time_last_checkpoint);
207         des->sf_pos_latest_start        =
208                                 le64_to_cpu(src->sf_pos_latest_start);
209         des->sf_pos_last_checkpoint     =
210                                 le64_to_cpu(src->sf_pos_last_checkpoint);
211         des->sf_pos_first_inconsistent  =
212                                 le64_to_cpu(src->sf_pos_first_inconsistent);
213         des->sf_items_checked           =
214                                 le64_to_cpu(src->sf_items_checked);
215         des->sf_items_updated           =
216                                 le64_to_cpu(src->sf_items_updated);
217         des->sf_items_failed            =
218                                 le64_to_cpu(src->sf_items_failed);
219         des->sf_items_updated_prior     =
220                                 le64_to_cpu(src->sf_items_updated_prior);
221         des->sf_run_time        = le32_to_cpu(src->sf_run_time);
222         des->sf_success_count   = le32_to_cpu(src->sf_success_count);
223         des->sf_oi_count        = le16_to_cpu(src->sf_oi_count);
224         des->sf_internal_flags  = le16_to_cpu(src->sf_internal_flags);
225         memcpy(des->sf_oi_bitmap, src->sf_oi_bitmap, SCRUB_OI_BITMAP_SIZE);
226 }
227
228 static void osd_scrub_file_to_le(struct scrub_file *des,
229                                  struct scrub_file *src)
230 {
231         memcpy(des->sf_uuid, src->sf_uuid, 16);
232         des->sf_flags   = cpu_to_le64(src->sf_flags);
233         des->sf_magic   = cpu_to_le32(src->sf_magic);
234         des->sf_status  = cpu_to_le16(src->sf_status);
235         des->sf_param   = cpu_to_le16(src->sf_param);
236         des->sf_time_last_complete      =
237                                 cpu_to_le64(src->sf_time_last_complete);
238         des->sf_time_latest_start       =
239                                 cpu_to_le64(src->sf_time_latest_start);
240         des->sf_time_last_checkpoint    =
241                                 cpu_to_le64(src->sf_time_last_checkpoint);
242         des->sf_pos_latest_start        =
243                                 cpu_to_le64(src->sf_pos_latest_start);
244         des->sf_pos_last_checkpoint     =
245                                 cpu_to_le64(src->sf_pos_last_checkpoint);
246         des->sf_pos_first_inconsistent  =
247                                 cpu_to_le64(src->sf_pos_first_inconsistent);
248         des->sf_items_checked           =
249                                 cpu_to_le64(src->sf_items_checked);
250         des->sf_items_updated           =
251                                 cpu_to_le64(src->sf_items_updated);
252         des->sf_items_failed            =
253                                 cpu_to_le64(src->sf_items_failed);
254         des->sf_items_updated_prior     =
255                                 cpu_to_le64(src->sf_items_updated_prior);
256         des->sf_run_time        = cpu_to_le32(src->sf_run_time);
257         des->sf_success_count   = cpu_to_le32(src->sf_success_count);
258         des->sf_oi_count        = cpu_to_le16(src->sf_oi_count);
259         des->sf_internal_flags  = cpu_to_le16(src->sf_internal_flags);
260         memcpy(des->sf_oi_bitmap, src->sf_oi_bitmap, SCRUB_OI_BITMAP_SIZE);
261 }
262
263 static void osd_scrub_file_init(struct osd_scrub *scrub, __u8 *uuid)
264 {
265         struct scrub_file *sf = &scrub->os_file;
266
267         memset(sf, 0, sizeof(*sf));
268         memcpy(sf->sf_uuid, uuid, 16);
269         sf->sf_magic = SCRUB_MAGIC_V1;
270         sf->sf_status = SS_INIT;
271 }
272
273 void osd_scrub_file_reset(struct osd_scrub *scrub, __u8 *uuid, __u64 flags)
274 {
275         struct scrub_file *sf = &scrub->os_file;
276
277         CDEBUG(D_LFSCK, "%.16s: reset OI scrub file, old flags = "
278                "%#llx, add flags = %#llx\n",
279                osd_scrub2name(scrub), sf->sf_flags, flags);
280
281         memcpy(sf->sf_uuid, uuid, 16);
282         sf->sf_status = SS_INIT;
283         sf->sf_flags |= flags;
284         sf->sf_flags &= ~SF_AUTO;
285         sf->sf_run_time = 0;
286         sf->sf_time_latest_start = 0;
287         sf->sf_time_last_checkpoint = 0;
288         sf->sf_pos_latest_start = 0;
289         sf->sf_pos_last_checkpoint = 0;
290         sf->sf_pos_first_inconsistent = 0;
291         sf->sf_items_checked = 0;
292         sf->sf_items_updated = 0;
293         sf->sf_items_failed = 0;
294         if (!scrub->os_in_join)
295                 sf->sf_items_updated_prior = 0;
296
297         sf->sf_items_noscrub = 0;
298         sf->sf_items_igif = 0;
299 }
300
301 static int osd_scrub_file_load(struct osd_scrub *scrub)
302 {
303         loff_t  pos  = 0;
304         int     len  = sizeof(scrub->os_file_disk);
305         int     rc;
306
307         rc = osd_ldiskfs_read(scrub->os_inode, &scrub->os_file_disk, len, &pos);
308         if (rc == len) {
309                 struct scrub_file *sf = &scrub->os_file;
310
311                 osd_scrub_file_to_cpu(sf, &scrub->os_file_disk);
312                 if (sf->sf_magic != SCRUB_MAGIC_V1) {
313                         CDEBUG(D_LFSCK, "%.16s: invalid scrub magic "
314                                "0x%x != 0x%x\n", osd_scrub2name(scrub),
315                                sf->sf_magic, SCRUB_MAGIC_V1);
316                         /* Process it as new scrub file. */
317                         rc = -ENOENT;
318                 } else {
319                         rc = 0;
320                 }
321         } else if (rc != 0) {
322                 CDEBUG(D_LFSCK, "%.16s: fail to load scrub file, "
323                        "expected = %d: rc = %d\n",
324                        osd_scrub2name(scrub), len, rc);
325                 if (rc > 0)
326                         rc = -EFAULT;
327         } else {
328                 /* return -ENOENT for empty scrub file case. */
329                 rc = -ENOENT;
330         }
331
332         return rc;
333 }
334
335 int osd_scrub_file_store(struct osd_scrub *scrub)
336 {
337         struct osd_device *dev;
338         handle_t          *jh;
339         loff_t             pos     = 0;
340         int                len     = sizeof(scrub->os_file_disk);
341         int                credits;
342         int                rc;
343
344         dev = container_of0(scrub, struct osd_device, od_scrub);
345         credits = osd_dto_credits_noquota[DTO_WRITE_BASE] +
346                   osd_dto_credits_noquota[DTO_WRITE_BLOCK];
347         jh = osd_journal_start_sb(osd_sb(dev), LDISKFS_HT_MISC, credits);
348         if (IS_ERR(jh)) {
349                 rc = PTR_ERR(jh);
350                 CDEBUG(D_LFSCK, "%.16s: fail to start trans for scrub store: "
351                        "rc = %d\n", osd_scrub2name(scrub), rc);
352                 return rc;
353         }
354
355         osd_scrub_file_to_le(&scrub->os_file_disk, &scrub->os_file);
356         rc = osd_ldiskfs_write_record(scrub->os_inode, &scrub->os_file_disk,
357                                       len, 0, &pos, jh);
358         ldiskfs_journal_stop(jh);
359         if (rc != 0)
360                 CDEBUG(D_LFSCK, "%.16s: fail to store scrub file, "
361                        "expected = %d: rc = %d\n",
362                        osd_scrub2name(scrub), len, rc);
363
364         scrub->os_time_last_checkpoint = cfs_time_current();
365         scrub->os_time_next_checkpoint = scrub->os_time_last_checkpoint +
366                                 cfs_time_seconds(SCRUB_CHECKPOINT_INTERVAL);
367         return rc;
368 }
369
370 static int
371 osd_scrub_convert_ff(struct osd_thread_info *info, struct osd_device *dev,
372                      struct inode *inode, const struct lu_fid *fid)
373 {
374         struct filter_fid_old   *ff      = &info->oti_ff;
375         struct dentry           *dentry  = &info->oti_obj_dentry;
376         struct lu_fid           *tfid    = &info->oti_fid;
377         handle_t                *jh;
378         int                      size    = 0;
379         int                      rc;
380         bool                     removed = false;
381         bool                     reset   = true;
382         ENTRY;
383
384         if (dev->od_scrub.os_file.sf_param & SP_DRYRUN)
385                 RETURN(0);
386
387         if (fid_is_idif(fid) && dev->od_index_in_idif == 0) {
388                 struct ost_id *oi = &info->oti_ostid;
389
390                 fid_to_ostid(fid, oi);
391                 ostid_to_fid(tfid, oi, 0);
392         } else {
393                 *tfid = *fid;
394         }
395
396         /* We want the LMA to fit into the 256-byte OST inode, so operate
397          * as following:
398          * 1) read old XATTR_NAME_FID and save the parent FID;
399          * 2) delete the old XATTR_NAME_FID;
400          * 3) make new LMA and add it;
401          * 4) generate new XATTR_NAME_FID with the saved parent FID and add it.
402          *
403          * Making the LMA to fit into the 256-byte OST inode can save time for
404          * normal osd_check_lma() and for other OI scrub scanning in future.
405          * So it is worth to make some slow conversion here. */
406         jh = osd_journal_start_sb(osd_sb(dev), LDISKFS_HT_MISC,
407                                 osd_dto_credits_noquota[DTO_XATTR_SET] * 3);
408         if (IS_ERR(jh)) {
409                 rc = PTR_ERR(jh);
410                 CDEBUG(D_LFSCK, "%s: fail to start trans for convert ff "
411                        DFID": rc = %d\n", osd_name(dev), PFID(tfid), rc);
412                 RETURN(rc);
413         }
414
415         /* 1) read old XATTR_NAME_FID and save the parent FID */
416         rc = __osd_xattr_get(inode, dentry, XATTR_NAME_FID, ff, sizeof(*ff));
417         if (rc == sizeof(*ff)) {
418                 /* 2) delete the old XATTR_NAME_FID */
419                 ll_vfs_dq_init(inode);
420                 rc = inode->i_op->removexattr(dentry, XATTR_NAME_FID);
421                 if (rc != 0)
422                         GOTO(stop, rc);
423
424                 removed = true;
425         } else if (unlikely(rc == -ENODATA)) {
426                 reset = false;
427         } else if (rc != sizeof(struct filter_fid)) {
428                 GOTO(stop, rc = -EINVAL);
429         }
430
431         /* 3) make new LMA and add it */
432         rc = osd_ea_fid_set(info, inode, tfid, LMAC_FID_ON_OST, 0);
433         if (rc == 0 && reset)
434                 size = sizeof(struct filter_fid);
435         else if (rc != 0 && removed)
436                 /* If failed, we should try to add the old back. */
437                 size = sizeof(struct filter_fid_old);
438
439         /* 4) generate new XATTR_NAME_FID with the saved parent FID and add it*/
440         if (size > 0) {
441                 int rc1;
442
443                 rc1 = __osd_xattr_set(info, inode, XATTR_NAME_FID, ff, size,
444                                       XATTR_CREATE);
445                 if (rc1 != 0 && rc == 0)
446                         rc = rc1;
447         }
448
449         GOTO(stop, rc);
450
451 stop:
452         ldiskfs_journal_stop(jh);
453         if (rc < 0)
454                 CDEBUG(D_LFSCK, "%s: fail to convert ff "DFID": rc = %d\n",
455                        osd_name(dev), PFID(tfid), rc);
456         return rc;
457 }
458
459 static int
460 osd_scrub_check_update(struct osd_thread_info *info, struct osd_device *dev,
461                        struct osd_idmap_cache *oic, int val)
462 {
463         struct osd_scrub             *scrub  = &dev->od_scrub;
464         struct scrub_file            *sf     = &scrub->os_file;
465         struct lu_fid                *fid    = &oic->oic_fid;
466         struct osd_inode_id          *lid    = &oic->oic_lid;
467         struct osd_inode_id          *lid2   = &info->oti_id;
468         struct osd_inconsistent_item *oii    = NULL;
469         struct inode                 *inode  = NULL;
470         int                           ops    = DTO_INDEX_UPDATE;
471         int                           rc;
472         bool                          converted = false;
473         bool                          exist     = false;
474         ENTRY;
475
476         down_write(&scrub->os_rwsem);
477         scrub->os_new_checked++;
478         if (val < 0)
479                 GOTO(out, rc = val);
480
481         if (scrub->os_in_prior)
482                 oii = list_entry(oic, struct osd_inconsistent_item,
483                                  oii_cache);
484
485         if (lid->oii_ino < sf->sf_pos_latest_start && oii == NULL)
486                 GOTO(out, rc = 0);
487
488         if (fid_is_igif(fid))
489                 sf->sf_items_igif++;
490
491         if (val == SCRUB_NEXT_OSTOBJ_OLD) {
492                 inode = osd_iget(info, dev, lid);
493                 if (IS_ERR(inode)) {
494                         rc = PTR_ERR(inode);
495                         /* Someone removed the inode. */
496                         if (rc == -ENOENT || rc == -ESTALE)
497                                 rc = 0;
498                         GOTO(out, rc);
499                 }
500
501                 /* The inode has been reused as EA inode, ignore it. */
502                 if (unlikely(osd_is_ea_inode(inode)))
503                         GOTO(out, rc = 0);
504
505                 sf->sf_flags |= SF_UPGRADE;
506                 sf->sf_internal_flags &= ~SIF_NO_HANDLE_OLD_FID;
507                 dev->od_check_ff = 1;
508                 rc = osd_scrub_convert_ff(info, dev, inode, fid);
509                 if (rc != 0)
510                         GOTO(out, rc);
511
512                 converted = true;
513         }
514
515         if ((val == SCRUB_NEXT_NOLMA) &&
516             (!scrub->os_convert_igif || OBD_FAIL_CHECK(OBD_FAIL_FID_NOLMA)))
517                 GOTO(out, rc = 0);
518
519         if ((oii != NULL && oii->oii_insert) || (val == SCRUB_NEXT_NOLMA)) {
520                 ops = DTO_INDEX_INSERT;
521
522                 goto iget;
523         }
524
525         rc = osd_oi_lookup(info, dev, fid, lid2,
526                 (val == SCRUB_NEXT_OSTOBJ ||
527                  val == SCRUB_NEXT_OSTOBJ_OLD) ? OI_KNOWN_ON_OST : 0);
528         if (rc != 0) {
529                 if (rc == -ENOENT)
530                         ops = DTO_INDEX_INSERT;
531                 else if (rc != -ESTALE)
532                         GOTO(out, rc);
533
534 iget:
535                 if (inode == NULL) {
536                         inode = osd_iget(info, dev, lid);
537                         if (IS_ERR(inode)) {
538                                 rc = PTR_ERR(inode);
539                                 /* Someone removed the inode. */
540                                 if (rc == -ENOENT || rc == -ESTALE)
541                                         rc = 0;
542                                 GOTO(out, rc);
543                         }
544
545                         /* The inode has been reused as EA inode, ignore it. */
546                         if (unlikely(osd_is_ea_inode(inode)))
547                                 GOTO(out, rc = 0);
548                 }
549
550                 if (!scrub->os_partial_scan)
551                         scrub->os_full_speed = 1;
552
553                 switch (val) {
554                 case SCRUB_NEXT_NOLMA:
555                         sf->sf_flags |= SF_UPGRADE;
556                         if (!(sf->sf_param & SP_DRYRUN)) {
557                                 rc = osd_ea_fid_set(info, inode, fid, 0, 0);
558                                 if (rc != 0)
559                                         GOTO(out, rc);
560                         }
561
562                         if (!(sf->sf_flags & SF_INCONSISTENT))
563                                 dev->od_igif_inoi = 0;
564                         break;
565                 case SCRUB_NEXT_OSTOBJ:
566                         sf->sf_flags |= SF_INCONSISTENT;
567                 case SCRUB_NEXT_OSTOBJ_OLD:
568                         break;
569                 default:
570                         break;
571                 }
572         } else if (osd_id_eq(lid, lid2)) {
573                 if (converted)
574                         sf->sf_items_updated++;
575
576                 GOTO(out, rc = 0);
577         } else {
578                 if (!scrub->os_partial_scan)
579                         scrub->os_full_speed = 1;
580
581                 sf->sf_flags |= SF_INCONSISTENT;
582
583                 /* XXX: If the device is restored from file-level backup, then
584                  *      some IGIFs may have been already in OI files, and some
585                  *      may be not yet. Means upgrading from 1.8 may be partly
586                  *      processed, but some clients may hold some immobilized
587                  *      IGIFs, and use them to access related objects. Under
588                  *      such case, OSD does not know whether an given IGIF has
589                  *      been processed or to be processed, and it also cannot
590                  *      generate local ino#/gen# directly from the immobilized
591                  *      IGIF because of the backup/restore. Then force OSD to
592                  *      lookup the given IGIF in OI files, and if no entry,
593                  *      then ask the client to retry after upgrading completed.
594                  *      No better choice. */
595                 dev->od_igif_inoi = 1;
596         }
597
598         rc = osd_scrub_refresh_mapping(info, dev, fid, lid, ops, false,
599                         (val == SCRUB_NEXT_OSTOBJ ||
600                          val == SCRUB_NEXT_OSTOBJ_OLD) ? OI_KNOWN_ON_OST : 0,
601                         &exist);
602         if (rc == 0) {
603                 if (scrub->os_in_prior)
604                         sf->sf_items_updated_prior++;
605                 else
606                         sf->sf_items_updated++;
607
608                 if (ops == DTO_INDEX_INSERT && val == 0 && !exist) {
609                         int idx = osd_oi_fid2idx(dev, fid);
610
611                         sf->sf_flags |= SF_RECREATED;
612                         if (unlikely(!ldiskfs_test_bit(idx, sf->sf_oi_bitmap)))
613                                 ldiskfs_set_bit(idx, sf->sf_oi_bitmap);
614                 }
615         }
616
617         GOTO(out, rc);
618
619 out:
620         if (rc < 0) {
621                 sf->sf_items_failed++;
622                 if (sf->sf_pos_first_inconsistent == 0 ||
623                     sf->sf_pos_first_inconsistent > lid->oii_ino)
624                         sf->sf_pos_first_inconsistent = lid->oii_ino;
625         } else {
626                 rc = 0;
627         }
628
629         /* There may be conflict unlink during the OI scrub,
630          * if happend, then remove the new added OI mapping. */
631         if (ops == DTO_INDEX_INSERT && inode != NULL && !IS_ERR(inode) &&
632             unlikely(ldiskfs_test_inode_state(inode,
633                                               LDISKFS_STATE_LUSTRE_DESTROY)))
634                 osd_scrub_refresh_mapping(info, dev, fid, lid,
635                                 DTO_INDEX_DELETE, false,
636                                 (val == SCRUB_NEXT_OSTOBJ ||
637                                  val == SCRUB_NEXT_OSTOBJ_OLD) ?
638                                 OI_KNOWN_ON_OST : 0, NULL);
639         up_write(&scrub->os_rwsem);
640
641         if (inode != NULL && !IS_ERR(inode))
642                 iput(inode);
643
644         if (oii != NULL) {
645                 spin_lock(&scrub->os_lock);
646                 if (likely(!list_empty(&oii->oii_list)))
647                         list_del(&oii->oii_list);
648                 spin_unlock(&scrub->os_lock);
649
650                 OBD_FREE_PTR(oii);
651         }
652
653         RETURN(sf->sf_param & SP_FAILOUT ? rc : 0);
654 }
655
656 /* OI scrub APIs */
657
658 static int osd_scrub_prep(struct osd_device *dev)
659 {
660         struct osd_scrub     *scrub  = &dev->od_scrub;
661         struct ptlrpc_thread *thread = &scrub->os_thread;
662         struct scrub_file    *sf     = &scrub->os_file;
663         __u32                 flags  = scrub->os_start_flags;
664         int                   rc;
665         bool                  drop_dryrun = false;
666         ENTRY;
667
668         CDEBUG(D_LFSCK, "%.16s: OI scrub prep, flags = 0x%x\n",
669                osd_scrub2name(scrub), flags);
670
671         down_write(&scrub->os_rwsem);
672         if (flags & SS_SET_FAILOUT)
673                 sf->sf_param |= SP_FAILOUT;
674         else if (flags & SS_CLEAR_FAILOUT)
675                 sf->sf_param &= ~SP_FAILOUT;
676
677         if (flags & SS_SET_DRYRUN) {
678                 sf->sf_param |= SP_DRYRUN;
679         } else if (flags & SS_CLEAR_DRYRUN && sf->sf_param & SP_DRYRUN) {
680                 sf->sf_param &= ~SP_DRYRUN;
681                 drop_dryrun = true;
682         }
683
684         if (flags & SS_RESET)
685                 osd_scrub_file_reset(scrub,
686                         LDISKFS_SB(osd_sb(dev))->s_es->s_uuid, 0);
687
688         if (flags & SS_AUTO_FULL) {
689                 scrub->os_full_speed = 1;
690                 scrub->os_partial_scan = 0;
691                 sf->sf_flags |= SF_AUTO;
692         } else if (flags & SS_AUTO_PARTIAL) {
693                 scrub->os_full_speed = 0;
694                 scrub->os_partial_scan = 1;
695                 sf->sf_flags |= SF_AUTO;
696         } else if (sf->sf_flags & (SF_RECREATED | SF_INCONSISTENT |
697                                    SF_UPGRADE)) {
698                 scrub->os_full_speed = 1;
699                 scrub->os_partial_scan = 0;
700         } else {
701                 scrub->os_full_speed = 0;
702                 scrub->os_partial_scan = 0;
703         }
704
705         spin_lock(&scrub->os_lock);
706         scrub->os_in_prior = 0;
707         scrub->os_waiting = 0;
708         scrub->os_paused = 0;
709         scrub->os_in_join = 0;
710         scrub->os_full_scrub = 0;
711         spin_unlock(&scrub->os_lock);
712         scrub->os_new_checked = 0;
713         if (drop_dryrun && sf->sf_pos_first_inconsistent != 0)
714                 sf->sf_pos_latest_start = sf->sf_pos_first_inconsistent;
715         else if (sf->sf_pos_last_checkpoint != 0)
716                 sf->sf_pos_latest_start = sf->sf_pos_last_checkpoint + 1;
717         else
718                 sf->sf_pos_latest_start = LDISKFS_FIRST_INO(osd_sb(dev)) + 1;
719
720         scrub->os_pos_current = sf->sf_pos_latest_start;
721         sf->sf_status = SS_SCANNING;
722         sf->sf_time_latest_start = cfs_time_current_sec();
723         sf->sf_time_last_checkpoint = sf->sf_time_latest_start;
724         sf->sf_pos_last_checkpoint = sf->sf_pos_latest_start - 1;
725         rc = osd_scrub_file_store(scrub);
726         if (rc == 0) {
727                 spin_lock(&scrub->os_lock);
728                 thread_set_flags(thread, SVC_RUNNING);
729                 spin_unlock(&scrub->os_lock);
730                 wake_up_all(&thread->t_ctl_waitq);
731         }
732         up_write(&scrub->os_rwsem);
733
734         RETURN(rc);
735 }
736
737 static int osd_scrub_checkpoint(struct osd_scrub *scrub)
738 {
739         struct scrub_file *sf = &scrub->os_file;
740         int                rc;
741
742         if (likely(cfs_time_before(cfs_time_current(),
743                                    scrub->os_time_next_checkpoint) ||
744                    scrub->os_new_checked == 0))
745                 return 0;
746
747         down_write(&scrub->os_rwsem);
748         sf->sf_items_checked += scrub->os_new_checked;
749         scrub->os_new_checked = 0;
750         sf->sf_pos_last_checkpoint = scrub->os_pos_current;
751         sf->sf_time_last_checkpoint = cfs_time_current_sec();
752         sf->sf_run_time += cfs_duration_sec(cfs_time_current() + HALF_SEC -
753                                             scrub->os_time_last_checkpoint);
754         rc = osd_scrub_file_store(scrub);
755         up_write(&scrub->os_rwsem);
756
757         return rc;
758 }
759
760 static int osd_scrub_post(struct osd_scrub *scrub, int result)
761 {
762         struct scrub_file *sf = &scrub->os_file;
763         int rc;
764         ENTRY;
765
766         CDEBUG(D_LFSCK, "%.16s: OI scrub post, result = %d\n",
767                osd_scrub2name(scrub), result);
768
769         down_write(&scrub->os_rwsem);
770         spin_lock(&scrub->os_lock);
771         thread_set_flags(&scrub->os_thread, SVC_STOPPING);
772         spin_unlock(&scrub->os_lock);
773         if (scrub->os_new_checked > 0) {
774                 sf->sf_items_checked += scrub->os_new_checked;
775                 scrub->os_new_checked = 0;
776                 sf->sf_pos_last_checkpoint = scrub->os_pos_current;
777         }
778         sf->sf_time_last_checkpoint = cfs_time_current_sec();
779         if (result > 0) {
780                 struct osd_device *dev =
781                         container_of0(scrub, struct osd_device, od_scrub);
782
783                 dev->od_igif_inoi = 1;
784                 dev->od_check_ff = 0;
785                 sf->sf_status = SS_COMPLETED;
786                 if (!(sf->sf_param & SP_DRYRUN)) {
787                         memset(sf->sf_oi_bitmap, 0, SCRUB_OI_BITMAP_SIZE);
788                         sf->sf_flags &= ~(SF_RECREATED | SF_INCONSISTENT |
789                                           SF_UPGRADE | SF_AUTO);
790                 }
791                 sf->sf_time_last_complete = sf->sf_time_last_checkpoint;
792                 sf->sf_success_count++;
793         } else if (result == 0) {
794                 if (scrub->os_paused)
795                         sf->sf_status = SS_PAUSED;
796                 else
797                         sf->sf_status = SS_STOPPED;
798         } else {
799                 sf->sf_status = SS_FAILED;
800         }
801         sf->sf_run_time += cfs_duration_sec(cfs_time_current() + HALF_SEC -
802                                             scrub->os_time_last_checkpoint);
803         rc = osd_scrub_file_store(scrub);
804         up_write(&scrub->os_rwsem);
805
806         RETURN(rc < 0 ? rc : result);
807 }
808
809 /* iteration engine */
810
811 struct osd_iit_param {
812         struct super_block *sb;
813         struct buffer_head *bitmap;
814         ldiskfs_group_t bg;
815         __u32 gbase;
816         __u32 offset;
817 };
818
819 typedef int (*osd_iit_next_policy)(struct osd_thread_info *info,
820                                    struct osd_device *dev,
821                                    struct osd_iit_param *param,
822                                    struct osd_idmap_cache **oic,
823                                    const bool noslot);
824
825 typedef int (*osd_iit_exec_policy)(struct osd_thread_info *info,
826                                    struct osd_device *dev,
827                                    struct osd_iit_param *param,
828                                    struct osd_idmap_cache *oic,
829                                    bool *noslot, int rc);
830
831 static int osd_iit_next(struct osd_iit_param *param, __u32 *pos)
832 {
833         param->offset = ldiskfs_find_next_bit(param->bitmap->b_data,
834                         LDISKFS_INODES_PER_GROUP(param->sb), param->offset);
835         if (param->offset >= LDISKFS_INODES_PER_GROUP(param->sb)) {
836                 *pos = 1 + (param->bg+1) * LDISKFS_INODES_PER_GROUP(param->sb);
837                 return SCRUB_NEXT_BREAK;
838         } else {
839                 *pos = param->gbase + param->offset;
840                 return 0;
841         }
842 }
843
844 /**
845  * \retval SCRUB_NEXT_OSTOBJ_OLD: FID-on-OST
846  * \retval 0: FID-on-MDT
847  */
848 static int osd_scrub_check_local_fldb(struct osd_thread_info *info,
849                                       struct osd_device *dev,
850                                       struct lu_fid *fid)
851 {
852         /* XXX: The initial OI scrub will scan the top level /O to generate
853          *      a small local FLDB according to the <seq>. If the given FID
854          *      is in the local FLDB, then it is FID-on-OST; otherwise it's
855          *      quite possible for FID-on-MDT. */
856         if (dev->od_is_ost)
857                 return SCRUB_NEXT_OSTOBJ_OLD;
858         else
859                 return 0;
860 }
861
862 static int osd_scrub_get_fid(struct osd_thread_info *info,
863                              struct osd_device *dev, struct inode *inode,
864                              struct lu_fid *fid, bool scrub)
865 {
866         struct lustre_mdt_attrs *lma     = &info->oti_mdt_attrs;
867         int                      rc;
868         bool                     has_lma = false;
869
870         rc = osd_get_lma(info, inode, &info->oti_obj_dentry, lma);
871         if (rc == 0) {
872                 has_lma = true;
873                 if (lma->lma_compat & LMAC_NOT_IN_OI ||
874                     lma->lma_incompat & LMAI_AGENT)
875                         return SCRUB_NEXT_CONTINUE;
876
877                 *fid = lma->lma_self_fid;
878                 if (!scrub)
879                         return 0;
880
881                 if (lma->lma_compat & LMAC_FID_ON_OST)
882                         return SCRUB_NEXT_OSTOBJ;
883
884                 if (fid_is_idif(fid))
885                         return SCRUB_NEXT_OSTOBJ_OLD;
886
887                 /* For local object. */
888                 if (fid_is_internal(fid))
889                         return 0;
890
891                 /* For external visible MDT-object with non-normal FID. */
892                 if (fid_is_namespace_visible(fid) && !fid_is_norm(fid))
893                         return 0;
894
895                 /* For the object with normal FID, it may be MDT-object,
896                  * or may be 2.4 OST-object, need further distinguish.
897                  * Fall through to next section. */
898         }
899
900         if (rc == -ENODATA || rc == 0) {
901                 rc = osd_get_idif(info, inode, &info->oti_obj_dentry, fid);
902                 if (rc == 0) {
903                         if (scrub)
904                                 /* It is old 2.x (x <= 3) or 1.8 OST-object. */
905                                 rc = SCRUB_NEXT_OSTOBJ_OLD;
906                         return rc;
907                 }
908
909                 if (rc > 0) {
910                         if (!has_lma)
911                                 /* It is FID-on-OST, but we do not know how
912                                  * to generate its FID, ignore it directly. */
913                                 rc = SCRUB_NEXT_CONTINUE;
914                         else
915                                 /* It is 2.4 OST-object. */
916                                 rc = SCRUB_NEXT_OSTOBJ_OLD;
917                         return rc;
918                 }
919
920                 if (rc != -ENODATA)
921                         return rc;
922
923                 if (!has_lma) {
924                         if (dev->od_scrub.os_convert_igif) {
925                                 lu_igif_build(fid, inode->i_ino,
926                                               inode->i_generation);
927                                 if (scrub)
928                                         rc = SCRUB_NEXT_NOLMA;
929                                 else
930                                         rc = 0;
931                         } else {
932                                 /* It may be FID-on-OST, or may be FID for
933                                  * non-MDT0, anyway, we do not know how to
934                                  * generate its FID, ignore it directly. */
935                                 rc = SCRUB_NEXT_CONTINUE;
936                         }
937                         return rc;
938                 }
939
940                 /* For OI scrub case only: the object has LMA but has no ff
941                  * (or ff crashed). It may be MDT-object, may be OST-object
942                  * with crashed ff. The last check is local FLDB. */
943                 rc = osd_scrub_check_local_fldb(info, dev, fid);
944         }
945
946         return rc;
947 }
948
949 static int osd_iit_iget(struct osd_thread_info *info, struct osd_device *dev,
950                         struct lu_fid *fid, struct osd_inode_id *lid, __u32 pos,
951                         struct super_block *sb, bool scrub)
952 {
953         struct inode *inode;
954         int           rc;
955         ENTRY;
956
957         /* Not handle the backend root object and agent parent object.
958          * They are neither visible to namespace nor have OI mappings. */
959         if (unlikely(pos == osd_sb(dev)->s_root->d_inode->i_ino ||
960                      pos == osd_remote_parent_ino(dev)))
961                 RETURN(SCRUB_NEXT_CONTINUE);
962
963         osd_id_gen(lid, pos, OSD_OII_NOGEN);
964         inode = osd_iget(info, dev, lid);
965         if (IS_ERR(inode)) {
966                 rc = PTR_ERR(inode);
967                 /* The inode may be removed after bitmap searching, or the
968                  * file is new created without inode initialized yet. */
969                 if (rc == -ENOENT || rc == -ESTALE)
970                         RETURN(SCRUB_NEXT_CONTINUE);
971
972                 CDEBUG(D_LFSCK, "%.16s: fail to read inode, ino# = %u: "
973                        "rc = %d\n", LDISKFS_SB(sb)->s_es->s_volume_name,
974                        pos, rc);
975                 RETURN(rc);
976         }
977
978         /* It is an EA inode, no OI mapping for it, skip it. */
979         if (osd_is_ea_inode(inode))
980                 GOTO(put, rc = SCRUB_NEXT_CONTINUE);
981
982         if (scrub &&
983             ldiskfs_test_inode_state(inode, LDISKFS_STATE_LUSTRE_NOSCRUB)) {
984                 /* Only skip it for the first OI scrub accessing. */
985                 ldiskfs_clear_inode_state(inode, LDISKFS_STATE_LUSTRE_NOSCRUB);
986                 GOTO(put, rc = SCRUB_NEXT_NOSCRUB);
987         }
988
989         rc = osd_scrub_get_fid(info, dev, inode, fid, scrub);
990
991         GOTO(put, rc);
992
993 put:
994         iput(inode);
995         return rc;
996 }
997
998 static int osd_scrub_next(struct osd_thread_info *info, struct osd_device *dev,
999                           struct osd_iit_param *param,
1000                           struct osd_idmap_cache **oic, const bool noslot)
1001 {
1002         struct osd_scrub     *scrub  = &dev->od_scrub;
1003         struct ptlrpc_thread *thread = &scrub->os_thread;
1004         struct lu_fid        *fid;
1005         struct osd_inode_id  *lid;
1006         int                   rc;
1007
1008         if (OBD_FAIL_CHECK(OBD_FAIL_OSD_SCRUB_DELAY) && cfs_fail_val > 0) {
1009                 struct l_wait_info lwi;
1010
1011                 lwi = LWI_TIMEOUT(cfs_time_seconds(cfs_fail_val), NULL, NULL);
1012                 if (likely(lwi.lwi_timeout > 0))
1013                         l_wait_event(thread->t_ctl_waitq,
1014                                 !list_empty(&scrub->os_inconsistent_items) ||
1015                                 !thread_is_running(thread),
1016                                 &lwi);
1017         }
1018
1019         if (OBD_FAIL_CHECK(OBD_FAIL_OSD_SCRUB_CRASH)) {
1020                 spin_lock(&scrub->os_lock);
1021                 thread_set_flags(thread, SVC_STOPPING);
1022                 spin_unlock(&scrub->os_lock);
1023                 return SCRUB_NEXT_CRASH;
1024         }
1025
1026         if (OBD_FAIL_CHECK(OBD_FAIL_OSD_SCRUB_FATAL))
1027                 return SCRUB_NEXT_FATAL;
1028
1029         if (unlikely(!thread_is_running(thread)))
1030                 return SCRUB_NEXT_EXIT;
1031
1032         if (!list_empty(&scrub->os_inconsistent_items)) {
1033                 spin_lock(&scrub->os_lock);
1034                 if (likely(!list_empty(&scrub->os_inconsistent_items))) {
1035                         struct osd_inconsistent_item *oii;
1036
1037                         oii = list_entry(scrub->os_inconsistent_items.next,
1038                                 struct osd_inconsistent_item, oii_list);
1039                         spin_unlock(&scrub->os_lock);
1040
1041                         *oic = &oii->oii_cache;
1042                         scrub->os_in_prior = 1;
1043
1044                         return 0;
1045                 }
1046                 spin_unlock(&scrub->os_lock);
1047         }
1048
1049         if (noslot)
1050                 return SCRUB_NEXT_WAIT;
1051
1052         rc = osd_iit_next(param, &scrub->os_pos_current);
1053         if (rc != 0)
1054                 return rc;
1055
1056         *oic = &scrub->os_oic;
1057         fid = &(*oic)->oic_fid;
1058         lid = &(*oic)->oic_lid;
1059         rc = osd_iit_iget(info, dev, fid, lid,
1060                           scrub->os_pos_current, param->sb, true);
1061         return rc;
1062 }
1063
1064 static int osd_preload_next(struct osd_thread_info *info,
1065                             struct osd_device *dev, struct osd_iit_param *param,
1066                             struct osd_idmap_cache **oic, const bool noslot)
1067 {
1068         struct osd_otable_cache *ooc    = &dev->od_otable_it->ooi_cache;
1069         struct osd_scrub        *scrub;
1070         struct ptlrpc_thread    *thread;
1071         int                      rc;
1072
1073         rc = osd_iit_next(param, &ooc->ooc_pos_preload);
1074         if (rc != 0)
1075                 return rc;
1076
1077         scrub = &dev->od_scrub;
1078         thread = &scrub->os_thread;
1079         if (thread_is_running(thread) &&
1080             ooc->ooc_pos_preload >= scrub->os_pos_current)
1081                 return SCRUB_NEXT_EXIT;
1082
1083         rc = osd_iit_iget(info, dev,
1084                           &ooc->ooc_cache[ooc->ooc_producer_idx].oic_fid,
1085                           &ooc->ooc_cache[ooc->ooc_producer_idx].oic_lid,
1086                           ooc->ooc_pos_preload, param->sb, false);
1087         /* If succeed, it needs to move forward; otherwise up layer LFSCK may
1088          * ignore the failure, so it still need to skip the inode next time. */
1089         ooc->ooc_pos_preload = param->gbase + ++(param->offset);
1090         return rc;
1091 }
1092
1093 static inline int
1094 osd_scrub_wakeup(struct osd_scrub *scrub, struct osd_otable_it *it)
1095 {
1096         spin_lock(&scrub->os_lock);
1097         if (osd_scrub_has_window(scrub, &it->ooi_cache) ||
1098             !list_empty(&scrub->os_inconsistent_items) ||
1099             it->ooi_waiting || !thread_is_running(&scrub->os_thread))
1100                 scrub->os_waiting = 0;
1101         else
1102                 scrub->os_waiting = 1;
1103         spin_unlock(&scrub->os_lock);
1104
1105         return !scrub->os_waiting;
1106 }
1107
1108 static int osd_scrub_exec(struct osd_thread_info *info, struct osd_device *dev,
1109                           struct osd_iit_param *param,
1110                           struct osd_idmap_cache *oic, bool *noslot, int rc)
1111 {
1112         struct l_wait_info       lwi    = { 0 };
1113         struct osd_scrub        *scrub  = &dev->od_scrub;
1114         struct scrub_file       *sf     = &scrub->os_file;
1115         struct ptlrpc_thread    *thread = &scrub->os_thread;
1116         struct osd_otable_it    *it     = dev->od_otable_it;
1117         struct osd_otable_cache *ooc    = it ? &it->ooi_cache : NULL;
1118
1119         switch (rc) {
1120         case SCRUB_NEXT_CONTINUE:
1121                 goto next;
1122         case SCRUB_NEXT_WAIT:
1123                 goto wait;
1124         case SCRUB_NEXT_NOSCRUB:
1125                 down_write(&scrub->os_rwsem);
1126                 scrub->os_new_checked++;
1127                 sf->sf_items_noscrub++;
1128                 up_write(&scrub->os_rwsem);
1129                 goto next;
1130         }
1131
1132         rc = osd_scrub_check_update(info, dev, oic, rc);
1133         if (rc != 0) {
1134                 scrub->os_in_prior = 0;
1135                 return rc;
1136         }
1137
1138         rc = osd_scrub_checkpoint(scrub);
1139         if (rc != 0) {
1140                 CDEBUG(D_LFSCK, "%.16s: fail to checkpoint, pos = %u: "
1141                        "rc = %d\n", osd_scrub2name(scrub),
1142                        scrub->os_pos_current, rc);
1143                 /* Continue, as long as the scrub itself can go ahead. */
1144         }
1145
1146         if (scrub->os_in_prior) {
1147                 scrub->os_in_prior = 0;
1148                 return 0;
1149         }
1150
1151 next:
1152         scrub->os_pos_current = param->gbase + ++(param->offset);
1153
1154 wait:
1155         if (it != NULL && it->ooi_waiting && ooc != NULL &&
1156             ooc->ooc_pos_preload < scrub->os_pos_current) {
1157                 spin_lock(&scrub->os_lock);
1158                 it->ooi_waiting = 0;
1159                 wake_up_all(&thread->t_ctl_waitq);
1160                 spin_unlock(&scrub->os_lock);
1161         }
1162
1163         if (scrub->os_full_speed || rc == SCRUB_NEXT_CONTINUE)
1164                 return 0;
1165
1166         if (ooc != NULL && osd_scrub_has_window(scrub, ooc)) {
1167                 *noslot = false;
1168                 return 0;
1169         }
1170
1171         if (it != NULL)
1172                 l_wait_event(thread->t_ctl_waitq, osd_scrub_wakeup(scrub, it),
1173                              &lwi);
1174
1175         if (ooc != NULL && osd_scrub_has_window(scrub, ooc))
1176                 *noslot = false;
1177         else
1178                 *noslot = true;
1179         return 0;
1180 }
1181
1182 static int osd_preload_exec(struct osd_thread_info *info,
1183                             struct osd_device *dev, struct osd_iit_param *param,
1184                             struct osd_idmap_cache *oic, bool *noslot, int rc)
1185 {
1186         struct osd_otable_cache *ooc = &dev->od_otable_it->ooi_cache;
1187
1188         if (rc == 0) {
1189                 ooc->ooc_cached_items++;
1190                 ooc->ooc_producer_idx = (ooc->ooc_producer_idx + 1) &
1191                                         ~OSD_OTABLE_IT_CACHE_MASK;
1192         }
1193         return rc > 0 ? 0 : rc;
1194 }
1195
1196 #define SCRUB_IT_ALL    1
1197 #define SCRUB_IT_CRASH  2
1198
1199 static void osd_scrub_join(struct osd_device *dev, __u32 flags,
1200                            bool inconsistent)
1201 {
1202         struct osd_scrub     *scrub  = &dev->od_scrub;
1203         struct ptlrpc_thread *thread = &scrub->os_thread;
1204         struct scrub_file    *sf     = &scrub->os_file;
1205         int                   rc;
1206         ENTRY;
1207
1208         LASSERT(!(flags & SS_AUTO_PARTIAL));
1209
1210         down_write(&scrub->os_rwsem);
1211         scrub->os_in_join = 1;
1212         if (flags & SS_SET_FAILOUT)
1213                 sf->sf_param |= SP_FAILOUT;
1214         else if (flags & SS_CLEAR_FAILOUT)
1215                 sf->sf_param &= ~SP_FAILOUT;
1216
1217         if (flags & SS_SET_DRYRUN)
1218                 sf->sf_param |= SP_DRYRUN;
1219         else if (flags & SS_CLEAR_DRYRUN)
1220                 sf->sf_param &= ~SP_DRYRUN;
1221
1222         if (flags & SS_RESET) {
1223                 osd_scrub_file_reset(scrub,
1224                         LDISKFS_SB(osd_sb(dev))->s_es->s_uuid,
1225                         inconsistent ? SF_INCONSISTENT : 0);
1226                 sf->sf_status = SS_SCANNING;
1227         }
1228
1229         if (sf->sf_flags & (SF_RECREATED | SF_INCONSISTENT | SF_UPGRADE))
1230                 scrub->os_full_speed = 1;
1231         else
1232                 scrub->os_full_speed = 0;
1233
1234         if (flags & SS_AUTO_FULL) {
1235                 sf->sf_flags |= SF_AUTO;
1236                 scrub->os_full_speed = 1;
1237         }
1238
1239         scrub->os_new_checked = 0;
1240         if (sf->sf_pos_last_checkpoint != 0)
1241                 sf->sf_pos_latest_start = sf->sf_pos_last_checkpoint + 1;
1242         else
1243                 sf->sf_pos_latest_start = LDISKFS_FIRST_INO(osd_sb(dev)) + 1;
1244
1245         scrub->os_pos_current = sf->sf_pos_latest_start;
1246         sf->sf_time_latest_start = cfs_time_current_sec();
1247         sf->sf_time_last_checkpoint = sf->sf_time_latest_start;
1248         sf->sf_pos_last_checkpoint = sf->sf_pos_latest_start - 1;
1249         rc = osd_scrub_file_store(scrub);
1250         if (rc != 0)
1251                 CDEBUG(D_LFSCK, "%.16s: fail to store scrub file when join "
1252                        "the OI scrub: rc = %d\n", osd_scrub2name(scrub), rc);
1253
1254         spin_lock(&scrub->os_lock);
1255         scrub->os_waiting = 0;
1256         scrub->os_paused = 0;
1257         scrub->os_partial_scan = 0;
1258         scrub->os_in_join = 0;
1259         scrub->os_full_scrub = 0;
1260         spin_unlock(&scrub->os_lock);
1261         wake_up_all(&thread->t_ctl_waitq);
1262         up_write(&scrub->os_rwsem);
1263
1264         EXIT;
1265 }
1266
1267 static int osd_inode_iteration(struct osd_thread_info *info,
1268                                struct osd_device *dev, __u32 max, bool preload)
1269 {
1270         struct osd_scrub     *scrub  = &dev->od_scrub;
1271         struct ptlrpc_thread *thread = &scrub->os_thread;
1272         struct scrub_file    *sf     = &scrub->os_file;
1273         osd_iit_next_policy   next;
1274         osd_iit_exec_policy   exec;
1275         __u32                *pos;
1276         __u32                *count;
1277         struct osd_iit_param  param  = { NULL };
1278         struct l_wait_info    lwi    = { 0 };
1279         __u32                 limit;
1280         int                   rc;
1281         bool                  noslot = true;
1282         ENTRY;
1283
1284         param.sb = osd_sb(dev);
1285         if (preload)
1286                 goto full;
1287
1288         while (scrub->os_partial_scan && !scrub->os_in_join) {
1289                 struct osd_idmap_cache *oic = NULL;
1290
1291                 rc = osd_scrub_next(info, dev, &param, &oic, noslot);
1292                 switch (rc) {
1293                 case SCRUB_NEXT_EXIT:
1294                         RETURN(0);
1295                 case SCRUB_NEXT_CRASH:
1296                         RETURN(SCRUB_IT_CRASH);
1297                 case SCRUB_NEXT_FATAL:
1298                         RETURN(-EINVAL);
1299                 case SCRUB_NEXT_WAIT: {
1300                         struct kstatfs *ksfs = &info->oti_ksfs;
1301                         __u64 saved_flags;
1302
1303                         if (dev->od_full_scrub_ratio == OFSR_NEVER ||
1304                             unlikely(sf->sf_items_updated_prior == 0))
1305                                 goto wait;
1306
1307                         if (dev->od_full_scrub_ratio == OFSR_DIRECTLY ||
1308                             scrub->os_full_scrub) {
1309                                 osd_scrub_join(dev, SS_AUTO_FULL | SS_RESET,
1310                                                true);
1311                                 goto full;
1312                         }
1313
1314                         rc = param.sb->s_op->statfs(param.sb->s_root, ksfs);
1315                         if (rc == 0) {
1316                                 __u64 used = ksfs->f_files - ksfs->f_ffree;
1317
1318                                 do_div(used, sf->sf_items_updated_prior);
1319                                 /* If we hit too much inconsistent OI
1320                                  * mappings during the partial scan,
1321                                  * then scan the device completely. */
1322                                 if (used < dev->od_full_scrub_ratio) {
1323                                         osd_scrub_join(dev,
1324                                                 SS_AUTO_FULL | SS_RESET, true);
1325                                         goto full;
1326                                 }
1327                         }
1328
1329 wait:
1330                         if (OBD_FAIL_CHECK(OBD_FAIL_OSD_SCRUB_DELAY) &&
1331                             cfs_fail_val > 0)
1332                                 continue;
1333
1334                         saved_flags = sf->sf_flags;
1335                         sf->sf_flags &= ~(SF_RECREATED | SF_INCONSISTENT |
1336                                           SF_UPGRADE | SF_AUTO);
1337                         sf->sf_status = SS_COMPLETED;
1338                         l_wait_event(thread->t_ctl_waitq,
1339                                      !thread_is_running(thread) ||
1340                                      !scrub->os_partial_scan ||
1341                                      scrub->os_in_join ||
1342                                      !list_empty(&scrub->os_inconsistent_items),
1343                                      &lwi);
1344                         sf->sf_flags = saved_flags;
1345                         sf->sf_status = SS_SCANNING;
1346
1347                         if (unlikely(!thread_is_running(thread)))
1348                                 RETURN(0);
1349
1350                         if (!scrub->os_partial_scan || scrub->os_in_join)
1351                                 goto full;
1352
1353                         continue;
1354                 }
1355                 default:
1356                         LASSERTF(rc == 0, "rc = %d\n", rc);
1357
1358                         osd_scrub_exec(info, dev, &param, oic, &noslot, rc);
1359                         break;
1360                 }
1361         }
1362
1363 full:
1364         if (!preload) {
1365                 l_wait_event(thread->t_ctl_waitq,
1366                              !thread_is_running(thread) || !scrub->os_in_join,
1367                              &lwi);
1368
1369                 if (unlikely(!thread_is_running(thread)))
1370                         RETURN(0);
1371         }
1372
1373         noslot = false;
1374         if (!preload) {
1375                 next = osd_scrub_next;
1376                 exec = osd_scrub_exec;
1377                 pos = &scrub->os_pos_current;
1378                 count = &scrub->os_new_checked;
1379         } else {
1380                 struct osd_otable_cache *ooc = &dev->od_otable_it->ooi_cache;
1381
1382                 next = osd_preload_next;
1383                 exec = osd_preload_exec;
1384                 pos = &ooc->ooc_pos_preload;
1385                 count = &ooc->ooc_cached_items;
1386         }
1387
1388         param.bg = (*pos - 1) / LDISKFS_INODES_PER_GROUP(param.sb);
1389         param.offset = (*pos - 1) % LDISKFS_INODES_PER_GROUP(param.sb);
1390         param.gbase = 1 + param.bg * LDISKFS_INODES_PER_GROUP(param.sb);
1391         limit = le32_to_cpu(LDISKFS_SB(param.sb)->s_es->s_inodes_count);
1392
1393         while (*pos <= limit && *count < max) {
1394                 struct ldiskfs_group_desc *desc;
1395                 bool next_group = false;
1396
1397                 desc = ldiskfs_get_group_desc(param.sb, param.bg, NULL);
1398                 if (!desc)
1399                         RETURN(-EIO);
1400
1401                 ldiskfs_lock_group(param.sb, param.bg);
1402                 if (desc->bg_flags & cpu_to_le16(LDISKFS_BG_INODE_UNINIT)) {
1403                         ldiskfs_unlock_group(param.sb, param.bg);
1404                         next_group = true;
1405                         goto next_group;
1406                 }
1407                 ldiskfs_unlock_group(param.sb, param.bg);
1408
1409                 param.bitmap = ldiskfs_read_inode_bitmap(param.sb, param.bg);
1410                 if (!param.bitmap) {
1411                         CDEBUG(D_LFSCK, "%.16s: fail to read bitmap for %u, "
1412                                "scrub will stop, urgent mode\n",
1413                                osd_scrub2name(scrub), (__u32)param.bg);
1414                         RETURN(-EIO);
1415                 }
1416
1417                 while (*count < max) {
1418                         struct osd_idmap_cache *oic = NULL;
1419
1420                         if (param.offset +
1421                                 ldiskfs_itable_unused_count(param.sb, desc) >=
1422                             LDISKFS_INODES_PER_GROUP(param.sb)) {
1423                                 next_group = true;
1424                                 goto next_group;
1425                         }
1426
1427                         rc = next(info, dev, &param, &oic, noslot);
1428                         switch (rc) {
1429                         case SCRUB_NEXT_BREAK:
1430                                 next_group = true;
1431                                 goto next_group;
1432                         case SCRUB_NEXT_EXIT:
1433                                 brelse(param.bitmap);
1434                                 RETURN(0);
1435                         case SCRUB_NEXT_CRASH:
1436                                 brelse(param.bitmap);
1437                                 RETURN(SCRUB_IT_CRASH);
1438                         case SCRUB_NEXT_FATAL:
1439                                 brelse(param.bitmap);
1440                                 RETURN(-EINVAL);
1441                         }
1442
1443                         rc = exec(info, dev, &param, oic, &noslot, rc);
1444                         if (rc != 0) {
1445                                 brelse(param.bitmap);
1446                                 RETURN(rc);
1447                         }
1448                 }
1449
1450 next_group:
1451                 if (param.bitmap) {
1452                         brelse(param.bitmap);
1453                         param.bitmap = NULL;
1454                 }
1455
1456                 if (next_group) {
1457                         param.bg++;
1458                         param.offset = 0;
1459                         param.gbase = 1 +
1460                                 param.bg * LDISKFS_INODES_PER_GROUP(param.sb);
1461                         *pos = param.gbase;
1462                 }
1463         }
1464
1465         if (*pos > limit)
1466                 RETURN(SCRUB_IT_ALL);
1467         RETURN(0);
1468 }
1469
1470 static int osd_otable_it_preload(const struct lu_env *env,
1471                                  struct osd_otable_it *it)
1472 {
1473         struct osd_device       *dev   = it->ooi_dev;
1474         struct osd_scrub        *scrub = &dev->od_scrub;
1475         struct osd_otable_cache *ooc   = &it->ooi_cache;
1476         int                      rc;
1477         ENTRY;
1478
1479         rc = osd_inode_iteration(osd_oti_get(env), dev,
1480                                  OSD_OTABLE_IT_CACHE_SIZE, true);
1481         if (rc == SCRUB_IT_ALL)
1482                 it->ooi_all_cached = 1;
1483
1484         if (scrub->os_waiting && osd_scrub_has_window(scrub, ooc)) {
1485                 spin_lock(&scrub->os_lock);
1486                 scrub->os_waiting = 0;
1487                 wake_up_all(&scrub->os_thread.t_ctl_waitq);
1488                 spin_unlock(&scrub->os_lock);
1489         }
1490
1491         RETURN(rc < 0 ? rc : ooc->ooc_cached_items);
1492 }
1493
1494 static int osd_scrub_main(void *args)
1495 {
1496         struct lu_env         env;
1497         struct osd_device    *dev    = (struct osd_device *)args;
1498         struct osd_scrub     *scrub  = &dev->od_scrub;
1499         struct ptlrpc_thread *thread = &scrub->os_thread;
1500         int                   rc;
1501         ENTRY;
1502
1503         rc = lu_env_init(&env, LCT_LOCAL);
1504         if (rc != 0) {
1505                 CDEBUG(D_LFSCK, "%.16s: OI scrub fail to init env: rc = %d\n",
1506                        osd_scrub2name(scrub), rc);
1507                 GOTO(noenv, rc);
1508         }
1509
1510         rc = osd_scrub_prep(dev);
1511         if (rc != 0) {
1512                 CDEBUG(D_LFSCK, "%.16s: OI scrub fail to scrub prep: rc = %d\n",
1513                        osd_scrub2name(scrub), rc);
1514                 GOTO(out, rc);
1515         }
1516
1517         if (!scrub->os_full_speed && !scrub->os_partial_scan) {
1518                 struct l_wait_info lwi = { 0 };
1519                 struct osd_otable_it *it = dev->od_otable_it;
1520                 struct osd_otable_cache *ooc = &it->ooi_cache;
1521
1522                 l_wait_event(thread->t_ctl_waitq,
1523                              it->ooi_user_ready || !thread_is_running(thread),
1524                              &lwi);
1525                 if (unlikely(!thread_is_running(thread)))
1526                         GOTO(post, rc = 0);
1527
1528                 scrub->os_pos_current = ooc->ooc_pos_preload;
1529         }
1530
1531         CDEBUG(D_LFSCK, "%.16s: OI scrub start, flags = 0x%x, pos = %u\n",
1532                osd_scrub2name(scrub), scrub->os_start_flags,
1533                scrub->os_pos_current);
1534
1535         rc = osd_inode_iteration(osd_oti_get(&env), dev, ~0U, false);
1536         if (unlikely(rc == SCRUB_IT_CRASH))
1537                 GOTO(out, rc = -EINVAL);
1538         GOTO(post, rc);
1539
1540 post:
1541         rc = osd_scrub_post(scrub, rc);
1542         CDEBUG(D_LFSCK, "%.16s: OI scrub: stop, pos = %u: rc = %d\n",
1543                osd_scrub2name(scrub), scrub->os_pos_current, rc);
1544
1545 out:
1546         while (!list_empty(&scrub->os_inconsistent_items)) {
1547                 struct osd_inconsistent_item *oii;
1548
1549                 oii = list_entry(scrub->os_inconsistent_items.next,
1550                                      struct osd_inconsistent_item, oii_list);
1551                 list_del_init(&oii->oii_list);
1552                 OBD_FREE_PTR(oii);
1553         }
1554         lu_env_fini(&env);
1555
1556 noenv:
1557         spin_lock(&scrub->os_lock);
1558         thread_set_flags(thread, SVC_STOPPED);
1559         wake_up_all(&thread->t_ctl_waitq);
1560         spin_unlock(&scrub->os_lock);
1561         return rc;
1562 }
1563
1564 /* initial OI scrub */
1565
1566 typedef int (*scandir_t)(struct osd_thread_info *, struct osd_device *,
1567                          struct dentry *, filldir_t filldir);
1568
1569 #ifdef HAVE_FILLDIR_USE_CTX
1570 static int osd_ios_varfid_fill(struct dir_context *buf, const char *name,
1571                                int namelen, loff_t offset, __u64 ino,
1572                                unsigned d_type);
1573 static int osd_ios_lf_fill(struct dir_context *buf, const char *name,
1574                            int namelen, loff_t offset, __u64 ino,
1575                            unsigned d_type);
1576 static int osd_ios_dl_fill(struct dir_context *buf, const char *name,
1577                            int namelen, loff_t offset, __u64 ino,
1578                            unsigned d_type);
1579 static int osd_ios_uld_fill(struct dir_context *buf, const char *name,
1580                             int namelen, loff_t offset, __u64 ino,
1581                             unsigned d_type);
1582 #else
1583 static int osd_ios_varfid_fill(void *buf, const char *name, int namelen,
1584                                loff_t offset, __u64 ino, unsigned d_type);
1585 static int osd_ios_lf_fill(void *buf, const char *name, int namelen,
1586                            loff_t offset, __u64 ino, unsigned d_type);
1587 static int osd_ios_dl_fill(void *buf, const char *name, int namelen,
1588                            loff_t offset, __u64 ino, unsigned d_type);
1589 static int osd_ios_uld_fill(void *buf, const char *name, int namelen,
1590                             loff_t offset, __u64 ino, unsigned d_type);
1591 #endif
1592
1593 static int
1594 osd_ios_general_scan(struct osd_thread_info *info, struct osd_device *dev,
1595                      struct dentry *dentry, filldir_t filldir);
1596 static int
1597 osd_ios_ROOT_scan(struct osd_thread_info *info, struct osd_device *dev,
1598                   struct dentry *dentry, filldir_t filldir);
1599
1600 static int
1601 osd_ios_OBJECTS_scan(struct osd_thread_info *info, struct osd_device *dev,
1602                      struct dentry *dentry, filldir_t filldir);
1603
1604 enum osd_lf_flags {
1605         OLF_SCAN_SUBITEMS       = 0x0001,
1606         OLF_HIDE_FID            = 0x0002,
1607         OLF_SHOW_NAME           = 0x0004,
1608         OLF_NO_OI               = 0x0008,
1609         OLF_IDX_IN_FID          = 0x0010,
1610 };
1611
1612 struct osd_lf_map {
1613         char            *olm_name;
1614         struct lu_fid    olm_fid;
1615         __u16            olm_flags;
1616         __u16            olm_namelen;
1617         scandir_t        olm_scandir;
1618         filldir_t        olm_filldir;
1619 };
1620
1621 /* Add the new introduced local files in the list in the future. */
1622 static const struct osd_lf_map osd_lf_maps[] = {
1623         /* CATALOGS */
1624         {
1625                 .olm_name       = CATLIST,
1626                 .olm_fid        = {
1627                         .f_seq  = FID_SEQ_LOCAL_FILE,
1628                         .f_oid  = LLOG_CATALOGS_OID,
1629                 },
1630                 .olm_flags      = OLF_SHOW_NAME,
1631                 .olm_namelen    = sizeof(CATLIST) - 1,
1632         },
1633
1634         /* CONFIGS */
1635         {
1636                 .olm_name       = MOUNT_CONFIGS_DIR,
1637                 .olm_fid        = {
1638                         .f_seq  = FID_SEQ_LOCAL_FILE,
1639                         .f_oid  = MGS_CONFIGS_OID,
1640                 },
1641                 .olm_flags      = OLF_SCAN_SUBITEMS,
1642                 .olm_namelen    = sizeof(MOUNT_CONFIGS_DIR) - 1,
1643                 .olm_scandir    = osd_ios_general_scan,
1644                 .olm_filldir    = osd_ios_varfid_fill,
1645         },
1646
1647         /* NIDTBL_VERSIONS */
1648         {
1649                 .olm_name       = MGS_NIDTBL_DIR,
1650                 .olm_flags      = OLF_SCAN_SUBITEMS,
1651                 .olm_namelen    = sizeof(MGS_NIDTBL_DIR) - 1,
1652                 .olm_scandir    = osd_ios_general_scan,
1653                 .olm_filldir    = osd_ios_varfid_fill,
1654         },
1655
1656         /* PENDING */
1657         {
1658                 .olm_name       = "PENDING",
1659                 .olm_namelen    = sizeof("PENDING") - 1,
1660         },
1661
1662         /* ROOT */
1663         {
1664                 .olm_name       = "ROOT",
1665                 .olm_fid        = {
1666                         .f_seq  = FID_SEQ_ROOT,
1667                         .f_oid  = FID_OID_ROOT,
1668                 },
1669                 .olm_flags      = OLF_SCAN_SUBITEMS | OLF_HIDE_FID,
1670                 .olm_namelen    = sizeof("ROOT") - 1,
1671                 .olm_scandir    = osd_ios_ROOT_scan,
1672         },
1673
1674         /* changelog_catalog */
1675         {
1676                 .olm_name       = CHANGELOG_CATALOG,
1677                 .olm_namelen    = sizeof(CHANGELOG_CATALOG) - 1,
1678         },
1679
1680         /* changelog_users */
1681         {
1682                 .olm_name       = CHANGELOG_USERS,
1683                 .olm_namelen    = sizeof(CHANGELOG_USERS) - 1,
1684         },
1685
1686         /* fld */
1687         {
1688                 .olm_name       = "fld",
1689                 .olm_fid        = {
1690                         .f_seq  = FID_SEQ_LOCAL_FILE,
1691                         .f_oid  = FLD_INDEX_OID,
1692                 },
1693                 .olm_flags      = OLF_SHOW_NAME,
1694                 .olm_namelen    = sizeof("fld") - 1,
1695         },
1696
1697         /* last_rcvd */
1698         {
1699                 .olm_name       = LAST_RCVD,
1700                 .olm_fid        = {
1701                         .f_seq  = FID_SEQ_LOCAL_FILE,
1702                         .f_oid  = LAST_RECV_OID,
1703                 },
1704                 .olm_flags      = OLF_SHOW_NAME,
1705                 .olm_namelen    = sizeof(LAST_RCVD) - 1,
1706         },
1707
1708         /* reply_data */
1709         {
1710                 .olm_name       = REPLY_DATA,
1711                 .olm_fid        = {
1712                         .f_seq  = FID_SEQ_LOCAL_FILE,
1713                         .f_oid  = REPLY_DATA_OID,
1714                 },
1715                 .olm_flags      = OLF_SHOW_NAME,
1716                 .olm_namelen    = sizeof(REPLY_DATA) - 1,
1717         },
1718
1719         /* lov_objid */
1720         {
1721                 .olm_name       = LOV_OBJID,
1722                 .olm_fid        = {
1723                         .f_seq  = FID_SEQ_LOCAL_FILE,
1724                         .f_oid  = MDD_LOV_OBJ_OID,
1725                 },
1726                 .olm_flags      = OLF_SHOW_NAME,
1727                 .olm_namelen    = sizeof(LOV_OBJID) - 1,
1728         },
1729
1730         /* lov_objseq */
1731         {
1732                 .olm_name       = LOV_OBJSEQ,
1733                 .olm_fid        = {
1734                         .f_seq  = FID_SEQ_LOCAL_FILE,
1735                         .f_oid  = MDD_LOV_OBJ_OSEQ,
1736                 },
1737                 .olm_flags      = OLF_SHOW_NAME,
1738                 .olm_namelen    = sizeof(LOV_OBJSEQ) - 1,
1739         },
1740
1741         /* quota_master */
1742         {
1743                 .olm_name       = QMT_DIR,
1744                 .olm_flags      = OLF_SCAN_SUBITEMS,
1745                 .olm_namelen    = sizeof(QMT_DIR) - 1,
1746                 .olm_scandir    = osd_ios_general_scan,
1747                 .olm_filldir    = osd_ios_varfid_fill,
1748         },
1749
1750         /* quota_slave */
1751         {
1752                 .olm_name       = QSD_DIR,
1753                 .olm_flags      = OLF_SCAN_SUBITEMS,
1754                 .olm_namelen    = sizeof(QSD_DIR) - 1,
1755                 .olm_scandir    = osd_ios_general_scan,
1756                 .olm_filldir    = osd_ios_varfid_fill,
1757         },
1758
1759         /* seq_ctl */
1760         {
1761                 .olm_name       = "seq_ctl",
1762                 .olm_fid        = {
1763                         .f_seq  = FID_SEQ_LOCAL_FILE,
1764                         .f_oid  = FID_SEQ_CTL_OID,
1765                 },
1766                 .olm_flags      = OLF_SHOW_NAME,
1767                 .olm_namelen    = sizeof("seq_ctl") - 1,
1768         },
1769
1770         /* seq_srv */
1771         {
1772                 .olm_name       = "seq_srv",
1773                 .olm_fid        = {
1774                         .f_seq  = FID_SEQ_LOCAL_FILE,
1775                         .f_oid  = FID_SEQ_SRV_OID,
1776                 },
1777                 .olm_flags      = OLF_SHOW_NAME,
1778                 .olm_namelen    = sizeof("seq_srv") - 1,
1779         },
1780
1781         /* health_check */
1782         {
1783                 .olm_name       = HEALTH_CHECK,
1784                 .olm_fid        = {
1785                         .f_seq  = FID_SEQ_LOCAL_FILE,
1786                         .f_oid  = OFD_HEALTH_CHECK_OID,
1787                 },
1788                 .olm_flags      = OLF_SHOW_NAME,
1789                 .olm_namelen    = sizeof(HEALTH_CHECK) - 1,
1790         },
1791
1792         /* LFSCK */
1793         {
1794                 .olm_name       = LFSCK_DIR,
1795                 .olm_namelen    = sizeof(LFSCK_DIR) - 1,
1796                 .olm_scandir    = osd_ios_general_scan,
1797                 .olm_filldir    = osd_ios_varfid_fill,
1798         },
1799
1800         /* lfsck_bookmark */
1801         {
1802                 .olm_name       = LFSCK_BOOKMARK,
1803                 .olm_namelen    = sizeof(LFSCK_BOOKMARK) - 1,
1804         },
1805
1806         /* lfsck_layout */
1807         {
1808                 .olm_name       = LFSCK_LAYOUT,
1809                 .olm_namelen    = sizeof(LFSCK_LAYOUT) - 1,
1810         },
1811
1812         /* lfsck_namespace */
1813         {
1814                 .olm_name       = LFSCK_NAMESPACE,
1815                 .olm_namelen    = sizeof(LFSCK_NAMESPACE) - 1,
1816         },
1817
1818         /* OBJECTS, upgrade from old device */
1819         {
1820                 .olm_name       = OBJECTS,
1821                 .olm_flags      = OLF_SCAN_SUBITEMS,
1822                 .olm_namelen    = sizeof(OBJECTS) - 1,
1823                 .olm_scandir    = osd_ios_OBJECTS_scan,
1824         },
1825
1826         /* lquota_v2.user, upgrade from old device */
1827         {
1828                 .olm_name       = "lquota_v2.user",
1829                 .olm_namelen    = sizeof("lquota_v2.user") - 1,
1830         },
1831
1832         /* lquota_v2.group, upgrade from old device */
1833         {
1834                 .olm_name       = "lquota_v2.group",
1835                 .olm_namelen    = sizeof("lquota_v2.group") - 1,
1836         },
1837
1838         /* LAST_GROUP, upgrade from old device */
1839         {
1840                 .olm_name       = "LAST_GROUP",
1841                 .olm_fid        = {
1842                         .f_seq  = FID_SEQ_LOCAL_FILE,
1843                         .f_oid  = OFD_LAST_GROUP_OID,
1844                 },
1845                 .olm_flags      = OLF_SHOW_NAME,
1846                 .olm_namelen    = sizeof("LAST_GROUP") - 1,
1847         },
1848
1849         /* committed batchid for cross-MDT operation */
1850         {
1851                 .olm_name       = "BATCHID",
1852                 .olm_fid        = {
1853                         .f_seq  = FID_SEQ_LOCAL_FILE,
1854                         .f_oid  = BATCHID_COMMITTED_OID,
1855                 },
1856                 .olm_flags      = OLF_SHOW_NAME,
1857                 .olm_namelen    = sizeof("BATCHID") - 1,
1858         },
1859
1860         /* OSP update logs update_log{_dir} use f_seq = FID_SEQ_UPDATE_LOG{_DIR}
1861          * and f_oid = index for their log files.  See lu_update_log{_dir}_fid()
1862          * for more details. */
1863
1864         /* update_log */
1865         {
1866                 .olm_name       = "update_log",
1867                 .olm_fid        = {
1868                         .f_seq  = FID_SEQ_UPDATE_LOG,
1869                 },
1870                 .olm_flags      = OLF_SHOW_NAME | OLF_IDX_IN_FID,
1871                 .olm_namelen    = sizeof("update_log") - 1,
1872         },
1873
1874         /* update_log_dir */
1875         {
1876                 .olm_name       = "update_log_dir",
1877                 .olm_fid        = {
1878                         .f_seq  = FID_SEQ_UPDATE_LOG_DIR,
1879                 },
1880                 .olm_flags      = OLF_SHOW_NAME | OLF_SCAN_SUBITEMS |
1881                                   OLF_IDX_IN_FID,
1882                 .olm_namelen    = sizeof("update_log_dir") - 1,
1883                 .olm_scandir    = osd_ios_general_scan,
1884                 .olm_filldir    = osd_ios_uld_fill,
1885         },
1886
1887         /* lost+found */
1888         {
1889                 .olm_name       = "lost+found",
1890                 .olm_fid        = {
1891                         .f_seq  = FID_SEQ_LOCAL_FILE,
1892                         .f_oid  = OSD_LPF_OID,
1893                 },
1894                 .olm_flags      = OLF_SCAN_SUBITEMS,
1895                 .olm_namelen    = sizeof("lost+found") - 1,
1896                 .olm_scandir    = osd_ios_general_scan,
1897                 .olm_filldir    = osd_ios_lf_fill,
1898         },
1899
1900         {
1901                 .olm_name       = NULL
1902         }
1903 };
1904
1905 /* Add the new introduced files under .lustre/ in the list in the future. */
1906 static const struct osd_lf_map osd_dl_maps[] = {
1907         /* .lustre/fid */
1908         {
1909                 .olm_name       = "fid",
1910                 .olm_fid        = {
1911                         .f_seq  = FID_SEQ_DOT_LUSTRE,
1912                         .f_oid  = FID_OID_DOT_LUSTRE_OBF,
1913                 },
1914                 .olm_namelen    = sizeof("fid") - 1,
1915         },
1916         /* .lustre/lost+found */
1917         {
1918                 .olm_name       = "lost+found",
1919                 .olm_fid        = {
1920                         .f_seq  = FID_SEQ_DOT_LUSTRE,
1921                         .f_oid  = FID_OID_DOT_LUSTRE_LPF,
1922                 },
1923                 .olm_namelen    = sizeof("lost+found") - 1,
1924         },
1925         {
1926                 .olm_name       = NULL
1927         }
1928 };
1929
1930 struct osd_ios_item {
1931         struct list_head oii_list;
1932         struct dentry   *oii_dentry;
1933         scandir_t        oii_scandir;
1934         filldir_t        oii_filldir;
1935 };
1936
1937 struct osd_ios_filldir_buf {
1938 #ifdef HAVE_DIR_CONTEXT
1939         /* please keep it as first member */
1940         struct dir_context       ctx;
1941 #endif
1942         struct osd_thread_info  *oifb_info;
1943         struct osd_device       *oifb_dev;
1944         struct dentry           *oifb_dentry;
1945 };
1946
1947 static inline struct dentry *
1948 osd_ios_lookup_one_len(const char *name, struct dentry *parent, int namelen)
1949 {
1950         struct dentry *dentry;
1951
1952         dentry = ll_lookup_one_len(name, parent, namelen);
1953         if (IS_ERR(dentry)) {
1954                 int rc = PTR_ERR(dentry);
1955
1956                 if (rc != -ENOENT)
1957                         CERROR("Fail to find %.*s in %.*s (%lu/%u): rc = %d\n",
1958                                namelen, name, parent->d_name.len,
1959                                parent->d_name.name, parent->d_inode->i_ino,
1960                                parent->d_inode->i_generation, rc);
1961
1962                 return dentry;
1963         }
1964
1965         if (dentry->d_inode == NULL) {
1966                 dput(dentry);
1967                 return ERR_PTR(-ENOENT);
1968         }
1969
1970         return dentry;
1971 }
1972
1973 static int
1974 osd_ios_new_item(struct osd_device *dev, struct dentry *dentry,
1975                  scandir_t scandir, filldir_t filldir)
1976 {
1977         struct osd_ios_item *item;
1978         ENTRY;
1979
1980         OBD_ALLOC_PTR(item);
1981         if (item == NULL)
1982                 RETURN(-ENOMEM);
1983
1984         INIT_LIST_HEAD(&item->oii_list);
1985         item->oii_dentry = dget(dentry);
1986         item->oii_scandir = scandir;
1987         item->oii_filldir = filldir;
1988         list_add_tail(&item->oii_list, &dev->od_ios_list);
1989
1990         RETURN(0);
1991 }
1992
1993 /**
1994  * osd_ios_scan_one() - check/fix LMA FID and OI entry for one inode
1995  *
1996  * The passed \a inode's \a fid is verified against the LMA FID. If the \a fid
1997  * is NULL or is empty the IGIF FID is used. The FID is verified in the OI to
1998  * reference the inode, or fixed if it is missing or references another inode.
1999  */
2000 static int
2001 osd_ios_scan_one(struct osd_thread_info *info, struct osd_device *dev,
2002                  struct inode *inode, const struct lu_fid *fid, int flags)
2003 {
2004         struct lustre_mdt_attrs *lma    = &info->oti_mdt_attrs;
2005         struct osd_inode_id     *id     = &info->oti_id;
2006         struct osd_inode_id     *id2    = &info->oti_id2;
2007         struct osd_scrub        *scrub  = &dev->od_scrub;
2008         struct scrub_file       *sf     = &scrub->os_file;
2009         struct lu_fid            tfid;
2010         int                      rc;
2011         ENTRY;
2012
2013         rc = osd_get_lma(info, inode, &info->oti_obj_dentry, lma);
2014         if (rc != 0 && rc != -ENODATA) {
2015                 CDEBUG(D_LFSCK, "%s: fail to get lma for init OI scrub: "
2016                        "rc = %d\n", osd_name(dev), rc);
2017
2018                 RETURN(rc);
2019         }
2020
2021         osd_id_gen(id, inode->i_ino, inode->i_generation);
2022         if (rc == -ENODATA) {
2023                 if (fid == NULL || fid_is_zero(fid) || flags & OLF_HIDE_FID) {
2024                         lu_igif_build(&tfid, inode->i_ino, inode->i_generation);
2025                 } else {
2026                         tfid = *fid;
2027                         if (flags & OLF_IDX_IN_FID) {
2028                                 LASSERT(dev->od_index >= 0);
2029
2030                                 tfid.f_oid = dev->od_index;
2031                         }
2032                 }
2033                 rc = osd_ea_fid_set(info, inode, &tfid, 0, 0);
2034                 if (rc != 0) {
2035                         CDEBUG(D_LFSCK, "%s: fail to set LMA for init OI "
2036                               "scrub: rc = %d\n", osd_name(dev), rc);
2037
2038                         RETURN(rc);
2039                 }
2040         } else {
2041                 if (lma->lma_compat & LMAC_NOT_IN_OI)
2042                         RETURN(0);
2043
2044                 tfid = lma->lma_self_fid;
2045         }
2046
2047         rc = osd_oi_lookup(info, dev, &tfid, id2, 0);
2048         if (rc != 0) {
2049                 if (rc != -ENOENT)
2050                         RETURN(rc);
2051
2052                 rc = osd_scrub_refresh_mapping(info, dev, &tfid, id,
2053                                                DTO_INDEX_INSERT, true, 0, NULL);
2054                 if (rc > 0)
2055                         rc = 0;
2056
2057                 RETURN(rc);
2058         }
2059
2060         if (osd_id_eq_strict(id, id2))
2061                 RETURN(0);
2062
2063         if (!(sf->sf_flags & SF_INCONSISTENT)) {
2064                 osd_scrub_file_reset(scrub,
2065                                      LDISKFS_SB(osd_sb(dev))->s_es->s_uuid,
2066                                      SF_INCONSISTENT);
2067                 rc = osd_scrub_file_store(scrub);
2068                 if (rc != 0)
2069                         RETURN(rc);
2070         }
2071
2072         rc = osd_scrub_refresh_mapping(info, dev, &tfid, id,
2073                                        DTO_INDEX_UPDATE, true, 0, NULL);
2074         if (rc > 0)
2075                 rc = 0;
2076
2077         RETURN(rc);
2078 }
2079
2080 /**
2081  * It scans the /lost+found, and for the OST-object (with filter_fid
2082  * or filter_fid_old), move them back to its proper /O/<seq>/d<x>.
2083  */
2084 #ifdef HAVE_FILLDIR_USE_CTX
2085 static int osd_ios_lf_fill(struct dir_context *buf,
2086 #else
2087 static int osd_ios_lf_fill(void *buf,
2088 #endif
2089                            const char *name, int namelen,
2090                            loff_t offset, __u64 ino, unsigned d_type)
2091 {
2092         struct osd_ios_filldir_buf *fill_buf =
2093                 (struct osd_ios_filldir_buf *)buf;
2094         struct osd_thread_info     *info     = fill_buf->oifb_info;
2095         struct osd_device          *dev      = fill_buf->oifb_dev;
2096         struct lu_fid              *fid      = &info->oti_fid;
2097         struct osd_scrub           *scrub    = &dev->od_scrub;
2098         struct dentry              *parent   = fill_buf->oifb_dentry;
2099         struct dentry              *child;
2100         struct inode               *dir      = parent->d_inode;
2101         struct inode               *inode;
2102         int                         rc;
2103         ENTRY;
2104
2105         /* skip any '.' started names */
2106         if (name[0] == '.')
2107                 RETURN(0);
2108
2109         scrub->os_lf_scanned++;
2110         child = osd_ios_lookup_one_len(name, parent, namelen);
2111         if (IS_ERR(child)) {
2112                 CDEBUG(D_LFSCK, "%s: cannot lookup child '%.*s': rc = %d\n",
2113                       osd_name(dev), namelen, name, (int)PTR_ERR(child));
2114                 RETURN(0);
2115         }
2116
2117         inode = child->d_inode;
2118         if (S_ISDIR(inode->i_mode)) {
2119                 rc = osd_ios_new_item(dev, child, osd_ios_general_scan,
2120                                       osd_ios_lf_fill);
2121                 if (rc != 0)
2122                         CDEBUG(D_LFSCK, "%s: cannot add child '%.*s': "
2123                               "rc = %d\n", osd_name(dev), namelen, name, rc);
2124                 GOTO(put, rc);
2125         }
2126
2127         if (!S_ISREG(inode->i_mode))
2128                 GOTO(put, rc = 0);
2129
2130         rc = osd_scrub_get_fid(info, dev, inode, fid, true);
2131         if (rc == SCRUB_NEXT_OSTOBJ || rc == SCRUB_NEXT_OSTOBJ_OLD) {
2132                 rc = osd_obj_map_recover(info, dev, dir, child, fid);
2133                 if (rc == 0) {
2134                         CDEBUG(D_LFSCK, "recovered '%.*s' ["DFID"] from "
2135                                "/lost+found.\n", namelen, name, PFID(fid));
2136                         scrub->os_lf_repaired++;
2137                 } else {
2138                         CDEBUG(D_LFSCK, "%s: cannot rename for '%.*s' "
2139                                DFID": rc = %d\n",
2140                                osd_name(dev), namelen, name, PFID(fid), rc);
2141                 }
2142         }
2143
2144         /* XXX: For MDT-objects, we can move them from /lost+found to namespace
2145          *      visible place, such as the /ROOT/.lustre/lost+found, then LFSCK
2146          *      can process them in furtuer. */
2147
2148         GOTO(put, rc);
2149
2150 put:
2151         if (rc < 0)
2152                 scrub->os_lf_failed++;
2153         dput(child);
2154         /* skip the failure to make the scanning to continue. */
2155         return 0;
2156 }
2157
2158 #ifdef HAVE_FILLDIR_USE_CTX
2159 static int osd_ios_varfid_fill(struct dir_context *buf,
2160 #else
2161 static int osd_ios_varfid_fill(void *buf,
2162 #endif
2163                                const char *name, int namelen,
2164                                loff_t offset, __u64 ino, unsigned d_type)
2165 {
2166         struct osd_ios_filldir_buf *fill_buf =
2167                 (struct osd_ios_filldir_buf *)buf;
2168         struct osd_device          *dev      = fill_buf->oifb_dev;
2169         struct dentry              *child;
2170         int                         rc;
2171         ENTRY;
2172
2173         /* skip any '.' started names */
2174         if (name[0] == '.')
2175                 RETURN(0);
2176
2177         child = osd_ios_lookup_one_len(name, fill_buf->oifb_dentry, namelen);
2178         if (IS_ERR(child))
2179                 RETURN(PTR_ERR(child));
2180
2181         rc = osd_ios_scan_one(fill_buf->oifb_info, dev, child->d_inode,
2182                               NULL, 0);
2183         if (rc == 0 && S_ISDIR(child->d_inode->i_mode))
2184                 rc = osd_ios_new_item(dev, child, osd_ios_general_scan,
2185                                       osd_ios_varfid_fill);
2186         dput(child);
2187
2188         RETURN(rc);
2189 }
2190
2191 #ifdef HAVE_FILLDIR_USE_CTX
2192 static int osd_ios_dl_fill(struct dir_context *buf,
2193 #else
2194 static int osd_ios_dl_fill(void *buf,
2195 #endif
2196                            const char *name, int namelen,
2197                            loff_t offset, __u64 ino, unsigned d_type)
2198 {
2199         struct osd_ios_filldir_buf *fill_buf =
2200                 (struct osd_ios_filldir_buf *)buf;
2201         struct osd_device          *dev      = fill_buf->oifb_dev;
2202         const struct osd_lf_map    *map;
2203         struct dentry              *child;
2204         int                         rc       = 0;
2205         ENTRY;
2206
2207         /* skip any '.' started names */
2208         if (name[0] == '.')
2209                 RETURN(0);
2210
2211         for (map = osd_dl_maps; map->olm_name != NULL; map++) {
2212                 if (map->olm_namelen != namelen)
2213                         continue;
2214
2215                 if (strncmp(map->olm_name, name, namelen) == 0)
2216                         break;
2217         }
2218
2219         if (map->olm_name == NULL)
2220                 RETURN(0);
2221
2222         child = osd_ios_lookup_one_len(name, fill_buf->oifb_dentry, namelen);
2223         if (IS_ERR(child))
2224                 RETURN(PTR_ERR(child));
2225
2226         rc = osd_ios_scan_one(fill_buf->oifb_info, dev, child->d_inode,
2227                               &map->olm_fid, map->olm_flags);
2228         dput(child);
2229
2230         RETURN(rc);
2231 }
2232
2233 #ifdef HAVE_FILLDIR_USE_CTX
2234 static int osd_ios_uld_fill(struct dir_context *buf,
2235 #else
2236 static int osd_ios_uld_fill(void *buf,
2237 #endif
2238                             const char *name, int namelen,
2239                             loff_t offset, __u64 ino, unsigned d_type)
2240 {
2241         struct osd_ios_filldir_buf *fill_buf =
2242                 (struct osd_ios_filldir_buf *)buf;
2243         struct dentry              *child;
2244         struct lu_fid               tfid;
2245         int                         rc       = 0;
2246         ENTRY;
2247
2248         /* skip any non-DFID format name */
2249         if (name[0] != '[')
2250                 RETURN(0);
2251
2252         child = osd_ios_lookup_one_len(name, fill_buf->oifb_dentry, namelen);
2253         if (IS_ERR(child))
2254                 RETURN(PTR_ERR(child));
2255
2256         /* skip the start '[' */
2257         sscanf(&name[1], SFID, RFID(&tfid));
2258         if (fid_is_sane(&tfid))
2259                 rc = osd_ios_scan_one(fill_buf->oifb_info, fill_buf->oifb_dev,
2260                                       child->d_inode, &tfid, 0);
2261         else
2262                 rc = -EIO;
2263         dput(child);
2264
2265         RETURN(rc);
2266 }
2267
2268 #ifdef HAVE_FILLDIR_USE_CTX
2269 static int osd_ios_root_fill(struct dir_context *buf,
2270 #else
2271 static int osd_ios_root_fill(void *buf,
2272 #endif
2273                              const char *name, int namelen,
2274                              loff_t offset, __u64 ino, unsigned d_type)
2275 {
2276         struct osd_ios_filldir_buf *fill_buf =
2277                 (struct osd_ios_filldir_buf *)buf;
2278         struct osd_device          *dev      = fill_buf->oifb_dev;
2279         const struct osd_lf_map    *map;
2280         struct dentry              *child;
2281         int                         rc       = 0;
2282         ENTRY;
2283
2284         /* skip any '.' started names */
2285         if (name[0] == '.')
2286                 RETURN(0);
2287
2288         for (map = osd_lf_maps; map->olm_name != NULL; map++) {
2289                 if (map->olm_namelen != namelen)
2290                         continue;
2291
2292                 if (strncmp(map->olm_name, name, namelen) == 0)
2293                         break;
2294         }
2295
2296         if (map->olm_name == NULL)
2297                 RETURN(0);
2298
2299         child = osd_ios_lookup_one_len(name, fill_buf->oifb_dentry, namelen);
2300         if (IS_ERR(child))
2301                 RETURN(PTR_ERR(child));
2302
2303         if (!(map->olm_flags & OLF_NO_OI))
2304                 rc = osd_ios_scan_one(fill_buf->oifb_info, dev, child->d_inode,
2305                                       &map->olm_fid, map->olm_flags);
2306         if (rc == 0 && map->olm_flags & OLF_SCAN_SUBITEMS)
2307                 rc = osd_ios_new_item(dev, child, map->olm_scandir,
2308                                       map->olm_filldir);
2309         dput(child);
2310
2311         RETURN(rc);
2312 }
2313
2314 static int
2315 osd_ios_general_scan(struct osd_thread_info *info, struct osd_device *dev,
2316                      struct dentry *dentry, filldir_t filldir)
2317 {
2318         struct osd_ios_filldir_buf    buf   = {
2319 #ifdef HAVE_DIR_CONTEXT
2320                                                 .ctx.actor = filldir,
2321 #endif
2322                                                 .oifb_info = info,
2323                                                 .oifb_dev = dev,
2324                                                 .oifb_dentry = dentry };
2325         struct file                  *filp  = &info->oti_file;
2326         struct inode                 *inode = dentry->d_inode;
2327         const struct file_operations *fops  = inode->i_fop;
2328         int                           rc;
2329         ENTRY;
2330
2331         LASSERT(filldir != NULL);
2332
2333         filp->f_pos = 0;
2334         filp->f_path.dentry = dentry;
2335         filp->f_mode = FMODE_64BITHASH;
2336         filp->f_mapping = inode->i_mapping;
2337         filp->f_op = fops;
2338         filp->private_data = NULL;
2339         set_file_inode(filp, inode);
2340
2341 #ifdef HAVE_DIR_CONTEXT
2342         buf.ctx.pos = filp->f_pos;
2343         rc = fops->iterate(filp, &buf.ctx);
2344         filp->f_pos = buf.ctx.pos;
2345 #else
2346         rc = fops->readdir(filp, &buf, filldir);
2347 #endif
2348         fops->release(inode, filp);
2349
2350         RETURN(rc);
2351 }
2352
2353 static int
2354 osd_ios_ROOT_scan(struct osd_thread_info *info, struct osd_device *dev,
2355                   struct dentry *dentry, filldir_t filldir)
2356 {
2357         struct osd_scrub  *scrub  = &dev->od_scrub;
2358         struct scrub_file *sf     = &scrub->os_file;
2359         struct dentry     *child;
2360         int                rc;
2361         ENTRY;
2362
2363         /* It is existing MDT0 device. We only allow the case of object without
2364          * LMA to happen on the MDT0, which is usually for old 1.8 MDT. Then we
2365          * can generate IGIF mode FID for the object and related OI mapping. If
2366          * it is on other MDTs, then becuase file-level backup/restore, related
2367          * OI mapping may be invalid already, we do not know which is the right
2368          * FID for the object. We only allow IGIF objects to reside on the MDT0.
2369          *
2370          * XXX: For the case of object on non-MDT0 device with neither LMA nor
2371          *      "fid" xattr, then something crashed. We cannot re-generate the
2372          *      FID directly, instead, the OI scrub will scan the OI structure
2373          *      and try to re-generate the LMA from the OI mapping. But if the
2374          *      OI mapping crashed or lost also, then we have to give up under
2375          *      double failure cases. */
2376         scrub->os_convert_igif = 1;
2377         child = osd_ios_lookup_one_len(dot_lustre_name, dentry,
2378                                        strlen(dot_lustre_name));
2379         if (IS_ERR(child)) {
2380                 rc = PTR_ERR(child);
2381                 if (rc == -ENOENT) {
2382                         /* It is 1.8 MDT device. */
2383                         if (!(sf->sf_flags & SF_UPGRADE)) {
2384                                 osd_scrub_file_reset(scrub,
2385                                         LDISKFS_SB(osd_sb(dev))->s_es->s_uuid,
2386                                         SF_UPGRADE);
2387                                 sf->sf_internal_flags &= ~SIF_NO_HANDLE_OLD_FID;
2388                                 rc = osd_scrub_file_store(scrub);
2389                         } else {
2390                                 rc = 0;
2391                         }
2392                 }
2393         } else {
2394                 /* For lustre-2.x (x <= 3), the ".lustre" has NO FID-in-LMA,
2395                  * so the client will get IGIF for the ".lustre" object when
2396                  * the MDT restart.
2397                  *
2398                  * From the OI scrub view, when the MDT upgrade to Lustre-2.4,
2399                  * it does not know whether there are some old clients cached
2400                  * the ".lustre" IGIF during the upgrading. Two choices:
2401                  *
2402                  * 1) Generate IGIF-in-LMA and IGIF-in-OI for the ".lustre".
2403                  *    It will allow the old connected clients to access the
2404                  *    ".lustre" with cached IGIF. But it will cause others
2405                  *    on the MDT failed to check "fid_is_dot_lustre()".
2406                  *
2407                  * 2) Use fixed FID {FID_SEQ_DOT_LUSTRE, FID_OID_DOT_LUSTRE, 0}
2408                  *    for ".lustre" in spite of whether there are some clients
2409                  *    cached the ".lustre" IGIF or not. It enables the check
2410                  *    "fid_is_dot_lustre()" on the MDT, although it will cause
2411                  *    that the old connected clients cannot access the ".lustre"
2412                  *    with the cached IGIF.
2413                  *
2414                  * Usually, it is rare case for the old connected clients
2415                  * to access the ".lustre" with cached IGIF. So we prefer
2416                  * to the solution 2). */
2417                 rc = osd_ios_scan_one(info, dev, child->d_inode,
2418                                       &LU_DOT_LUSTRE_FID, 0);
2419                 if (rc == 0)
2420                         rc = osd_ios_new_item(dev, child, osd_ios_general_scan,
2421                                               osd_ios_dl_fill);
2422                 dput(child);
2423         }
2424
2425         RETURN(rc);
2426 }
2427
2428 static int
2429 osd_ios_OBJECTS_scan(struct osd_thread_info *info, struct osd_device *dev,
2430                      struct dentry *dentry, filldir_t filldir)
2431 {
2432         struct osd_scrub  *scrub  = &dev->od_scrub;
2433         struct scrub_file *sf     = &scrub->os_file;
2434         struct dentry     *child;
2435         int                rc;
2436         ENTRY;
2437
2438         if (unlikely(sf->sf_internal_flags & SIF_NO_HANDLE_OLD_FID)) {
2439                 sf->sf_internal_flags &= ~SIF_NO_HANDLE_OLD_FID;
2440                 rc = osd_scrub_file_store(scrub);
2441                 if (rc != 0)
2442                         RETURN(rc);
2443         }
2444
2445         child = osd_ios_lookup_one_len(ADMIN_USR, dentry, strlen(ADMIN_USR));
2446         if (!IS_ERR(child)) {
2447                 rc = osd_ios_scan_one(info, dev, child->d_inode, NULL, 0);
2448                 dput(child);
2449         } else {
2450                 rc = PTR_ERR(child);
2451         }
2452
2453         if (rc != 0 && rc != -ENOENT)
2454                 RETURN(rc);
2455
2456         child = osd_ios_lookup_one_len(ADMIN_GRP, dentry, strlen(ADMIN_GRP));
2457         if (!IS_ERR(child)) {
2458                 rc = osd_ios_scan_one(info, dev, child->d_inode, NULL, 0);
2459                 dput(child);
2460         } else {
2461                 rc = PTR_ERR(child);
2462         }
2463
2464         if (rc == -ENOENT)
2465                 rc = 0;
2466
2467         RETURN(rc);
2468 }
2469
2470 static int osd_initial_OI_scrub(struct osd_thread_info *info,
2471                                 struct osd_device *dev)
2472 {
2473         struct osd_ios_item     *item    = NULL;
2474         scandir_t                scandir = osd_ios_general_scan;
2475         filldir_t                filldir = osd_ios_root_fill;
2476         struct dentry           *dentry  = osd_sb(dev)->s_root;
2477         const struct osd_lf_map *map     = osd_lf_maps;
2478         int                      rc;
2479         ENTRY;
2480
2481         /* Lookup IGIF in OI by force for initial OI scrub. */
2482         dev->od_igif_inoi = 1;
2483
2484         while (1) {
2485                 rc = scandir(info, dev, dentry, filldir);
2486                 if (item != NULL) {
2487                         dput(item->oii_dentry);
2488                         OBD_FREE_PTR(item);
2489                 }
2490
2491                 if (rc != 0)
2492                         break;
2493
2494                 if (list_empty(&dev->od_ios_list))
2495                         break;
2496
2497                 item = list_entry(dev->od_ios_list.next,
2498                                   struct osd_ios_item, oii_list);
2499                 list_del_init(&item->oii_list);
2500
2501                 LASSERT(item->oii_scandir != NULL);
2502                 scandir = item->oii_scandir;
2503                 filldir = item->oii_filldir;
2504                 dentry = item->oii_dentry;
2505         }
2506
2507         while (!list_empty(&dev->od_ios_list)) {
2508                 item = list_entry(dev->od_ios_list.next,
2509                                   struct osd_ios_item, oii_list);
2510                 list_del_init(&item->oii_list);
2511                 dput(item->oii_dentry);
2512                 OBD_FREE_PTR(item);
2513         }
2514
2515         if (rc != 0)
2516                 RETURN(rc);
2517
2518         /* There maybe the case that the object has been removed, but its OI
2519          * mapping is still in the OI file, such as the "CATALOGS" after MDT
2520          * file-level backup/restore. So here cleanup the stale OI mappings. */
2521         while (map->olm_name != NULL) {
2522                 struct dentry *child;
2523
2524                 if (fid_is_zero(&map->olm_fid)) {
2525                         map++;
2526                         continue;
2527                 }
2528
2529                 child = osd_ios_lookup_one_len(map->olm_name,
2530                                                osd_sb(dev)->s_root,
2531                                                map->olm_namelen);
2532                 if (!IS_ERR(child))
2533                         dput(child);
2534                 else if (PTR_ERR(child) == -ENOENT)
2535                         osd_scrub_refresh_mapping(info, dev, &map->olm_fid,
2536                                                   NULL, DTO_INDEX_DELETE,
2537                                                   true, 0, NULL);
2538                 map++;
2539         }
2540
2541         RETURN(0);
2542 }
2543
2544 char *osd_lf_fid2name(const struct lu_fid *fid)
2545 {
2546         const struct osd_lf_map *map = osd_lf_maps;
2547
2548         while (map->olm_name != NULL) {
2549                 if (!lu_fid_eq(fid, &map->olm_fid)) {
2550                         map++;
2551                         continue;
2552                 }
2553
2554                 if (map->olm_flags & OLF_SHOW_NAME)
2555                         return map->olm_name;
2556                 else
2557                         return "";
2558         }
2559
2560         return NULL;
2561 }
2562
2563 /* OI scrub start/stop */
2564
2565 static int do_osd_scrub_start(struct osd_device *dev, __u32 flags)
2566 {
2567         struct osd_scrub     *scrub  = &dev->od_scrub;
2568         struct ptlrpc_thread *thread = &scrub->os_thread;
2569         struct l_wait_info    lwi    = { 0 };
2570         struct task_struct   *task;
2571         int                   rc;
2572         ENTRY;
2573
2574         if (dev->od_dt_dev.dd_rdonly)
2575                 RETURN(-EROFS);
2576
2577         /* os_lock: sync status between stop and scrub thread */
2578         spin_lock(&scrub->os_lock);
2579
2580 again:
2581         if (thread_is_running(thread)) {
2582                 spin_unlock(&scrub->os_lock);
2583                 if (!(scrub->os_file.sf_flags & SF_AUTO ||
2584                       scrub->os_partial_scan) ||
2585                      (flags & SS_AUTO_PARTIAL))
2586                         RETURN(-EALREADY);
2587
2588                 osd_scrub_join(dev, flags, false);
2589                 spin_lock(&scrub->os_lock);
2590                 if (!thread_is_running(thread))
2591                         goto again;
2592
2593                 spin_unlock(&scrub->os_lock);
2594                 RETURN(0);
2595         }
2596
2597         if (unlikely(thread_is_stopping(thread))) {
2598                 spin_unlock(&scrub->os_lock);
2599                 l_wait_event(thread->t_ctl_waitq,
2600                              thread_is_stopped(thread),
2601                              &lwi);
2602                 spin_lock(&scrub->os_lock);
2603                 goto again;
2604         }
2605         spin_unlock(&scrub->os_lock);
2606
2607         if (scrub->os_file.sf_status == SS_COMPLETED) {
2608                 if (!(flags & SS_SET_FAILOUT))
2609                         flags |= SS_CLEAR_FAILOUT;
2610
2611                 if (!(flags & SS_SET_DRYRUN))
2612                         flags |= SS_CLEAR_DRYRUN;
2613
2614                 flags |= SS_RESET;
2615         }
2616
2617         scrub->os_start_flags = flags;
2618         thread_set_flags(thread, 0);
2619         task = kthread_run(osd_scrub_main, dev, "OI_scrub");
2620         if (IS_ERR(task)) {
2621                 rc = PTR_ERR(task);
2622                 CERROR("%.16s: cannot start iteration thread: rc = %d\n",
2623                        osd_scrub2name(scrub), rc);
2624                 RETURN(rc);
2625         }
2626
2627         l_wait_event(thread->t_ctl_waitq,
2628                      thread_is_running(thread) || thread_is_stopped(thread),
2629                      &lwi);
2630
2631         RETURN(0);
2632 }
2633
2634 int osd_scrub_start(struct osd_device *dev, __u32 flags)
2635 {
2636         int rc;
2637         ENTRY;
2638
2639         /* od_otable_mutex: prevent curcurrent start/stop */
2640         mutex_lock(&dev->od_otable_mutex);
2641         rc = do_osd_scrub_start(dev, flags);
2642         mutex_unlock(&dev->od_otable_mutex);
2643
2644         RETURN(rc == -EALREADY ? 0 : rc);
2645 }
2646
2647 static void do_osd_scrub_stop(struct osd_scrub *scrub)
2648 {
2649         struct ptlrpc_thread *thread = &scrub->os_thread;
2650         struct l_wait_info    lwi    = { 0 };
2651
2652         /* os_lock: sync status between stop and scrub thread */
2653         spin_lock(&scrub->os_lock);
2654         if (!thread_is_init(thread) && !thread_is_stopped(thread)) {
2655                 thread_set_flags(thread, SVC_STOPPING);
2656                 spin_unlock(&scrub->os_lock);
2657                 wake_up_all(&thread->t_ctl_waitq);
2658                 l_wait_event(thread->t_ctl_waitq,
2659                              thread_is_stopped(thread),
2660                              &lwi);
2661                 /* Do not skip the last lock/unlock, which can guarantee that
2662                  * the caller cannot return until the OI scrub thread exit. */
2663                 spin_lock(&scrub->os_lock);
2664         }
2665         spin_unlock(&scrub->os_lock);
2666 }
2667
2668 static void osd_scrub_stop(struct osd_device *dev)
2669 {
2670         /* od_otable_mutex: prevent curcurrent start/stop */
2671         mutex_lock(&dev->od_otable_mutex);
2672         dev->od_scrub.os_paused = 1;
2673         do_osd_scrub_stop(&dev->od_scrub);
2674         mutex_unlock(&dev->od_otable_mutex);
2675 }
2676
2677 /* OI scrub setup/cleanup */
2678
2679 static const char osd_scrub_name[] = "OI_scrub";
2680
2681 int osd_scrub_setup(const struct lu_env *env, struct osd_device *dev)
2682 {
2683         struct osd_thread_info     *info   = osd_oti_get(env);
2684         struct osd_scrub           *scrub  = &dev->od_scrub;
2685         struct lvfs_run_ctxt       *ctxt   = &scrub->os_ctxt;
2686         struct scrub_file          *sf     = &scrub->os_file;
2687         struct super_block         *sb     = osd_sb(dev);
2688         struct ldiskfs_super_block *es     = LDISKFS_SB(sb)->s_es;
2689         struct lvfs_run_ctxt        saved;
2690         struct file                *filp;
2691         struct inode               *inode;
2692         struct lu_fid              *fid    = &info->oti_fid;
2693         bool                        dirty  = false;
2694         bool                        restored = false;
2695         int                         rc     = 0;
2696         ENTRY;
2697
2698         memset(scrub, 0, sizeof(*scrub));
2699         OBD_SET_CTXT_MAGIC(ctxt);
2700         ctxt->pwdmnt = dev->od_mnt;
2701         ctxt->pwd = dev->od_mnt->mnt_root;
2702         ctxt->fs = get_ds();
2703
2704         init_waitqueue_head(&scrub->os_thread.t_ctl_waitq);
2705         init_rwsem(&scrub->os_rwsem);
2706         spin_lock_init(&scrub->os_lock);
2707         INIT_LIST_HEAD(&scrub->os_inconsistent_items);
2708
2709         push_ctxt(&saved, ctxt);
2710         filp = filp_open(osd_scrub_name, O_RDWR | O_CREAT, 0644);
2711         if (IS_ERR(filp)) {
2712                 pop_ctxt(&saved, ctxt);
2713                 RETURN(PTR_ERR(filp));
2714         }
2715
2716         inode = file_inode(filp);
2717         /* 'What the @fid is' is not imporatant, because the object
2718          * has no OI mapping, and only is visible inside the OSD.*/
2719         lu_igif_build(fid, inode->i_ino, inode->i_generation);
2720         rc = osd_ea_fid_set(info, inode, fid, LMAC_NOT_IN_OI, 0);
2721         if (rc != 0) {
2722                 filp_close(filp, NULL);
2723                 pop_ctxt(&saved, ctxt);
2724                 RETURN(rc);
2725         }
2726
2727         scrub->os_inode = igrab(inode);
2728         filp_close(filp, NULL);
2729         pop_ctxt(&saved, ctxt);
2730
2731         rc = osd_scrub_file_load(scrub);
2732         if (rc == -ENOENT) {
2733                 osd_scrub_file_init(scrub, es->s_uuid);
2734                 /* If the "/O" dir does not exist when mount (indicated by
2735                  * osd_device::od_maybe_new), neither for the "/OI_scrub",
2736                  * then it is quite probably that the device is a new one,
2737                  * under such case, mark it as SIF_NO_HANDLE_OLD_FID.
2738                  *
2739                  * For the rare case that "/O" and "OI_scrub" both lost on
2740                  * an old device, it can be found and cleared later.
2741                  *
2742                  * For the system with "SIF_NO_HANDLE_OLD_FID", we do not
2743                  * need to check "filter_fid_old" and to convert it to
2744                  * "filter_fid" for each object, and all the IGIF should
2745                  * have their FID mapping in OI files already. */
2746                 if (dev->od_maybe_new)
2747                         sf->sf_internal_flags = SIF_NO_HANDLE_OLD_FID;
2748                 dirty = true;
2749         } else if (rc != 0) {
2750                 GOTO(cleanup_inode, rc);
2751         } else {
2752                 if (memcmp(sf->sf_uuid, es->s_uuid, 16) != 0) {
2753                         struct obd_uuid *old_uuid;
2754                         struct obd_uuid *new_uuid;
2755
2756                         OBD_ALLOC_PTR(old_uuid);
2757                         OBD_ALLOC_PTR(new_uuid);
2758                         if (old_uuid == NULL || new_uuid == NULL) {
2759                                 CERROR("%.16s: UUID has been changed, but"
2760                                        "failed to allocate RAM for report\n",
2761                                        LDISKFS_SB(sb)->s_es->s_volume_name);
2762                         } else {
2763                                 class_uuid_unparse(sf->sf_uuid, old_uuid);
2764                                 class_uuid_unparse(es->s_uuid, new_uuid);
2765                                 CERROR("%.16s: UUID has been changed from "
2766                                        "%s to %s\n",
2767                                        LDISKFS_SB(sb)->s_es->s_volume_name,
2768                                        old_uuid->uuid, new_uuid->uuid);
2769                         }
2770                         osd_scrub_file_reset(scrub, es->s_uuid,SF_INCONSISTENT);
2771                         dirty = true;
2772                         restored = true;
2773                         if (old_uuid != NULL)
2774                                 OBD_FREE_PTR(old_uuid);
2775                         if (new_uuid != NULL)
2776                                 OBD_FREE_PTR(new_uuid);
2777                 } else if (sf->sf_status == SS_SCANNING) {
2778                         sf->sf_status = SS_CRASHED;
2779                         dirty = true;
2780                 }
2781         }
2782
2783         if (sf->sf_pos_last_checkpoint != 0)
2784                 scrub->os_pos_current = sf->sf_pos_last_checkpoint + 1;
2785         else
2786                 scrub->os_pos_current = LDISKFS_FIRST_INO(sb) + 1;
2787
2788         if (dirty) {
2789                 rc = osd_scrub_file_store(scrub);
2790                 if (rc != 0)
2791                         GOTO(cleanup_inode, rc);
2792         }
2793
2794         /* Initialize OI files. */
2795         rc = osd_oi_init(info, dev, restored);
2796         if (rc < 0)
2797                 GOTO(cleanup_inode, rc);
2798
2799         rc = osd_initial_OI_scrub(info, dev);
2800         if (rc != 0)
2801                 GOTO(cleanup_oi, rc);
2802
2803         if (sf->sf_flags & SF_UPGRADE ||
2804             !(sf->sf_internal_flags & SIF_NO_HANDLE_OLD_FID ||
2805               sf->sf_success_count > 0)) {
2806                 dev->od_igif_inoi = 0;
2807                 dev->od_check_ff = dev->od_is_ost;
2808         } else {
2809                 dev->od_igif_inoi = 1;
2810                 dev->od_check_ff = 0;
2811         }
2812
2813         if (sf->sf_flags & SF_INCONSISTENT)
2814                 /* The 'od_igif_inoi' will be set under the
2815                  * following cases:
2816                  * 1) new created system, or
2817                  * 2) restored from file-level backup, or
2818                  * 3) the upgrading completed.
2819                  *
2820                  * The 'od_igif_inoi' may be cleared by OI scrub
2821                  * later if found that the system is upgrading. */
2822                 dev->od_igif_inoi = 1;
2823
2824         if (!dev->od_dt_dev.dd_rdonly && !dev->od_noscrub &&
2825             ((sf->sf_status == SS_PAUSED) ||
2826              (sf->sf_status == SS_CRASHED &&
2827               sf->sf_flags & (SF_RECREATED | SF_INCONSISTENT |
2828                               SF_UPGRADE | SF_AUTO)) ||
2829              (sf->sf_status == SS_INIT &&
2830               sf->sf_flags & (SF_RECREATED | SF_INCONSISTENT |
2831                               SF_UPGRADE))))
2832                 rc = osd_scrub_start(dev, SS_AUTO_FULL);
2833
2834         if (rc != 0)
2835                 GOTO(cleanup_oi, rc);
2836
2837         /* it is possible that dcache entries may keep objects after they are
2838          * deleted by OSD. While it looks safe this can cause object data to
2839          * stay until umount causing failures in tests calculating free space,
2840          * e.g. replay-ost-single. Since those dcache entries are not used
2841          * anymore let's just free them after use here */
2842         shrink_dcache_sb(sb);
2843
2844         RETURN(0);
2845 cleanup_oi:
2846         osd_oi_fini(info, dev);
2847 cleanup_inode:
2848         iput(scrub->os_inode);
2849         scrub->os_inode = NULL;
2850
2851         return rc;
2852 }
2853
2854 void osd_scrub_cleanup(const struct lu_env *env, struct osd_device *dev)
2855 {
2856         struct osd_scrub *scrub = &dev->od_scrub;
2857
2858         LASSERT(dev->od_otable_it == NULL);
2859
2860         if (scrub->os_inode != NULL) {
2861                 osd_scrub_stop(dev);
2862                 iput(scrub->os_inode);
2863                 scrub->os_inode = NULL;
2864         }
2865         if (dev->od_oi_table != NULL)
2866                 osd_oi_fini(osd_oti_get(env), dev);
2867 }
2868
2869 /* object table based iteration APIs */
2870
2871 static struct dt_it *osd_otable_it_init(const struct lu_env *env,
2872                                        struct dt_object *dt, __u32 attr)
2873 {
2874         enum dt_otable_it_flags flags = attr >> DT_OTABLE_IT_FLAGS_SHIFT;
2875         enum dt_otable_it_valid valid = attr & ~DT_OTABLE_IT_FLAGS_MASK;
2876         struct osd_device      *dev   = osd_dev(dt->do_lu.lo_dev);
2877         struct osd_scrub       *scrub = &dev->od_scrub;
2878         struct osd_otable_it   *it;
2879         __u32                   start = 0;
2880         int                     rc;
2881         ENTRY;
2882
2883         /* od_otable_mutex: prevent curcurrent init/fini */
2884         mutex_lock(&dev->od_otable_mutex);
2885         if (dev->od_otable_it != NULL)
2886                 GOTO(out, it = ERR_PTR(-EALREADY));
2887
2888         OBD_ALLOC_PTR(it);
2889         if (it == NULL)
2890                 GOTO(out, it = ERR_PTR(-ENOMEM));
2891
2892         dev->od_otable_it = it;
2893         it->ooi_dev = dev;
2894         it->ooi_cache.ooc_consumer_idx = -1;
2895         if (flags & DOIF_OUTUSED)
2896                 it->ooi_used_outside = 1;
2897
2898         if (flags & DOIF_RESET)
2899                 start |= SS_RESET;
2900
2901         if (valid & DOIV_ERROR_HANDLE) {
2902                 if (flags & DOIF_FAILOUT)
2903                         start |= SS_SET_FAILOUT;
2904                 else
2905                         start |= SS_CLEAR_FAILOUT;
2906         }
2907
2908         if (valid & DOIV_DRYRUN) {
2909                 if (flags & DOIF_DRYRUN)
2910                         start |= SS_SET_DRYRUN;
2911                 else
2912                         start |= SS_CLEAR_DRYRUN;
2913         }
2914
2915         rc = do_osd_scrub_start(dev, start & ~SS_AUTO_PARTIAL);
2916         if (rc < 0 && rc != -EALREADY) {
2917                 dev->od_otable_it = NULL;
2918                 OBD_FREE_PTR(it);
2919                 GOTO(out, it = ERR_PTR(rc));
2920         }
2921
2922         it->ooi_cache.ooc_pos_preload = scrub->os_pos_current;
2923
2924         GOTO(out, it);
2925
2926 out:
2927         mutex_unlock(&dev->od_otable_mutex);
2928         return (struct dt_it *)it;
2929 }
2930
2931 static void osd_otable_it_fini(const struct lu_env *env, struct dt_it *di)
2932 {
2933         struct osd_otable_it *it  = (struct osd_otable_it *)di;
2934         struct osd_device    *dev = it->ooi_dev;
2935
2936         /* od_otable_mutex: prevent curcurrent init/fini */
2937         mutex_lock(&dev->od_otable_mutex);
2938         do_osd_scrub_stop(&dev->od_scrub);
2939         LASSERT(dev->od_otable_it == it);
2940
2941         dev->od_otable_it = NULL;
2942         mutex_unlock(&dev->od_otable_mutex);
2943         OBD_FREE_PTR(it);
2944 }
2945
2946 static int osd_otable_it_get(const struct lu_env *env,
2947                              struct dt_it *di, const struct dt_key *key)
2948 {
2949         return 0;
2950 }
2951
2952 static void osd_otable_it_put(const struct lu_env *env, struct dt_it *di)
2953 {
2954 }
2955
2956 static inline int
2957 osd_otable_it_wakeup(struct osd_scrub *scrub, struct osd_otable_it *it)
2958 {
2959         spin_lock(&scrub->os_lock);
2960         if (it->ooi_cache.ooc_pos_preload < scrub->os_pos_current ||
2961             scrub->os_waiting ||
2962             !thread_is_running(&scrub->os_thread))
2963                 it->ooi_waiting = 0;
2964         else
2965                 it->ooi_waiting = 1;
2966         spin_unlock(&scrub->os_lock);
2967
2968         return !it->ooi_waiting;
2969 }
2970
2971 static int osd_otable_it_next(const struct lu_env *env, struct dt_it *di)
2972 {
2973         struct osd_otable_it    *it     = (struct osd_otable_it *)di;
2974         struct osd_device       *dev    = it->ooi_dev;
2975         struct osd_scrub        *scrub  = &dev->od_scrub;
2976         struct osd_otable_cache *ooc    = &it->ooi_cache;
2977         struct ptlrpc_thread    *thread = &scrub->os_thread;
2978         struct l_wait_info       lwi    = { 0 };
2979         int                      rc;
2980         ENTRY;
2981
2982         LASSERT(it->ooi_user_ready);
2983
2984 again:
2985         if (!thread_is_running(thread) && !it->ooi_used_outside)
2986                 RETURN(1);
2987
2988         if (ooc->ooc_cached_items > 0) {
2989                 ooc->ooc_cached_items--;
2990                 ooc->ooc_consumer_idx = (ooc->ooc_consumer_idx + 1) &
2991                                         ~OSD_OTABLE_IT_CACHE_MASK;
2992                 RETURN(0);
2993         }
2994
2995         if (it->ooi_all_cached) {
2996                 l_wait_event(thread->t_ctl_waitq,
2997                              !thread_is_running(thread),
2998                              &lwi);
2999                 RETURN(1);
3000         }
3001
3002         if (scrub->os_waiting && osd_scrub_has_window(scrub, ooc)) {
3003                 spin_lock(&scrub->os_lock);
3004                 scrub->os_waiting = 0;
3005                 wake_up_all(&scrub->os_thread.t_ctl_waitq);
3006                 spin_unlock(&scrub->os_lock);
3007         }
3008
3009         if (it->ooi_cache.ooc_pos_preload >= scrub->os_pos_current)
3010                 l_wait_event(thread->t_ctl_waitq,
3011                              osd_otable_it_wakeup(scrub, it),
3012                              &lwi);
3013
3014         if (!thread_is_running(thread) && !it->ooi_used_outside)
3015                 RETURN(1);
3016
3017         rc = osd_otable_it_preload(env, it);
3018         if (rc >= 0)
3019                 goto again;
3020
3021         RETURN(rc);
3022 }
3023
3024 static struct dt_key *osd_otable_it_key(const struct lu_env *env,
3025                                         const struct dt_it *di)
3026 {
3027         return NULL;
3028 }
3029
3030 static int osd_otable_it_key_size(const struct lu_env *env,
3031                                   const struct dt_it *di)
3032 {
3033         return sizeof(__u64);
3034 }
3035
3036 static int osd_otable_it_rec(const struct lu_env *env, const struct dt_it *di,
3037                              struct dt_rec *rec, __u32 attr)
3038 {
3039         struct osd_otable_it    *it  = (struct osd_otable_it *)di;
3040         struct osd_otable_cache *ooc = &it->ooi_cache;
3041
3042         *(struct lu_fid *)rec = ooc->ooc_cache[ooc->ooc_consumer_idx].oic_fid;
3043
3044         /* Filter out Invald FID already. */
3045         LASSERTF(fid_is_sane((struct lu_fid *)rec),
3046                  "Invalid FID "DFID", p_idx = %d, c_idx = %d\n",
3047                  PFID((struct lu_fid *)rec),
3048                  ooc->ooc_producer_idx, ooc->ooc_consumer_idx);
3049
3050         return 0;
3051 }
3052
3053 static __u64 osd_otable_it_store(const struct lu_env *env,
3054                                  const struct dt_it *di)
3055 {
3056         struct osd_otable_it    *it  = (struct osd_otable_it *)di;
3057         struct osd_otable_cache *ooc = &it->ooi_cache;
3058         __u64                    hash;
3059
3060         if (it->ooi_user_ready && ooc->ooc_consumer_idx != -1)
3061                 hash = ooc->ooc_cache[ooc->ooc_consumer_idx].oic_lid.oii_ino;
3062         else
3063                 hash = ooc->ooc_pos_preload;
3064         return hash;
3065 }
3066
3067 /**
3068  * Set the OSD layer iteration start position as the specified hash.
3069  */
3070 static int osd_otable_it_load(const struct lu_env *env,
3071                               const struct dt_it *di, __u64 hash)
3072 {
3073         struct osd_otable_it    *it    = (struct osd_otable_it *)di;
3074         struct osd_device       *dev   = it->ooi_dev;
3075         struct osd_otable_cache *ooc   = &it->ooi_cache;
3076         struct osd_scrub        *scrub = &dev->od_scrub;
3077         int                      rc;
3078         ENTRY;
3079
3080         /* Forbid to set iteration position after iteration started. */
3081         if (it->ooi_user_ready)
3082                 RETURN(-EPERM);
3083
3084         LASSERT(!scrub->os_partial_scan);
3085
3086         if (hash > OSD_OTABLE_MAX_HASH)
3087                 hash = OSD_OTABLE_MAX_HASH;
3088
3089         ooc->ooc_pos_preload = hash;
3090         if (ooc->ooc_pos_preload <= LDISKFS_FIRST_INO(osd_sb(dev)))
3091                 ooc->ooc_pos_preload = LDISKFS_FIRST_INO(osd_sb(dev)) + 1;
3092
3093         it->ooi_user_ready = 1;
3094         if (!scrub->os_full_speed)
3095                 wake_up_all(&scrub->os_thread.t_ctl_waitq);
3096
3097         /* Unplug OSD layer iteration by the first next() call. */
3098         rc = osd_otable_it_next(env, (struct dt_it *)it);
3099
3100         RETURN(rc);
3101 }
3102
3103 static int osd_otable_it_key_rec(const struct lu_env *env,
3104                                  const struct dt_it *di, void *key_rec)
3105 {
3106         return 0;
3107 }
3108
3109 const struct dt_index_operations osd_otable_ops = {
3110         .dio_it = {
3111                 .init     = osd_otable_it_init,
3112                 .fini     = osd_otable_it_fini,
3113                 .get      = osd_otable_it_get,
3114                 .put      = osd_otable_it_put,
3115                 .next     = osd_otable_it_next,
3116                 .key      = osd_otable_it_key,
3117                 .key_size = osd_otable_it_key_size,
3118                 .rec      = osd_otable_it_rec,
3119                 .store    = osd_otable_it_store,
3120                 .load     = osd_otable_it_load,
3121                 .key_rec  = osd_otable_it_key_rec,
3122         }
3123 };
3124
3125 /* high priority inconsistent items list APIs */
3126
3127 #define SCRUB_BAD_OIMAP_DECAY_INTERVAL  60
3128
3129 int osd_oii_insert(struct osd_device *dev, struct osd_idmap_cache *oic,
3130                    int insert)
3131 {
3132         struct osd_inconsistent_item *oii;
3133         struct osd_scrub             *scrub  = &dev->od_scrub;
3134         struct ptlrpc_thread         *thread = &scrub->os_thread;
3135         int                           wakeup = 0;
3136         ENTRY;
3137
3138         OBD_ALLOC_PTR(oii);
3139         if (unlikely(oii == NULL))
3140                 RETURN(-ENOMEM);
3141
3142         INIT_LIST_HEAD(&oii->oii_list);
3143         oii->oii_cache = *oic;
3144         oii->oii_insert = insert;
3145
3146         if (scrub->os_partial_scan) {
3147                 __u64 now = cfs_time_current_sec();
3148
3149                 /* If there haven't been errors in a long time,
3150                  * decay old count until either the errors are
3151                  * gone or we reach the current interval. */
3152                 while (unlikely(scrub->os_bad_oimap_count > 0 &&
3153                                 scrub->os_bad_oimap_time +
3154                                 SCRUB_BAD_OIMAP_DECAY_INTERVAL < now)) {
3155                         scrub->os_bad_oimap_count >>= 1;
3156                         scrub->os_bad_oimap_time +=
3157                                 SCRUB_BAD_OIMAP_DECAY_INTERVAL;
3158                 }
3159
3160                 scrub->os_bad_oimap_time = now;
3161                 if (++scrub->os_bad_oimap_count >
3162                     dev->od_full_scrub_threshold_rate)
3163                         scrub->os_full_scrub = 1;
3164         }
3165
3166         spin_lock(&scrub->os_lock);
3167         if (unlikely(!thread_is_running(thread))) {
3168                 spin_unlock(&scrub->os_lock);
3169                 OBD_FREE_PTR(oii);
3170                 RETURN(-EAGAIN);
3171         }
3172
3173         if (list_empty(&scrub->os_inconsistent_items))
3174                 wakeup = 1;
3175         list_add_tail(&oii->oii_list, &scrub->os_inconsistent_items);
3176         spin_unlock(&scrub->os_lock);
3177
3178         if (wakeup != 0)
3179                 wake_up_all(&thread->t_ctl_waitq);
3180
3181         RETURN(0);
3182 }
3183
3184 int osd_oii_lookup(struct osd_device *dev, const struct lu_fid *fid,
3185                    struct osd_inode_id *id)
3186 {
3187         struct osd_scrub             *scrub = &dev->od_scrub;
3188         struct osd_inconsistent_item *oii;
3189         ENTRY;
3190
3191         spin_lock(&scrub->os_lock);
3192         list_for_each_entry(oii, &scrub->os_inconsistent_items, oii_list) {
3193                 if (lu_fid_eq(fid, &oii->oii_cache.oic_fid)) {
3194                         *id = oii->oii_cache.oic_lid;
3195                         spin_unlock(&scrub->os_lock);
3196                         RETURN(0);
3197                 }
3198         }
3199         spin_unlock(&scrub->os_lock);
3200
3201         RETURN(-ENOENT);
3202 }
3203
3204 /* OI scrub dump */
3205
3206 static const char *scrub_status_names[] = {
3207         "init",
3208         "scanning",
3209         "completed",
3210         "failed",
3211         "stopped",
3212         "paused",
3213         "crashed",
3214         NULL
3215 };
3216
3217 static const char *scrub_flags_names[] = {
3218         "recreated",
3219         "inconsistent",
3220         "auto",
3221         "upgrade",
3222         NULL
3223 };
3224
3225 static const char *scrub_param_names[] = {
3226         "failout",
3227         "dryrun",
3228         NULL
3229 };
3230
3231 static void scrub_bits_dump(struct seq_file *m, int bits, const char *names[],
3232                             const char *prefix)
3233 {
3234         int flag;
3235         int i;
3236
3237         seq_printf(m, "%s:%c", prefix, bits != 0 ? ' ' : '\n');
3238
3239         for (i = 0, flag = 1; bits != 0; i++, flag = 1 << i) {
3240                 if (flag & bits) {
3241                         bits &= ~flag;
3242                         seq_printf(m, "%s%c", names[i],
3243                                    bits != 0 ? ',' : '\n');
3244                 }
3245         }
3246 }
3247
3248 static void scrub_time_dump(struct seq_file *m, __u64 time, const char *prefix)
3249 {
3250         if (time != 0)
3251                 seq_printf(m, "%s: %llu seconds\n", prefix,
3252                            cfs_time_current_sec() - time);
3253         else
3254                 seq_printf(m, "%s: N/A\n", prefix);
3255 }
3256
3257 static void scrub_pos_dump(struct seq_file *m, __u64 pos, const char *prefix)
3258 {
3259         if (pos != 0)
3260                 seq_printf(m, "%s: %llu\n", prefix, pos);
3261         else
3262                 seq_printf(m, "%s: N/A\n", prefix);
3263 }
3264
3265 int osd_scrub_dump(struct seq_file *m, struct osd_device *dev)
3266 {
3267         struct osd_scrub  *scrub   = &dev->od_scrub;
3268         struct scrub_file *sf      = &scrub->os_file;
3269         __u64              checked;
3270         __u64              speed;
3271
3272         down_read(&scrub->os_rwsem);
3273         seq_printf(m, "name: OI_scrub\n"
3274                    "magic: 0x%x\n"
3275                    "oi_files: %d\n"
3276                    "status: %s\n",
3277                    sf->sf_magic, (int)sf->sf_oi_count,
3278                    scrub_status_names[sf->sf_status]);
3279
3280         scrub_bits_dump(m, sf->sf_flags, scrub_flags_names, "flags");
3281
3282         scrub_bits_dump(m, sf->sf_param, scrub_param_names, "param");
3283
3284         scrub_time_dump(m, sf->sf_time_last_complete,
3285                         "time_since_last_completed");
3286
3287         scrub_time_dump(m, sf->sf_time_latest_start,
3288                         "time_since_latest_start");
3289
3290         scrub_time_dump(m, sf->sf_time_last_checkpoint,
3291                         "time_since_last_checkpoint");
3292
3293         scrub_pos_dump(m, sf->sf_pos_latest_start,
3294                         "latest_start_position");
3295
3296         scrub_pos_dump(m, sf->sf_pos_last_checkpoint,
3297                         "last_checkpoint_position");
3298
3299         scrub_pos_dump(m, sf->sf_pos_first_inconsistent,
3300                         "first_failure_position");
3301
3302         checked = sf->sf_items_checked + scrub->os_new_checked;
3303         seq_printf(m, "checked: %llu\n"
3304                    "updated: %llu\n"
3305                    "failed: %llu\n"
3306                    "prior_updated: %llu\n"
3307                    "noscrub: %llu\n"
3308                    "igif: %llu\n"
3309                    "success_count: %u\n",
3310                    checked, sf->sf_items_updated, sf->sf_items_failed,
3311                    sf->sf_items_updated_prior, sf->sf_items_noscrub,
3312                    sf->sf_items_igif, sf->sf_success_count);
3313
3314         speed = checked;
3315         if (thread_is_running(&scrub->os_thread)) {
3316                 cfs_duration_t duration = cfs_time_current() -
3317                                           scrub->os_time_last_checkpoint;
3318                 __u64 new_checked = msecs_to_jiffies(scrub->os_new_checked *
3319                                                      MSEC_PER_SEC);
3320                 __u32 rtime = sf->sf_run_time +
3321                               cfs_duration_sec(duration + HALF_SEC);
3322
3323                 if (duration != 0)
3324                         do_div(new_checked, duration);
3325                 if (rtime != 0)
3326                         do_div(speed, rtime);
3327                 seq_printf(m, "run_time: %u seconds\n"
3328                            "average_speed: %llu objects/sec\n"
3329                            "real-time_speed: %llu objects/sec\n"
3330                            "current_position: %u\n"
3331                            "lf_scanned: %llu\n"
3332                            "lf_repaired: %llu\n"
3333                            "lf_failed: %llu\n",
3334                            rtime, speed, new_checked, scrub->os_pos_current,
3335                            scrub->os_lf_scanned, scrub->os_lf_repaired,
3336                            scrub->os_lf_failed);
3337         } else {
3338                 if (sf->sf_run_time != 0)
3339                         do_div(speed, sf->sf_run_time);
3340                 seq_printf(m, "run_time: %u seconds\n"
3341                            "average_speed: %llu objects/sec\n"
3342                            "real-time_speed: N/A\n"
3343                            "current_position: N/A\n"
3344                            "lf_scanned: %llu\n"
3345                            "lf_repaired: %llu\n"
3346                            "lf_failed: %llu\n",
3347                            sf->sf_run_time, speed, scrub->os_lf_scanned,
3348                            scrub->os_lf_repaired, scrub->os_lf_failed);
3349         }
3350
3351         up_read(&scrub->os_rwsem);
3352         return 0;
3353 }