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