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