Whamcloud - gitweb
LU-3118 lfsck: resume LFSCK from the last checkpoint
[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, 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 #ifndef EXPORT_SYMTAB
39 # define EXPORT_SYMTAB
40 #endif
41 #define DEBUG_SUBSYSTEM S_MDS
42
43 #include <lustre/lustre_idl.h>
44 #include <lustre_disk.h>
45 #include <dt_object.h>
46
47 #include "osd_internal.h"
48 #include "osd_oi.h"
49 #include "osd_scrub.h"
50
51 #define HALF_SEC        (CFS_HZ >> 1)
52
53 #define OSD_OTABLE_MAX_HASH             0x00000000ffffffffULL
54
55 #define SCRUB_NEXT_BREAK        1 /* exit current loop and process next group */
56 #define SCRUB_NEXT_CONTINUE     2 /* skip current object and process next bit */
57 #define SCRUB_NEXT_EXIT         3 /* exit all the loops */
58 #define SCRUB_NEXT_WAIT         4 /* wait for free cache slot */
59 #define SCRUB_NEXT_CRASH        5 /* simulate system crash during OI scrub */
60 #define SCRUB_NEXT_FATAL        6 /* simulate failure during OI scrub */
61 #define SCRUB_NEXT_NOSCRUB      7 /* new created object, no scrub on it */
62 #define SCRUB_NEXT_NOLMA        8 /* the inode has no FID-in-LMA */
63
64 /* misc functions */
65
66 static inline struct osd_device *osd_scrub2dev(struct osd_scrub *scrub)
67 {
68         return container_of0(scrub, struct osd_device, od_scrub);
69 }
70
71 static inline struct super_block *osd_scrub2sb(struct osd_scrub *scrub)
72 {
73         return osd_sb(osd_scrub2dev(scrub));
74 }
75
76 static inline int osd_scrub_has_window(struct osd_scrub *scrub,
77                                        struct osd_otable_cache *ooc)
78 {
79         return scrub->os_pos_current < ooc->ooc_pos_preload + SCRUB_WINDOW_SIZE;
80 }
81
82 static int osd_scrub_refresh_mapping(struct osd_thread_info *info,
83                                      struct osd_device *dev,
84                                      const struct lu_fid *fid,
85                                      const struct osd_inode_id *id, int ops)
86 {
87         struct lu_fid         *oi_fid = &info->oti_fid2;
88         struct osd_inode_id   *oi_id  = &info->oti_id2;
89         struct iam_container  *bag;
90         struct iam_path_descr *ipd;
91         handle_t              *jh;
92         int                    rc;
93         ENTRY;
94
95         fid_cpu_to_be(oi_fid, fid);
96         osd_id_pack(oi_id, id);
97         jh = ldiskfs_journal_start_sb(osd_sb(dev),
98                                       osd_dto_credits_noquota[ops]);
99         if (IS_ERR(jh)) {
100                 rc = PTR_ERR(jh);
101                 CERROR("%.16s: fail to start trans for scrub store: rc = %d\n",
102                        LDISKFS_SB(osd_sb(dev))->s_es->s_volume_name, rc);
103                 RETURN(rc);
104         }
105
106         bag = &osd_fid2oi(dev, fid)->oi_dir.od_container;
107         ipd = osd_idx_ipd_get(info->oti_env, bag);
108         if (unlikely(ipd == NULL)) {
109                 ldiskfs_journal_stop(jh);
110                 CERROR("%.16s: fail to get ipd for scrub store\n",
111                        LDISKFS_SB(osd_sb(dev))->s_es->s_volume_name);
112                 RETURN(-ENOMEM);
113         }
114
115         if (ops == DTO_INDEX_UPDATE) {
116                 rc = iam_update(jh, bag, (const struct iam_key *)oi_fid,
117                                 (struct iam_rec *)oi_id, ipd);
118         } else {
119                 rc = iam_insert(jh, bag, (const struct iam_key *)oi_fid,
120                                 (struct iam_rec *)oi_id, ipd);
121                 if (rc == -EEXIST) {
122                         rc = 1;
123                         /* XXX: There are trouble things when adding OI
124                          *      mapping for IGIF object, which may cause
125                          *      multiple objects to be mapped to the same
126                          *      IGIF formatted FID. Consider the following
127                          *      situations:
128                          *
129                          *      1) The MDT is upgrading from 1.8 device.
130                          *      The OI scrub generates IGIF FID1 for the
131                          *      OBJ1 and adds the OI mapping.
132                          *
133                          *      2) For some reason, the OI scrub does not
134                          *      process all the IGIF objects completely.
135                          *
136                          *      3) The MDT is backuped and restored against
137                          *      this device.
138                          *
139                          *      4) When the MDT mounts up, the OI scrub will
140                          *      try to rebuild the OI files. For some IGIF
141                          *      object, OBJ2, which was not processed by the
142                          *      OI scrub before the backup/restore, and the
143                          *      new generated IGIF formatted FID may be just
144                          *      the FID1, the same as OBJ1.
145                          *
146                          *      Under such case, the OI scrub cannot know how
147                          *      to generate new FID for the OBJ2.
148                          *
149                          *      Currently, we do nothing for that. One possible
150                          *      solution is to generate new normal FID for the
151                          *      conflict object.
152                          *
153                          *      Anyway, it is rare, only exists in theory. */
154                 }
155         }
156         osd_ipd_put(info->oti_env, bag, ipd);
157         ldiskfs_journal_stop(jh);
158         RETURN(rc);
159 }
160
161 /* OI_scrub file ops */
162
163 static void osd_scrub_file_to_cpu(struct scrub_file *des,
164                                   struct scrub_file *src)
165 {
166         memcpy(des->sf_uuid, src->sf_uuid, 16);
167         des->sf_flags   = le64_to_cpu(src->sf_flags);
168         des->sf_magic   = le32_to_cpu(src->sf_magic);
169         des->sf_status  = le16_to_cpu(src->sf_status);
170         des->sf_param   = le16_to_cpu(src->sf_param);
171         des->sf_time_last_complete      =
172                                 le64_to_cpu(src->sf_time_last_complete);
173         des->sf_time_latest_start       =
174                                 le64_to_cpu(src->sf_time_latest_start);
175         des->sf_time_last_checkpoint    =
176                                 le64_to_cpu(src->sf_time_last_checkpoint);
177         des->sf_pos_latest_start        =
178                                 le64_to_cpu(src->sf_pos_latest_start);
179         des->sf_pos_last_checkpoint     =
180                                 le64_to_cpu(src->sf_pos_last_checkpoint);
181         des->sf_pos_first_inconsistent  =
182                                 le64_to_cpu(src->sf_pos_first_inconsistent);
183         des->sf_items_checked           =
184                                 le64_to_cpu(src->sf_items_checked);
185         des->sf_items_updated           =
186                                 le64_to_cpu(src->sf_items_updated);
187         des->sf_items_failed            =
188                                 le64_to_cpu(src->sf_items_failed);
189         des->sf_items_updated_prior     =
190                                 le64_to_cpu(src->sf_items_updated_prior);
191         des->sf_run_time        = le32_to_cpu(src->sf_run_time);
192         des->sf_success_count   = le32_to_cpu(src->sf_success_count);
193         des->sf_oi_count        = le16_to_cpu(src->sf_oi_count);
194         memcpy(des->sf_oi_bitmap, src->sf_oi_bitmap, SCRUB_OI_BITMAP_SIZE);
195 }
196
197 static void osd_scrub_file_to_le(struct scrub_file *des,
198                                  struct scrub_file *src)
199 {
200         memcpy(des->sf_uuid, src->sf_uuid, 16);
201         des->sf_flags   = cpu_to_le64(src->sf_flags);
202         des->sf_magic   = cpu_to_le32(src->sf_magic);
203         des->sf_status  = cpu_to_le16(src->sf_status);
204         des->sf_param   = cpu_to_le16(src->sf_param);
205         des->sf_time_last_complete      =
206                                 cpu_to_le64(src->sf_time_last_complete);
207         des->sf_time_latest_start       =
208                                 cpu_to_le64(src->sf_time_latest_start);
209         des->sf_time_last_checkpoint    =
210                                 cpu_to_le64(src->sf_time_last_checkpoint);
211         des->sf_pos_latest_start        =
212                                 cpu_to_le64(src->sf_pos_latest_start);
213         des->sf_pos_last_checkpoint     =
214                                 cpu_to_le64(src->sf_pos_last_checkpoint);
215         des->sf_pos_first_inconsistent  =
216                                 cpu_to_le64(src->sf_pos_first_inconsistent);
217         des->sf_items_checked           =
218                                 cpu_to_le64(src->sf_items_checked);
219         des->sf_items_updated           =
220                                 cpu_to_le64(src->sf_items_updated);
221         des->sf_items_failed            =
222                                 cpu_to_le64(src->sf_items_failed);
223         des->sf_items_updated_prior     =
224                                 cpu_to_le64(src->sf_items_updated_prior);
225         des->sf_run_time        = cpu_to_le32(src->sf_run_time);
226         des->sf_success_count   = cpu_to_le32(src->sf_success_count);
227         des->sf_oi_count        = cpu_to_le16(src->sf_oi_count);
228         memcpy(des->sf_oi_bitmap, src->sf_oi_bitmap, SCRUB_OI_BITMAP_SIZE);
229 }
230
231 static void osd_scrub_file_init(struct osd_scrub *scrub, __u8 *uuid)
232 {
233         struct scrub_file *sf = &scrub->os_file;
234
235         memset(sf, 0, sizeof(*sf));
236         memcpy(sf->sf_uuid, uuid, 16);
237         sf->sf_magic = SCRUB_MAGIC_V1;
238         sf->sf_status = SS_INIT;
239 }
240
241 void osd_scrub_file_reset(struct osd_scrub *scrub, __u8 *uuid, __u64 flags)
242 {
243         struct scrub_file *sf = &scrub->os_file;
244
245         CDEBUG(D_LFSCK, "Reset OI scrub file, flags = "LPX64"\n", flags);
246         memcpy(sf->sf_uuid, uuid, 16);
247         sf->sf_status = SS_INIT;
248         sf->sf_flags |= flags;
249         sf->sf_param = 0;
250         sf->sf_run_time = 0;
251         sf->sf_time_latest_start = 0;
252         sf->sf_time_last_checkpoint = 0;
253         sf->sf_pos_latest_start = 0;
254         sf->sf_pos_last_checkpoint = 0;
255         sf->sf_pos_first_inconsistent = 0;
256         sf->sf_items_checked = 0;
257         sf->sf_items_updated = 0;
258         sf->sf_items_failed = 0;
259         sf->sf_items_updated_prior = 0;
260         sf->sf_items_noscrub = 0;
261         sf->sf_items_igif = 0;
262 }
263
264 static int osd_scrub_file_load(struct osd_scrub *scrub)
265 {
266         loff_t  pos  = 0;
267         char   *name = LDISKFS_SB(osd_scrub2sb(scrub))->s_es->s_volume_name;
268         int     len  = sizeof(scrub->os_file_disk);
269         int     rc;
270
271         rc = osd_ldiskfs_read(scrub->os_inode, &scrub->os_file_disk, len, &pos);
272         if (rc == len) {
273                 struct scrub_file *sf = &scrub->os_file;
274
275                 osd_scrub_file_to_cpu(sf, &scrub->os_file_disk);
276                 if (sf->sf_magic != SCRUB_MAGIC_V1) {
277                         CWARN("%.16s: invalid scrub magic 0x%x != 0x%x\n,",
278                               name, sf->sf_magic, SCRUB_MAGIC_V1);
279                         /* Process it as new scrub file. */
280                         rc = -ENOENT;
281                 } else {
282                         rc = 0;
283                 }
284         } else if (rc != 0) {
285                 CERROR("%.16s: fail to load scrub file, expected = %d, "
286                        "rc = %d\n", name, len, rc);
287                 if (rc > 0)
288                         rc = -EFAULT;
289         } else {
290                 /* return -ENOENT for empty scrub file case. */
291                 rc = -ENOENT;
292         }
293
294         return rc;
295 }
296
297 int osd_scrub_file_store(struct osd_scrub *scrub)
298 {
299         struct osd_device *dev;
300         handle_t          *jh;
301         loff_t             pos     = 0;
302         int                len     = sizeof(scrub->os_file_disk);
303         int                credits;
304         int                rc;
305
306         dev = container_of0(scrub, struct osd_device, od_scrub);
307         credits = osd_dto_credits_noquota[DTO_WRITE_BASE] +
308                   osd_dto_credits_noquota[DTO_WRITE_BLOCK];
309         jh = ldiskfs_journal_start_sb(osd_sb(dev), credits);
310         if (IS_ERR(jh)) {
311                 rc = PTR_ERR(jh);
312                 CERROR("%.16s: fail to start trans for scrub store, rc = %d\n",
313                        LDISKFS_SB(osd_scrub2sb(scrub))->s_es->s_volume_name,rc);
314                 return rc;
315         }
316
317         osd_scrub_file_to_le(&scrub->os_file_disk, &scrub->os_file);
318         rc = osd_ldiskfs_write_record(scrub->os_inode, &scrub->os_file_disk,
319                                       len, 0, &pos, jh);
320         ldiskfs_journal_stop(jh);
321         if (rc != 0)
322                 CERROR("%.16s: fail to store scrub file, expected = %d, "
323                        "rc = %d\n",
324                        LDISKFS_SB(osd_scrub2sb(scrub))->s_es->s_volume_name,
325                        len, rc);
326         scrub->os_time_last_checkpoint = cfs_time_current();
327         scrub->os_time_next_checkpoint = scrub->os_time_last_checkpoint +
328                                 cfs_time_seconds(SCRUB_CHECKPOINT_INTERVAL);
329         return rc;
330 }
331
332 /* OI scrub APIs */
333
334 static int osd_scrub_prep(struct osd_device *dev)
335 {
336         struct osd_scrub     *scrub  = &dev->od_scrub;
337         struct ptlrpc_thread *thread = &scrub->os_thread;
338         struct scrub_file    *sf     = &scrub->os_file;
339         __u32                 flags  = scrub->os_start_flags;
340         int                   rc;
341         ENTRY;
342
343         down_write(&scrub->os_rwsem);
344         if (flags & SS_SET_FAILOUT)
345                 sf->sf_param |= SP_FAILOUT;
346
347         if (flags & SS_CLEAR_FAILOUT)
348                 sf->sf_param &= ~SP_FAILOUT;
349
350         if (flags & SS_RESET)
351                 osd_scrub_file_reset(scrub,
352                         LDISKFS_SB(osd_sb(dev))->s_es->s_uuid, 0);
353
354         if (flags & SS_AUTO) {
355                 scrub->os_full_speed = 1;
356                 sf->sf_flags |= SF_AUTO;
357         } else {
358                 scrub->os_full_speed = 0;
359         }
360
361         if (sf->sf_flags & (SF_RECREATED | SF_INCONSISTENT | SF_UPGRADE))
362                 scrub->os_full_speed = 1;
363
364         scrub->os_in_prior = 0;
365         scrub->os_waiting = 0;
366         scrub->os_paused = 0;
367         scrub->os_new_checked = 0;
368         if (sf->sf_pos_last_checkpoint != 0)
369                 sf->sf_pos_latest_start = sf->sf_pos_last_checkpoint + 1;
370         else
371                 sf->sf_pos_latest_start = LDISKFS_FIRST_INO(osd_sb(dev)) + 1;
372
373         scrub->os_pos_current = sf->sf_pos_latest_start;
374         sf->sf_status = SS_SCANNING;
375         sf->sf_time_latest_start = cfs_time_current_sec();
376         sf->sf_time_last_checkpoint = sf->sf_time_latest_start;
377         rc = osd_scrub_file_store(scrub);
378         if (rc == 0) {
379                 spin_lock(&scrub->os_lock);
380                 thread_set_flags(thread, SVC_RUNNING);
381                 spin_unlock(&scrub->os_lock);
382                 cfs_waitq_broadcast(&thread->t_ctl_waitq);
383         }
384         up_write(&scrub->os_rwsem);
385
386         RETURN(rc);
387 }
388
389 static int
390 osd_scrub_check_update(struct osd_thread_info *info, struct osd_device *dev,
391                        struct osd_idmap_cache *oic, int val)
392 {
393         struct osd_scrub             *scrub  = &dev->od_scrub;
394         struct scrub_file            *sf     = &scrub->os_file;
395         struct lu_fid                *fid    = &oic->oic_fid;
396         struct osd_inode_id          *lid    = &oic->oic_lid;
397         struct osd_inode_id          *lid2   = &info->oti_id;
398         struct osd_inconsistent_item *oii    = NULL;
399         struct inode                 *inode  = NULL;
400         int                           ops    = DTO_INDEX_UPDATE;
401         int                           idx;
402         int                           rc;
403         ENTRY;
404
405         down_write(&scrub->os_rwsem);
406         scrub->os_new_checked++;
407         if (val < 0)
408                 GOTO(out, rc = val);
409
410         if (scrub->os_in_prior)
411                 oii = cfs_list_entry(oic, struct osd_inconsistent_item,
412                                      oii_cache);
413
414         if (lid->oii_ino < sf->sf_pos_latest_start && oii == NULL)
415                 GOTO(out, rc = 0);
416
417         if (fid_is_igif(fid))
418                 sf->sf_items_igif++;
419
420         if ((val == SCRUB_NEXT_NOLMA) &&
421             (!dev->od_handle_nolma || OBD_FAIL_CHECK(OBD_FAIL_FID_NOLMA)))
422                 GOTO(out, rc = 0);
423
424         if ((oii != NULL && oii->oii_insert) || (val == SCRUB_NEXT_NOLMA))
425                 goto iget;
426
427         /* XXX: Currently, no FID-in-LMA for OST object, so osd_oi_lookup()
428          *      without checking FLD is enough.
429          *
430          *      It should be updated if FID-in-LMA for OSD object introduced
431          *      in the future. */
432         rc = osd_oi_lookup(info, dev, fid, lid2, false);
433         if (rc != 0) {
434                 if (rc != -ENOENT)
435                         GOTO(out, rc);
436
437 iget:
438                 inode = osd_iget(info, dev, lid);
439                 if (IS_ERR(inode)) {
440                         rc = PTR_ERR(inode);
441                         /* Someone removed the inode. */
442                         if (rc == -ENOENT || rc == -ESTALE)
443                                 rc = 0;
444                         GOTO(out, rc);
445                 }
446
447                 /* Prevent the inode to be unlinked during OI scrub. */
448                 mutex_lock(&inode->i_mutex);
449                 if (unlikely(inode->i_nlink == 0)) {
450                         mutex_unlock(&inode->i_mutex);
451                         iput(inode);
452                         GOTO(out, rc = 0);
453                 }
454
455                 ops = DTO_INDEX_INSERT;
456                 idx = osd_oi_fid2idx(dev, fid);
457                 if (val == SCRUB_NEXT_NOLMA) {
458                         sf->sf_flags |= SF_UPGRADE;
459                         scrub->os_full_speed = 1;
460                         rc = osd_ea_fid_set(info, inode, fid, 0);
461                         if (rc != 0)
462                                 GOTO(out, rc);
463                 } else {
464                         sf->sf_flags |= SF_RECREATED | SF_INCONSISTENT;
465                         scrub->os_full_speed = 1;
466                         if (unlikely(!ldiskfs_test_bit(idx, sf->sf_oi_bitmap)))
467                                 ldiskfs_set_bit(idx, sf->sf_oi_bitmap);
468                 }
469         } else if (osd_id_eq(lid, lid2)) {
470                 GOTO(out, rc = 0);
471         } else {
472                 sf->sf_flags |= SF_INCONSISTENT;
473                 scrub->os_full_speed = 1;
474         }
475
476         rc = osd_scrub_refresh_mapping(info, dev, fid, lid, ops);
477         if (rc == 0) {
478                 if (scrub->os_in_prior)
479                         sf->sf_items_updated_prior++;
480                 else
481                         sf->sf_items_updated++;
482         }
483
484         GOTO(out, rc);
485
486 out:
487         if (rc < 0) {
488                 sf->sf_items_failed++;
489                 if (sf->sf_pos_first_inconsistent == 0 ||
490                     sf->sf_pos_first_inconsistent > lid->oii_ino)
491                         sf->sf_pos_first_inconsistent = lid->oii_ino;
492         } else {
493                 rc = 0;
494         }
495
496         if (ops == DTO_INDEX_INSERT) {
497                 mutex_unlock(&inode->i_mutex);
498                 iput(inode);
499         }
500         up_write(&scrub->os_rwsem);
501
502         if (oii != NULL) {
503                 LASSERT(!cfs_list_empty(&oii->oii_list));
504
505                 spin_lock(&scrub->os_lock);
506                 cfs_list_del_init(&oii->oii_list);
507                 spin_unlock(&scrub->os_lock);
508                 OBD_FREE_PTR(oii);
509         }
510         RETURN(sf->sf_param & SP_FAILOUT ? rc : 0);
511 }
512
513 static int osd_scrub_checkpoint(struct osd_scrub *scrub)
514 {
515         struct scrub_file *sf = &scrub->os_file;
516         int                rc;
517
518         if (likely(cfs_time_before(cfs_time_current(),
519                                    scrub->os_time_next_checkpoint) ||
520                    scrub->os_new_checked == 0))
521                 return 0;
522
523         down_write(&scrub->os_rwsem);
524         sf->sf_items_checked += scrub->os_new_checked;
525         scrub->os_new_checked = 0;
526         sf->sf_pos_last_checkpoint = scrub->os_pos_current;
527         sf->sf_time_last_checkpoint = cfs_time_current_sec();
528         sf->sf_run_time += cfs_duration_sec(cfs_time_current() + HALF_SEC -
529                                             scrub->os_time_last_checkpoint);
530         rc = osd_scrub_file_store(scrub);
531         up_write(&scrub->os_rwsem);
532
533         return rc;
534 }
535
536 static void osd_scrub_post(struct osd_scrub *scrub, int result)
537 {
538         struct scrub_file *sf = &scrub->os_file;
539         ENTRY;
540
541         down_write(&scrub->os_rwsem);
542         spin_lock(&scrub->os_lock);
543         thread_set_flags(&scrub->os_thread, SVC_STOPPING);
544         spin_unlock(&scrub->os_lock);
545         if (scrub->os_new_checked > 0) {
546                 sf->sf_items_checked += scrub->os_new_checked;
547                 scrub->os_new_checked = 0;
548                 sf->sf_pos_last_checkpoint = scrub->os_pos_current;
549         }
550         sf->sf_time_last_checkpoint = cfs_time_current_sec();
551         if (result > 0) {
552                 sf->sf_status = SS_COMPLETED;
553                 memset(sf->sf_oi_bitmap, 0, SCRUB_OI_BITMAP_SIZE);
554                 sf->sf_flags &= ~(SF_RECREATED | SF_INCONSISTENT |
555                                   SF_UPGRADE | SF_AUTO);
556                 sf->sf_time_last_complete = sf->sf_time_last_checkpoint;
557                 sf->sf_success_count++;
558         } else if (result == 0) {
559                 if (scrub->os_paused)
560                         sf->sf_status = SS_PAUSED;
561                 else
562                         sf->sf_status = SS_STOPPED;
563         } else {
564                 sf->sf_status = SS_FAILED;
565         }
566         sf->sf_run_time += cfs_duration_sec(cfs_time_current() + HALF_SEC -
567                                             scrub->os_time_last_checkpoint);
568         result = osd_scrub_file_store(scrub);
569         if (result < 0)
570                 CERROR("%.16s: fail to osd_scrub_post, rc = %d\n",
571                        LDISKFS_SB(osd_scrub2sb(scrub))->s_es->s_volume_name,
572                        result);
573         up_write(&scrub->os_rwsem);
574
575         EXIT;
576 }
577
578 /* iteration engine */
579
580 struct osd_iit_param {
581         struct super_block *sb;
582         struct buffer_head *bitmap;
583         ldiskfs_group_t bg;
584         __u32 gbase;
585         __u32 offset;
586 };
587
588 typedef int (*osd_iit_next_policy)(struct osd_thread_info *info,
589                                    struct osd_device *dev,
590                                    struct osd_iit_param *param,
591                                    struct osd_idmap_cache **oic,
592                                    int noslot);
593
594 typedef int (*osd_iit_exec_policy)(struct osd_thread_info *info,
595                                    struct osd_device *dev,
596                                    struct osd_iit_param *param,
597                                    struct osd_idmap_cache *oic,
598                                    int *noslot, int rc);
599
600 static int osd_iit_next(struct osd_iit_param *param, __u32 *pos)
601 {
602         param->offset = ldiskfs_find_next_bit(param->bitmap->b_data,
603                         LDISKFS_INODES_PER_GROUP(param->sb), param->offset);
604         if (param->offset >= LDISKFS_INODES_PER_GROUP(param->sb)) {
605                 *pos = 1 + (param->bg+1) * LDISKFS_INODES_PER_GROUP(param->sb);
606                 return SCRUB_NEXT_BREAK;
607         } else {
608                 *pos = param->gbase + param->offset;
609                 return 0;
610         }
611 }
612
613 static int osd_iit_iget(struct osd_thread_info *info, struct osd_device *dev,
614                         struct lu_fid *fid, struct osd_inode_id *lid, __u32 pos,
615                         struct super_block *sb, bool scrub)
616 {
617         struct lustre_mdt_attrs *lma   = &info->oti_mdt_attrs;
618         struct inode            *inode;
619         int                      rc;
620
621         osd_id_gen(lid, pos, OSD_OII_NOGEN);
622         inode = osd_iget(info, dev, lid);
623         if (IS_ERR(inode)) {
624                 rc = PTR_ERR(inode);
625                 /* The inode may be removed after bitmap searching, or the
626                  * file is new created without inode initialized yet. */
627                 if (rc == -ENOENT || rc == -ESTALE)
628                         return SCRUB_NEXT_CONTINUE;
629
630                 CERROR("%.16s: fail to read inode, ino# = %u, rc = %d\n",
631                        LDISKFS_SB(sb)->s_es->s_volume_name, pos, rc);
632                 return rc;
633         }
634
635         /* If the inode has no OI mapping, then it is special locally used,
636          * should be invisible to OI scrub or up layer LFSCK. */
637         if (ldiskfs_test_inode_state(inode, LDISKFS_STATE_LUSTRE_NO_OI)) {
638                 iput(inode);
639                 return SCRUB_NEXT_CONTINUE;
640         }
641
642         if (scrub &&
643             ldiskfs_test_inode_state(inode, LDISKFS_STATE_LUSTRE_NOSCRUB)) {
644                 /* Only skip it for the first OI scrub accessing. */
645                 ldiskfs_clear_inode_state(inode, LDISKFS_STATE_LUSTRE_NOSCRUB);
646                 iput(inode);
647                 return SCRUB_NEXT_NOSCRUB;
648         }
649
650         rc = osd_get_lma(info, inode, &info->oti_obj_dentry, lma);
651         if (rc == 0) {
652                 if (fid_is_llog(&lma->lma_self_fid) ||
653                     (!scrub && fid_is_internal(&lma->lma_self_fid)))
654                         rc = SCRUB_NEXT_CONTINUE;
655                 else
656                         *fid = lma->lma_self_fid;
657         } else if (rc == -ENODATA) {
658                 lu_igif_build(fid, inode->i_ino, inode->i_generation);
659                 if (scrub)
660                         rc = SCRUB_NEXT_NOLMA;
661                 else
662                         rc = 0;
663         }
664         iput(inode);
665         return rc;
666 }
667
668 static int osd_scrub_next(struct osd_thread_info *info, struct osd_device *dev,
669                           struct osd_iit_param *param,
670                           struct osd_idmap_cache **oic, int noslot)
671 {
672         struct osd_scrub     *scrub  = &dev->od_scrub;
673         struct ptlrpc_thread *thread = &scrub->os_thread;
674         struct lu_fid        *fid;
675         struct osd_inode_id  *lid;
676         int                   rc;
677
678         if (OBD_FAIL_CHECK(OBD_FAIL_OSD_SCRUB_DELAY) && cfs_fail_val > 0) {
679                 struct l_wait_info lwi;
680
681                 lwi = LWI_TIMEOUT(cfs_time_seconds(cfs_fail_val), NULL, NULL);
682                 l_wait_event(thread->t_ctl_waitq,
683                              !cfs_list_empty(&scrub->os_inconsistent_items) ||
684                              !thread_is_running(thread),
685                              &lwi);
686         }
687
688         if (OBD_FAIL_CHECK(OBD_FAIL_OSD_SCRUB_CRASH)) {
689                 spin_lock(&scrub->os_lock);
690                 thread_set_flags(thread, SVC_STOPPING);
691                 spin_unlock(&scrub->os_lock);
692                 return SCRUB_NEXT_CRASH;
693         }
694
695         if (OBD_FAIL_CHECK(OBD_FAIL_OSD_SCRUB_FATAL))
696                 return SCRUB_NEXT_FATAL;
697
698         if (unlikely(!thread_is_running(thread)))
699                 return SCRUB_NEXT_EXIT;
700
701         if (!cfs_list_empty(&scrub->os_inconsistent_items)) {
702                 struct osd_inconsistent_item *oii;
703
704                 oii = cfs_list_entry(scrub->os_inconsistent_items.next,
705                                      struct osd_inconsistent_item, oii_list);
706                 *oic = &oii->oii_cache;
707                 scrub->os_in_prior = 1;
708                 return 0;
709         }
710
711         if (noslot != 0)
712                 return SCRUB_NEXT_WAIT;
713
714         rc = osd_iit_next(param, &scrub->os_pos_current);
715         if (rc != 0)
716                 return rc;
717
718         *oic = &scrub->os_oic;
719         fid = &(*oic)->oic_fid;
720         lid = &(*oic)->oic_lid;
721         rc = osd_iit_iget(info, dev, fid, lid,
722                           scrub->os_pos_current, param->sb, true);
723         return rc;
724 }
725
726 static int osd_preload_next(struct osd_thread_info *info,
727                             struct osd_device *dev, struct osd_iit_param *param,
728                             struct osd_idmap_cache **oic, int noslot)
729 {
730         struct osd_otable_cache *ooc    = &dev->od_otable_it->ooi_cache;
731         struct osd_scrub        *scrub;
732         struct ptlrpc_thread    *thread;
733         int                      rc;
734
735         rc = osd_iit_next(param, &ooc->ooc_pos_preload);
736         if (rc != 0)
737                 return rc;
738
739         scrub = &dev->od_scrub;
740         thread = &scrub->os_thread;
741         if (thread_is_running(thread) &&
742             ooc->ooc_pos_preload >= scrub->os_pos_current)
743                 return SCRUB_NEXT_EXIT;
744
745         rc = osd_iit_iget(info, dev,
746                           &ooc->ooc_cache[ooc->ooc_producer_idx].oic_fid,
747                           &ooc->ooc_cache[ooc->ooc_producer_idx].oic_lid,
748                           ooc->ooc_pos_preload, param->sb, false);
749         /* If succeed, it needs to move forward; otherwise up layer LFSCK may
750          * ignore the failure, so it still need to skip the inode next time. */
751         ooc->ooc_pos_preload = param->gbase + ++(param->offset);
752         return rc;
753 }
754
755 static inline int
756 osd_scrub_wakeup(struct osd_scrub *scrub, struct osd_otable_it *it)
757 {
758         spin_lock(&scrub->os_lock);
759         if (osd_scrub_has_window(scrub, &it->ooi_cache) ||
760             !cfs_list_empty(&scrub->os_inconsistent_items) ||
761             it->ooi_waiting || !thread_is_running(&scrub->os_thread))
762                 scrub->os_waiting = 0;
763         else
764                 scrub->os_waiting = 1;
765         spin_unlock(&scrub->os_lock);
766
767         return !scrub->os_waiting;
768 }
769
770 static int osd_scrub_exec(struct osd_thread_info *info, struct osd_device *dev,
771                           struct osd_iit_param *param,
772                           struct osd_idmap_cache *oic, int *noslot, int rc)
773 {
774         struct l_wait_info       lwi    = { 0 };
775         struct osd_scrub        *scrub  = &dev->od_scrub;
776         struct scrub_file       *sf     = &scrub->os_file;
777         struct ptlrpc_thread    *thread = &scrub->os_thread;
778         struct osd_otable_it    *it     = dev->od_otable_it;
779         struct osd_otable_cache *ooc    = it ? &it->ooi_cache : NULL;
780
781         switch (rc) {
782         case SCRUB_NEXT_CONTINUE:
783                 goto next;
784         case SCRUB_NEXT_WAIT:
785                 goto wait;
786         case SCRUB_NEXT_NOSCRUB:
787                 down_write(&scrub->os_rwsem);
788                 scrub->os_new_checked++;
789                 sf->sf_items_noscrub++;
790                 up_write(&scrub->os_rwsem);
791                 goto next;
792         }
793
794         rc = osd_scrub_check_update(info, dev, oic, rc);
795         if (rc != 0)
796                 return rc;
797
798         rc = osd_scrub_checkpoint(scrub);
799         if (rc != 0) {
800                 CERROR("%.16s: fail to checkpoint, pos = %u, rc = %d\n",
801                        LDISKFS_SB(param->sb)->s_es->s_volume_name,
802                        scrub->os_pos_current, rc);
803                 /* Continue, as long as the scrub itself can go ahead. */
804         }
805
806         if (scrub->os_in_prior) {
807                 scrub->os_in_prior = 0;
808                 return 0;
809         }
810
811 next:
812         scrub->os_pos_current = param->gbase + ++(param->offset);
813
814 wait:
815         if (it != NULL && it->ooi_waiting &&
816             ooc->ooc_pos_preload < scrub->os_pos_current) {
817                 spin_lock(&scrub->os_lock);
818                 it->ooi_waiting = 0;
819                 cfs_waitq_broadcast(&thread->t_ctl_waitq);
820                 spin_unlock(&scrub->os_lock);
821         }
822
823         if (scrub->os_full_speed || rc == SCRUB_NEXT_CONTINUE)
824                 return 0;
825
826         if (osd_scrub_has_window(scrub, ooc)) {
827                 *noslot = 0;
828                 return 0;
829         }
830
831         l_wait_event(thread->t_ctl_waitq,
832                      osd_scrub_wakeup(scrub, it),
833                      &lwi);
834
835         if (osd_scrub_has_window(scrub, ooc))
836                 *noslot = 0;
837         else
838                 *noslot = 1;
839         return 0;
840 }
841
842 static int osd_preload_exec(struct osd_thread_info *info,
843                             struct osd_device *dev, struct osd_iit_param *param,
844                             struct osd_idmap_cache *oic, int *noslot, int rc)
845 {
846         struct osd_otable_cache *ooc = &dev->od_otable_it->ooi_cache;
847
848         if (rc == 0) {
849                 ooc->ooc_cached_items++;
850                 ooc->ooc_producer_idx = (ooc->ooc_producer_idx + 1) &
851                                         ~OSD_OTABLE_IT_CACHE_MASK;
852         }
853         return rc > 0 ? 0 : rc;
854 }
855
856 #define SCRUB_IT_ALL    1
857 #define SCRUB_IT_CRASH  2
858
859 static int osd_inode_iteration(struct osd_thread_info *info,
860                                struct osd_device *dev, __u32 max, bool preload)
861 {
862         osd_iit_next_policy   next;
863         osd_iit_exec_policy   exec;
864         __u32                *pos;
865         __u32                *count;
866         struct osd_iit_param  param;
867         __u32                 limit;
868         int                   noslot = 0;
869         int                   rc;
870         ENTRY;
871
872         if (!preload) {
873                 struct osd_scrub *scrub = &dev->od_scrub;
874
875                 next = osd_scrub_next;
876                 exec = osd_scrub_exec;
877                 pos = &scrub->os_pos_current;
878                 count = &scrub->os_new_checked;
879         } else {
880                 struct osd_otable_cache *ooc = &dev->od_otable_it->ooi_cache;
881
882                 next = osd_preload_next;
883                 exec = osd_preload_exec;
884                 pos = &ooc->ooc_pos_preload;
885                 count = &ooc->ooc_cached_items;
886         }
887         param.sb = osd_sb(dev);
888         limit = le32_to_cpu(LDISKFS_SB(param.sb)->s_es->s_inodes_count);
889
890         while (*pos <= limit && *count < max) {
891                 struct osd_idmap_cache *oic = NULL;
892
893                 param.bg = (*pos - 1) / LDISKFS_INODES_PER_GROUP(param.sb);
894                 param.offset = (*pos - 1) % LDISKFS_INODES_PER_GROUP(param.sb);
895                 param.gbase = 1 + param.bg * LDISKFS_INODES_PER_GROUP(param.sb);
896                 param.bitmap = ldiskfs_read_inode_bitmap(param.sb, param.bg);
897                 if (param.bitmap == NULL) {
898                         CERROR("%.16s: fail to read bitmap for %u, "
899                                "scrub will stop, urgent mode\n",
900                                LDISKFS_SB(param.sb)->s_es->s_volume_name,
901                                (__u32)param.bg);
902                         RETURN(-EIO);
903                 }
904
905                 while (param.offset < LDISKFS_INODES_PER_GROUP(param.sb) &&
906                        *count < max) {
907                         rc = next(info, dev, &param, &oic, noslot);
908                         switch (rc) {
909                         case SCRUB_NEXT_BREAK:
910                                 goto next_group;
911                         case SCRUB_NEXT_EXIT:
912                                 brelse(param.bitmap);
913                                 RETURN(0);
914                         case SCRUB_NEXT_CRASH:
915                                 brelse(param.bitmap);
916                                 RETURN(SCRUB_IT_CRASH);
917                         case SCRUB_NEXT_FATAL:
918                                 brelse(param.bitmap);
919                                 RETURN(-EINVAL);
920                         }
921
922                         rc = exec(info, dev, &param, oic, &noslot, rc);
923                         if (rc != 0) {
924                                 brelse(param.bitmap);
925                                 RETURN(rc);
926                         }
927
928                         if (preload && dev->od_otable_it->ooi_stopping) {
929                                 brelse(param.bitmap);
930                                 RETURN(0);
931                         }
932                 }
933
934 next_group:
935                 brelse(param.bitmap);
936
937                 if (preload && dev->od_otable_it->ooi_stopping)
938                         RETURN(0);
939         }
940
941         if (*pos > limit)
942                 RETURN(SCRUB_IT_ALL);
943         RETURN(0);
944 }
945
946 static int osd_otable_it_preload(const struct lu_env *env,
947                                  struct osd_otable_it *it)
948 {
949         struct osd_device       *dev   = it->ooi_dev;
950         struct osd_scrub        *scrub = &dev->od_scrub;
951         struct osd_otable_cache *ooc   = &it->ooi_cache;
952         int                      rc;
953         ENTRY;
954
955         rc = osd_inode_iteration(osd_oti_get(env), dev,
956                                  OSD_OTABLE_IT_CACHE_SIZE, true);
957         if (rc == SCRUB_IT_ALL)
958                 it->ooi_all_cached = 1;
959
960         CDEBUG(D_LFSCK, "OSD pre-loaded: max = %u, preload = %u, rc = %d\n",
961                le32_to_cpu(LDISKFS_SB(osd_sb(dev))->s_es->s_inodes_count),
962                ooc->ooc_pos_preload, rc);
963
964         if (scrub->os_waiting && osd_scrub_has_window(scrub, ooc)) {
965                 scrub->os_waiting = 0;
966                 cfs_waitq_broadcast(&scrub->os_thread.t_ctl_waitq);
967         }
968
969         RETURN(rc < 0 ? rc : ooc->ooc_cached_items);
970 }
971
972 static int osd_scrub_main(void *args)
973 {
974         struct lu_env         env;
975         struct osd_device    *dev    = (struct osd_device *)args;
976         struct osd_scrub     *scrub  = &dev->od_scrub;
977         struct ptlrpc_thread *thread = &scrub->os_thread;
978         struct super_block   *sb     = osd_sb(dev);
979         int                   rc;
980         ENTRY;
981
982         cfs_daemonize("OI_scrub");
983         rc = lu_env_init(&env, LCT_DT_THREAD);
984         if (rc != 0) {
985                 CERROR("%.16s: OI scrub, fail to init env, rc = %d\n",
986                        LDISKFS_SB(sb)->s_es->s_volume_name, rc);
987                 GOTO(noenv, rc);
988         }
989
990         rc = osd_scrub_prep(dev);
991         if (rc != 0) {
992                 CERROR("%.16s: OI scrub, fail to scrub prep, rc = %d\n",
993                        LDISKFS_SB(sb)->s_es->s_volume_name, rc);
994                 GOTO(out, rc);
995         }
996
997         if (!scrub->os_full_speed) {
998                 struct l_wait_info lwi = { 0 };
999                 struct osd_otable_it *it = dev->od_otable_it;
1000                 struct osd_otable_cache *ooc = &it->ooi_cache;
1001
1002                 l_wait_event(thread->t_ctl_waitq,
1003                              it->ooi_user_ready || !thread_is_running(thread),
1004                              &lwi);
1005                 if (unlikely(!thread_is_running(thread)))
1006                         GOTO(post, rc = 0);
1007
1008                 scrub->os_pos_current = ooc->ooc_pos_preload;
1009         }
1010
1011         CDEBUG(D_LFSCK, "OI scrub: flags = 0x%x, pos = %u\n",
1012                scrub->os_start_flags, scrub->os_pos_current);
1013
1014         rc = osd_inode_iteration(osd_oti_get(&env), dev, ~0U, false);
1015         if (unlikely(rc == SCRUB_IT_CRASH))
1016                 GOTO(out, rc = -EINVAL);
1017         GOTO(post, rc);
1018
1019 post:
1020         osd_scrub_post(scrub, rc);
1021         CDEBUG(D_LFSCK, "OI scrub: stop, rc = %d, pos = %u\n",
1022                rc, scrub->os_pos_current);
1023
1024 out:
1025         while (!cfs_list_empty(&scrub->os_inconsistent_items)) {
1026                 struct osd_inconsistent_item *oii;
1027
1028                 oii = cfs_list_entry(scrub->os_inconsistent_items.next,
1029                                      struct osd_inconsistent_item, oii_list);
1030                 cfs_list_del_init(&oii->oii_list);
1031                 OBD_FREE_PTR(oii);
1032         }
1033         lu_env_fini(&env);
1034
1035 noenv:
1036         spin_lock(&scrub->os_lock);
1037         thread_set_flags(thread, SVC_STOPPED);
1038         cfs_waitq_broadcast(&thread->t_ctl_waitq);
1039         spin_unlock(&scrub->os_lock);
1040         return rc;
1041 }
1042
1043 /* initial OI scrub */
1044
1045 typedef int (*scandir_t)(struct osd_thread_info *, struct osd_device *,
1046                          struct dentry *, filldir_t filldir);
1047
1048 static int osd_ios_varfid_fill(void *buf, const char *name, int namelen,
1049                                loff_t offset, __u64 ino, unsigned d_type);
1050
1051 static int
1052 osd_ios_general_scan(struct osd_thread_info *info, struct osd_device *dev,
1053                      struct dentry *dentry, filldir_t filldir);
1054 static int
1055 osd_ios_ROOT_scan(struct osd_thread_info *info, struct osd_device *dev,
1056                   struct dentry *dentry, filldir_t filldir);
1057
1058 static int
1059 osd_ios_OBJECTS_scan(struct osd_thread_info *info, struct osd_device *dev,
1060                      struct dentry *dentry, filldir_t filldir);
1061
1062 enum osd_lf_flags {
1063         OLF_SCAN_SUBITEMS       = 0x0001,
1064         OLF_HIDE_FID            = 0x0002,
1065         OLF_SHOW_NAME           = 0x0004,
1066 };
1067
1068 struct osd_lf_map {
1069         char            *olm_name;
1070         struct lu_fid    olm_fid;
1071         __u16            olm_flags;
1072         scandir_t        olm_scandir;
1073         filldir_t        olm_filldir;
1074 };
1075
1076 /* Add the new introduced local files in the list in the future. */
1077 static const struct osd_lf_map osd_lf_maps[] = {
1078         /* CATALOGS */
1079         { CATLIST, { FID_SEQ_LOCAL_FILE, LLOG_CATALOGS_OID, 0 }, OLF_SHOW_NAME,
1080                 NULL, NULL },
1081
1082         /* CONFIGS */
1083         { MOUNT_CONFIGS_DIR, { FID_SEQ_LOCAL_FILE, MGS_CONFIGS_OID, 0 },
1084                 OLF_SCAN_SUBITEMS, osd_ios_general_scan,
1085                 osd_ios_varfid_fill },
1086
1087         /* NIDTBL_VERSIONS */
1088         { MGS_NIDTBL_DIR, { 0, 0, 0 }, OLF_SCAN_SUBITEMS,
1089                 osd_ios_general_scan, osd_ios_varfid_fill },
1090
1091         /* PENDING */
1092         { "PENDING", { FID_SEQ_LOCAL_FILE, MDD_ORPHAN_OID, 0 }, 0, NULL, NULL },
1093
1094         /* ROOT */
1095         { "ROOT", { FID_SEQ_ROOT, 1, 0 },
1096                 OLF_SCAN_SUBITEMS | OLF_HIDE_FID, osd_ios_ROOT_scan, NULL },
1097
1098         /* changelog_catalog */
1099         { CHANGELOG_CATALOG, { 0, 0, 0 }, 0, NULL, NULL },
1100
1101         /* changelog_users */
1102         { CHANGELOG_USERS, { 0, 0, 0 }, 0, NULL, NULL },
1103
1104         /* fld */
1105         { "fld", { FID_SEQ_LOCAL_FILE, FLD_INDEX_OID, 0 }, OLF_SHOW_NAME,
1106                 NULL, NULL },
1107
1108         /* last_rcvd */
1109         { LAST_RCVD, { FID_SEQ_LOCAL_FILE, LAST_RECV_OID, 0 }, OLF_SHOW_NAME,
1110                 NULL, NULL },
1111
1112         /* lfsck_bookmark */
1113         { "lfsck_bookmark", { FID_SEQ_LOCAL_FILE, LFSCK_BOOKMARK_OID, 0 }, 0,
1114                 NULL, NULL },
1115
1116         /* lov_objid */
1117         { LOV_OBJID, { FID_SEQ_LOCAL_FILE, MDD_LOV_OBJ_OID, 0 }, OLF_SHOW_NAME,
1118                 NULL, NULL },
1119
1120         /* lov_objseq */
1121         { LOV_OBJSEQ, { FID_SEQ_LOCAL_FILE, MDD_LOV_OBJ_OSEQ, 0 },
1122                 OLF_SHOW_NAME, NULL, NULL },
1123
1124         /* quota_master */
1125         { QMT_DIR, { 0, 0, 0 }, OLF_SCAN_SUBITEMS,
1126                 osd_ios_general_scan, osd_ios_varfid_fill },
1127
1128         /* quota_slave */
1129         { QSD_DIR, { 0, 0, 0 }, OLF_SCAN_SUBITEMS,
1130                 osd_ios_general_scan, osd_ios_varfid_fill },
1131
1132         /* seq-200000003-lastid */
1133         { "seq-200000003-lastid", { FID_SEQ_LOCAL_NAME, 1, 0 }, 0,
1134                 NULL, NULL },
1135
1136         /* seq_ctl */
1137         { "seq_ctl", { FID_SEQ_LOCAL_FILE, FID_SEQ_CTL_OID, 0 },
1138                 OLF_SHOW_NAME, NULL, NULL },
1139
1140         /* seq_srv */
1141         { "seq_srv", { FID_SEQ_LOCAL_FILE, FID_SEQ_SRV_OID, 0 },
1142                 OLF_SHOW_NAME, NULL, NULL },
1143
1144         /* LAST_GROUP */
1145         { "LAST_GROUP", { FID_SEQ_LOCAL_FILE, OFD_LAST_GROUP_OID, 0 },
1146                 OLF_SHOW_NAME, NULL, NULL },
1147
1148         /* health_check */
1149         { HEALTH_CHECK, { FID_SEQ_LOCAL_FILE, OFD_HEALTH_CHECK_OID, 0 },
1150                 OLF_SHOW_NAME, NULL, NULL },
1151
1152         /* lfsck_namespace */
1153         { "lfsck_namespace", { FID_SEQ_LOCAL_FILE, LFSCK_BOOKMARK_OID, 0 }, 0,
1154                 NULL, NULL },
1155
1156         /* OBJECTS, upgrade from old device */
1157         { OBJECTS, { 0, 0, 0 }, OLF_SCAN_SUBITEMS, osd_ios_OBJECTS_scan, NULL },
1158
1159         /* lquota_v2.user, upgrade from old device */
1160         { "lquota_v2.user", { 0, 0, 0 }, 0, NULL, NULL },
1161
1162         /* lquota_v2.group, upgrade from old device */
1163         { "lquota_v2.group", { 0, 0, 0 }, 0, NULL, NULL },
1164
1165         { NULL, { 0, 0, 0 }, 0, NULL, NULL }
1166 };
1167
1168 struct osd_ios_item {
1169         cfs_list_t       oii_list;
1170         struct dentry   *oii_dentry;
1171         scandir_t        oii_scandir;
1172         filldir_t        oii_filldir;
1173 };
1174
1175 struct osd_ios_filldir_buf {
1176         struct osd_thread_info  *oifb_info;
1177         struct osd_device       *oifb_dev;
1178         struct dentry           *oifb_dentry;
1179 };
1180
1181 static inline struct dentry *
1182 osd_ios_lookup_one_len(const char *name, struct dentry *parent, int namelen)
1183 {
1184         struct dentry *dentry;
1185
1186         dentry = ll_lookup_one_len(name, parent, namelen);
1187         if (!IS_ERR(dentry) && dentry->d_inode == NULL) {
1188                 dput(dentry);
1189                 return ERR_PTR(-ENOENT);
1190         }
1191
1192         return dentry;
1193 }
1194
1195 static inline void
1196 osd_ios_llogname2fid(struct lu_fid *fid, const char *name, int namelen)
1197 {
1198         obd_id id = 0;
1199         int    i  = 0;
1200
1201         fid->f_seq = FID_SEQ_LLOG;
1202         while (i < namelen)
1203                 id = id * 10 + name[i++] - '0';
1204
1205         fid->f_oid = id & 0x00000000ffffffffULL;
1206         fid->f_ver = id >> 32;
1207 }
1208
1209 static inline void
1210 osd_ios_Oname2fid(struct lu_fid *fid, const char *name, int namelen)
1211 {
1212         __u64 seq = 0;
1213         int   i   = 0;
1214
1215         while (i < namelen)
1216                 seq = seq * 10 + name[i++] - '0';
1217
1218         lu_last_id_fid(fid, seq);
1219 }
1220
1221 static int
1222 osd_ios_new_item(struct osd_device *dev, struct dentry *dentry,
1223                  scandir_t scandir, filldir_t filldir)
1224 {
1225         struct osd_ios_item *item;
1226
1227         OBD_ALLOC_PTR(item);
1228         if (item == NULL)
1229                 return -ENOMEM;
1230
1231         CFS_INIT_LIST_HEAD(&item->oii_list);
1232         item->oii_dentry = dget(dentry);
1233         item->oii_scandir = scandir;
1234         item->oii_filldir = filldir;
1235         cfs_list_add_tail(&item->oii_list, &dev->od_ios_list);
1236         return 0;
1237 }
1238
1239 /**
1240  * osd_ios_scan_one() - check/fix LMA FID and OI entry for one inode
1241  *
1242  * The passed \a inode's \a fid is verified against the LMA FID. If the \a fid
1243  * is NULL or is empty the IGIF FID is used. The FID is verified in the OI to
1244  * reference the inode, or fixed if it is missing or references another inode.
1245  */
1246 static int
1247 osd_ios_scan_one(struct osd_thread_info *info, struct osd_device *dev,
1248                  struct inode *inode, const struct lu_fid *fid, int flags)
1249 {
1250         struct lustre_mdt_attrs *lma    = &info->oti_mdt_attrs;
1251         struct osd_inode_id     *id     = &info->oti_id;
1252         struct osd_inode_id     *id2    = &info->oti_id2;
1253         struct osd_scrub        *scrub  = &dev->od_scrub;
1254         struct scrub_file       *sf     = &scrub->os_file;
1255         struct lu_fid            tfid;
1256         int                      rc;
1257         ENTRY;
1258
1259         rc = osd_get_lma(info, inode, &info->oti_obj_dentry, lma);
1260         if (rc != 0 && rc != -ENODATA)
1261                 RETURN(rc);
1262
1263         osd_id_gen(id, inode->i_ino, inode->i_generation);
1264         if (rc == -ENODATA) {
1265                 if (fid == NULL || fid_is_zero(fid) || flags & OLF_HIDE_FID)
1266                         lu_igif_build(&tfid, inode->i_ino, inode->i_generation);
1267                 else
1268                         tfid = *fid;
1269                 rc = osd_ea_fid_set(info, inode, &tfid, 0);
1270                 if (rc != 0)
1271                         RETURN(rc);
1272         } else {
1273                 tfid = lma->lma_self_fid;
1274         }
1275
1276         rc = __osd_oi_lookup(info, dev, &tfid, id2);
1277         if (rc != 0) {
1278                 if (rc != -ENOENT)
1279                         RETURN(rc);
1280
1281                 rc = osd_scrub_refresh_mapping(info, dev, &tfid, id,
1282                                                DTO_INDEX_INSERT);
1283                 RETURN(rc);
1284         }
1285
1286         if (osd_id_eq_strict(id, id2))
1287                 RETURN(0);
1288
1289         if (!(sf->sf_flags & SF_INCONSISTENT)) {
1290                 osd_scrub_file_reset(scrub,
1291                                      LDISKFS_SB(osd_sb(dev))->s_es->s_uuid,
1292                                      SF_INCONSISTENT);
1293                 rc = osd_scrub_file_store(scrub);
1294                 if (rc != 0)
1295                         RETURN(rc);
1296         }
1297
1298         rc = osd_scrub_refresh_mapping(info, dev, &tfid, id, DTO_INDEX_UPDATE);
1299
1300         RETURN(rc);
1301 }
1302
1303 static int osd_ios_varfid_fill(void *buf, const char *name, int namelen,
1304                                loff_t offset, __u64 ino, unsigned d_type)
1305 {
1306         struct osd_ios_filldir_buf *fill_buf = buf;
1307         struct osd_device          *dev      = fill_buf->oifb_dev;
1308         struct dentry              *child;
1309         int                         rc;
1310         ENTRY;
1311
1312         /* skip any '.' started names */
1313         if (name[0] == '.')
1314                 RETURN(0);
1315
1316         child = osd_ios_lookup_one_len(name, fill_buf->oifb_dentry, namelen);
1317         if (IS_ERR(child))
1318                 RETURN(PTR_ERR(child));
1319
1320         rc = osd_ios_scan_one(fill_buf->oifb_info, dev, child->d_inode,
1321                               NULL, 0);
1322         if (rc == 0 && S_ISDIR(child->d_inode->i_mode))
1323                 rc = osd_ios_new_item(dev, child, osd_ios_general_scan,
1324                                       osd_ios_varfid_fill);
1325         dput(child);
1326
1327         RETURN(rc);
1328 }
1329
1330 static int osd_ios_root_fill(void *buf, const char *name, int namelen,
1331                              loff_t offset, __u64 ino, unsigned d_type)
1332 {
1333         struct osd_ios_filldir_buf *fill_buf = buf;
1334         struct osd_device          *dev      = fill_buf->oifb_dev;
1335         const struct osd_lf_map    *map;
1336         struct dentry              *child;
1337         int                         rc       = 0;
1338         ENTRY;
1339
1340         /* skip any '.' started names */
1341         if (name[0] == '.')
1342                 RETURN(0);
1343
1344         for (map = osd_lf_maps; map->olm_name != NULL; map++) {
1345                 if (strlen(map->olm_name) != namelen)
1346                         continue;
1347
1348                 if (strncmp(map->olm_name, name, namelen) == 0)
1349                         break;
1350         }
1351
1352         if (map->olm_name == NULL)
1353                 RETURN(0);
1354
1355         child = osd_ios_lookup_one_len(name, fill_buf->oifb_dentry, namelen);
1356         if (IS_ERR(child))
1357                 RETURN(PTR_ERR(child));
1358
1359         rc = osd_ios_scan_one(fill_buf->oifb_info, dev, child->d_inode,
1360                               &map->olm_fid, map->olm_flags);
1361         if (rc == 0 && map->olm_flags & OLF_SCAN_SUBITEMS)
1362                 rc = osd_ios_new_item(dev, child, map->olm_scandir,
1363                                       map->olm_filldir);
1364         dput(child);
1365
1366         RETURN(rc);
1367 }
1368
1369 static int
1370 osd_ios_general_scan(struct osd_thread_info *info, struct osd_device *dev,
1371                      struct dentry *dentry, filldir_t filldir)
1372 {
1373         struct osd_ios_filldir_buf    buf   = { info, dev, dentry };
1374         struct file                  *filp  = &info->oti_it_ea.oie_file;
1375         struct inode                 *inode = dentry->d_inode;
1376         const struct file_operations *fops  = inode->i_fop;
1377         int                           rc;
1378         ENTRY;
1379
1380         LASSERT(filldir != NULL);
1381
1382         filp->f_pos = 0;
1383         filp->f_dentry = dentry;
1384         filp->f_mode = FMODE_64BITHASH;
1385         filp->f_mapping = inode->i_mapping;
1386         filp->f_op = fops;
1387         filp->private_data = NULL;
1388
1389         rc = fops->readdir(filp, &buf, filldir);
1390         fops->release(inode, filp);
1391
1392         RETURN(rc);
1393 }
1394
1395 static int
1396 osd_ios_ROOT_scan(struct osd_thread_info *info, struct osd_device *dev,
1397                   struct dentry *dentry, filldir_t filldir)
1398 {
1399         struct osd_scrub  *scrub  = &dev->od_scrub;
1400         struct scrub_file *sf     = &scrub->os_file;
1401         struct dentry     *child;
1402         int                rc;
1403         ENTRY;
1404
1405         /* It is existing MDT device. */
1406         dev->od_handle_nolma = 1;
1407         child = osd_ios_lookup_one_len(dot_lustre_name, dentry,
1408                                        strlen(dot_lustre_name));
1409         if (IS_ERR(child)) {
1410                 rc = PTR_ERR(child);
1411                 if (rc == -ENOENT) {
1412                         /* It is 1.8 MDT device. */
1413                         if (!(sf->sf_flags & SF_UPGRADE)) {
1414                                 osd_scrub_file_reset(scrub,
1415                                         LDISKFS_SB(osd_sb(dev))->s_es->s_uuid,
1416                                         SF_UPGRADE);
1417                                 rc = osd_scrub_file_store(scrub);
1418                         } else {
1419                                 rc = 0;
1420                         }
1421                 }
1422         } else {
1423                 rc = osd_ios_scan_one(info, dev, child->d_inode, NULL, 0);
1424                 dput(child);
1425         }
1426
1427         RETURN(rc);
1428 }
1429
1430 static int
1431 osd_ios_OBJECTS_scan(struct osd_thread_info *info, struct osd_device *dev,
1432                      struct dentry *dentry, filldir_t filldir)
1433 {
1434         struct dentry *child;
1435         int            rc;
1436         ENTRY;
1437
1438         child = osd_ios_lookup_one_len(ADMIN_USR, dentry, strlen(ADMIN_USR));
1439         if (!IS_ERR(child)) {
1440                 rc = osd_ios_scan_one(info, dev, child->d_inode, NULL, 0);
1441                 dput(child);
1442         } else {
1443                 rc = PTR_ERR(child);
1444         }
1445
1446         if (rc != 0 && rc != -ENOENT)
1447                 RETURN(rc);
1448
1449         child = osd_ios_lookup_one_len(ADMIN_GRP, dentry, strlen(ADMIN_GRP));
1450         if (!IS_ERR(child)) {
1451                 rc = osd_ios_scan_one(info, dev, child->d_inode, NULL, 0);
1452                 dput(child);
1453         } else {
1454                 rc = PTR_ERR(child);
1455         }
1456
1457         if (rc == -ENOENT)
1458                 rc = 0;
1459
1460         RETURN(rc);
1461 }
1462
1463 static int osd_initial_OI_scrub(struct osd_thread_info *info,
1464                                 struct osd_device *dev)
1465 {
1466         struct osd_ios_item *item    = NULL;
1467         scandir_t            scandir = osd_ios_general_scan;
1468         filldir_t            filldir = osd_ios_root_fill;
1469         struct dentry       *dentry  = osd_sb(dev)->s_root;
1470         int                  rc;
1471         ENTRY;
1472
1473         while (1) {
1474                 rc = scandir(info, dev, dentry, filldir);
1475                 if (item != NULL) {
1476                         dput(item->oii_dentry);
1477                         OBD_FREE_PTR(item);
1478                 }
1479
1480                 if (rc != 0)
1481                         break;
1482
1483                 if (cfs_list_empty(&dev->od_ios_list))
1484                         break;
1485
1486                 item = cfs_list_entry(dev->od_ios_list.next,
1487                                       struct osd_ios_item, oii_list);
1488                 cfs_list_del_init(&item->oii_list);
1489
1490                 LASSERT(item->oii_scandir != NULL);
1491                 scandir = item->oii_scandir;
1492                 filldir = item->oii_filldir;
1493                 dentry = item->oii_dentry;
1494         }
1495
1496         while (!cfs_list_empty(&dev->od_ios_list)) {
1497                 item = cfs_list_entry(dev->od_ios_list.next,
1498                                       struct osd_ios_item, oii_list);
1499                 cfs_list_del_init(&item->oii_list);
1500                 dput(item->oii_dentry);
1501                 OBD_FREE_PTR(item);
1502         }
1503
1504         RETURN(rc);
1505 }
1506
1507 char *osd_lf_fid2name(const struct lu_fid *fid)
1508 {
1509         const struct osd_lf_map *map = osd_lf_maps;
1510
1511         while (map->olm_name != NULL) {
1512                 if (!lu_fid_eq(fid, &map->olm_fid)) {
1513                         map++;
1514                         continue;
1515                 }
1516
1517                 if (map->olm_flags & OLF_SHOW_NAME)
1518                         return map->olm_name;
1519                 else
1520                         return "";
1521         }
1522
1523         return NULL;
1524 }
1525
1526 /* OI scrub start/stop */
1527
1528 static int do_osd_scrub_start(struct osd_device *dev, __u32 flags)
1529 {
1530         struct osd_scrub     *scrub  = &dev->od_scrub;
1531         struct ptlrpc_thread *thread = &scrub->os_thread;
1532         struct l_wait_info    lwi    = { 0 };
1533         int                   rc;
1534         ENTRY;
1535
1536 again:
1537         /* os_lock: sync status between stop and scrub thread */
1538         spin_lock(&scrub->os_lock);
1539         if (thread_is_running(thread)) {
1540                 spin_unlock(&scrub->os_lock);
1541                 RETURN(-EALREADY);
1542         } else if (unlikely(thread_is_stopping(thread))) {
1543                 spin_unlock(&scrub->os_lock);
1544                 l_wait_event(thread->t_ctl_waitq,
1545                              thread_is_stopped(thread),
1546                              &lwi);
1547                 goto again;
1548         }
1549         spin_unlock(&scrub->os_lock);
1550
1551         if (scrub->os_file.sf_status == SS_COMPLETED)
1552                 flags |= SS_RESET;
1553
1554         scrub->os_start_flags = flags;
1555         thread_set_flags(thread, 0);
1556         rc = cfs_create_thread(osd_scrub_main, dev, 0);
1557         if (rc < 0) {
1558                 CERROR("%.16s: cannot start iteration thread, rc = %d\n",
1559                        LDISKFS_SB(osd_sb(dev))->s_es->s_volume_name, rc);
1560                 RETURN(rc);
1561         }
1562
1563         l_wait_event(thread->t_ctl_waitq,
1564                      thread_is_running(thread) || thread_is_stopped(thread),
1565                      &lwi);
1566
1567         RETURN(0);
1568 }
1569
1570 int osd_scrub_start(struct osd_device *dev)
1571 {
1572         int rc;
1573         ENTRY;
1574
1575         /* od_otable_mutex: prevent curcurrent start/stop */
1576         mutex_lock(&dev->od_otable_mutex);
1577         rc = do_osd_scrub_start(dev, SS_AUTO);
1578         mutex_unlock(&dev->od_otable_mutex);
1579
1580         RETURN(rc == -EALREADY ? 0 : rc);
1581 }
1582
1583 static void do_osd_scrub_stop(struct osd_scrub *scrub)
1584 {
1585         struct ptlrpc_thread *thread = &scrub->os_thread;
1586         struct l_wait_info    lwi    = { 0 };
1587
1588         /* os_lock: sync status between stop and scrub thread */
1589         spin_lock(&scrub->os_lock);
1590         if (!thread_is_init(thread) && !thread_is_stopped(thread)) {
1591                 thread_set_flags(thread, SVC_STOPPING);
1592                 spin_unlock(&scrub->os_lock);
1593                 cfs_waitq_broadcast(&thread->t_ctl_waitq);
1594                 l_wait_event(thread->t_ctl_waitq,
1595                              thread_is_stopped(thread),
1596                              &lwi);
1597                 /* Do not skip the last lock/unlock, which can guarantee that
1598                  * the caller cannot return until the OI scrub thread exit. */
1599                 spin_lock(&scrub->os_lock);
1600         }
1601         spin_unlock(&scrub->os_lock);
1602 }
1603
1604 static void osd_scrub_stop(struct osd_device *dev)
1605 {
1606         /* od_otable_mutex: prevent curcurrent start/stop */
1607         mutex_lock(&dev->od_otable_mutex);
1608         dev->od_scrub.os_paused = 1;
1609         do_osd_scrub_stop(&dev->od_scrub);
1610         mutex_unlock(&dev->od_otable_mutex);
1611 }
1612
1613 /* OI scrub setup/cleanup */
1614
1615 static const char osd_scrub_name[] = "OI_scrub";
1616
1617 int osd_scrub_setup(const struct lu_env *env, struct osd_device *dev)
1618 {
1619         struct osd_thread_info     *info   = osd_oti_get(env);
1620         struct osd_scrub           *scrub  = &dev->od_scrub;
1621         struct lvfs_run_ctxt       *ctxt   = &scrub->os_ctxt;
1622         struct scrub_file          *sf     = &scrub->os_file;
1623         struct super_block         *sb     = osd_sb(dev);
1624         struct ldiskfs_super_block *es     = LDISKFS_SB(sb)->s_es;
1625         struct lvfs_run_ctxt        saved;
1626         struct file                *filp;
1627         int                         dirty  = 0;
1628         int                         rc     = 0;
1629         ENTRY;
1630
1631         memset(scrub, 0, sizeof(*scrub));
1632         OBD_SET_CTXT_MAGIC(ctxt);
1633         ctxt->pwdmnt = dev->od_mnt;
1634         ctxt->pwd = dev->od_mnt->mnt_root;
1635         ctxt->fs = get_ds();
1636
1637         cfs_waitq_init(&scrub->os_thread.t_ctl_waitq);
1638         init_rwsem(&scrub->os_rwsem);
1639         spin_lock_init(&scrub->os_lock);
1640         CFS_INIT_LIST_HEAD(&scrub->os_inconsistent_items);
1641
1642         push_ctxt(&saved, ctxt, NULL);
1643         filp = filp_open(osd_scrub_name, O_RDWR | O_CREAT, 0644);
1644         if (IS_ERR(filp))
1645                 RETURN(PTR_ERR(filp));
1646
1647         scrub->os_inode = igrab(filp->f_dentry->d_inode);
1648         filp_close(filp, 0);
1649         pop_ctxt(&saved, ctxt, NULL);
1650         ldiskfs_set_inode_state(scrub->os_inode,
1651                                 LDISKFS_STATE_LUSTRE_NO_OI);
1652
1653         rc = osd_scrub_file_load(scrub);
1654         if (rc == -ENOENT) {
1655                 osd_scrub_file_init(scrub, es->s_uuid);
1656                 dirty = 1;
1657         } else if (rc != 0) {
1658                 RETURN(rc);
1659         } else {
1660                 if (memcmp(sf->sf_uuid, es->s_uuid, 16) != 0) {
1661                         osd_scrub_file_reset(scrub, es->s_uuid,SF_INCONSISTENT);
1662                         dirty = 1;
1663                 } else if (sf->sf_status == SS_SCANNING) {
1664                         sf->sf_status = SS_CRASHED;
1665                         dirty = 1;
1666                 }
1667         }
1668
1669         if (sf->sf_pos_last_checkpoint != 0)
1670                 scrub->os_pos_current = sf->sf_pos_last_checkpoint + 1;
1671         else
1672                 scrub->os_pos_current = LDISKFS_FIRST_INO(sb) + 1;
1673
1674         if (dirty != 0) {
1675                 rc = osd_scrub_file_store(scrub);
1676                 if (rc != 0)
1677                         RETURN(rc);
1678         }
1679
1680         /* Initialize OI files. */
1681         rc = osd_oi_init(info, dev);
1682         if (rc < 0)
1683                 RETURN(rc);
1684
1685         rc = osd_initial_OI_scrub(info, dev);
1686         if (rc == 0 && !dev->od_noscrub &&
1687             ((sf->sf_status == SS_PAUSED) ||
1688              (sf->sf_status == SS_CRASHED &&
1689               sf->sf_flags & (SF_RECREATED | SF_INCONSISTENT | SF_UPGRADE |
1690                               SF_AUTO)) ||
1691              (sf->sf_status == SS_INIT &&
1692               sf->sf_flags & (SF_RECREATED | SF_INCONSISTENT | SF_UPGRADE))))
1693                 rc = osd_scrub_start(dev);
1694
1695         RETURN(rc);
1696 }
1697
1698 void osd_scrub_cleanup(const struct lu_env *env, struct osd_device *dev)
1699 {
1700         struct osd_scrub *scrub = &dev->od_scrub;
1701
1702         LASSERT(dev->od_otable_it == NULL);
1703
1704         if (scrub->os_inode != NULL) {
1705                 osd_scrub_stop(dev);
1706                 iput(scrub->os_inode);
1707                 scrub->os_inode = NULL;
1708         }
1709         if (dev->od_oi_table != NULL)
1710                 osd_oi_fini(osd_oti_get(env), dev);
1711 }
1712
1713 /* object table based iteration APIs */
1714
1715 static struct dt_it *osd_otable_it_init(const struct lu_env *env,
1716                                        struct dt_object *dt, __u32 attr,
1717                                        struct lustre_capa *capa)
1718 {
1719         enum dt_otable_it_flags flags = attr >> DT_OTABLE_IT_FLAGS_SHIFT;
1720         enum dt_otable_it_valid valid = attr & ~DT_OTABLE_IT_FLAGS_MASK;
1721         struct osd_device      *dev   = osd_dev(dt->do_lu.lo_dev);
1722         struct osd_scrub       *scrub = &dev->od_scrub;
1723         struct osd_otable_it   *it;
1724         __u32                   start = 0;
1725         int                     rc;
1726         ENTRY;
1727
1728         /* od_otable_mutex: prevent curcurrent init/fini */
1729         mutex_lock(&dev->od_otable_mutex);
1730         if (dev->od_otable_it != NULL)
1731                 GOTO(out, it = ERR_PTR(-EALREADY));
1732
1733         OBD_ALLOC_PTR(it);
1734         if (it == NULL)
1735                 GOTO(out, it = ERR_PTR(-ENOMEM));
1736
1737         dev->od_otable_it = it;
1738         it->ooi_dev = dev;
1739         it->ooi_pid = cfs_curproc_pid();
1740         it->ooi_cache.ooc_consumer_idx = -1;
1741         if (flags & DOIF_OUTUSED)
1742                 it->ooi_used_outside = 1;
1743
1744         if (flags & DOIF_RESET)
1745                 start |= SS_RESET;
1746
1747         if (valid & DOIV_ERROR_HANDLE) {
1748                 if (flags & DOIF_FAILOUT)
1749                         start |= SS_SET_FAILOUT;
1750                 else
1751                         start |= SS_CLEAR_FAILOUT;
1752         }
1753
1754         rc = do_osd_scrub_start(dev, start);
1755         if (rc < 0 && rc != -EALREADY) {
1756                 dev->od_otable_it = NULL;
1757                 OBD_FREE_PTR(it);
1758                 GOTO(out, it = ERR_PTR(rc));
1759         }
1760
1761         it->ooi_cache.ooc_pos_preload = scrub->os_pos_current;
1762
1763         GOTO(out, it);
1764
1765 out:
1766         mutex_unlock(&dev->od_otable_mutex);
1767         return (struct dt_it *)it;
1768 }
1769
1770 static void osd_otable_it_fini(const struct lu_env *env, struct dt_it *di)
1771 {
1772         struct osd_otable_it *it  = (struct osd_otable_it *)di;
1773         struct osd_device    *dev = it->ooi_dev;
1774
1775         /* od_otable_mutex: prevent curcurrent init/fini */
1776         mutex_lock(&dev->od_otable_mutex);
1777         do_osd_scrub_stop(&dev->od_scrub);
1778         LASSERT(dev->od_otable_it == it);
1779
1780         dev->od_otable_it = NULL;
1781         mutex_unlock(&dev->od_otable_mutex);
1782         OBD_FREE_PTR(it);
1783 }
1784
1785 static int osd_otable_it_get(const struct lu_env *env,
1786                              struct dt_it *di, const struct dt_key *key)
1787 {
1788         return 0;
1789 }
1790
1791 /**
1792  * It is hack here:
1793  *
1794  * Sometimes the otable-based iteration driver (LFSCK) may be blocked in OSD
1795  * layer when someone wants to stop/pause the iteration. Under such case, we
1796  * need some mechanism to notify the event and wakeup the blocker.
1797  */
1798 static void osd_otable_it_put(const struct lu_env *env, struct dt_it *di)
1799 {
1800         struct osd_otable_it *it  = (struct osd_otable_it *)di;
1801         struct osd_device    *dev = it->ooi_dev;
1802
1803         /* od_otable_mutex: prevent curcurrent init/fini */
1804         mutex_lock(&dev->od_otable_mutex);
1805         if (it->ooi_pid == cfs_curproc_pid()) {
1806                 dev->od_scrub.os_paused = 1;
1807         } else {
1808                 struct ptlrpc_thread *thread = &dev->od_scrub.os_thread;
1809
1810                 it->ooi_stopping = 1;
1811                 if (it->ooi_waiting)
1812                         cfs_waitq_broadcast(&thread->t_ctl_waitq);
1813         }
1814         mutex_unlock(&dev->od_otable_mutex);
1815 }
1816
1817 static inline int
1818 osd_otable_it_wakeup(struct osd_scrub *scrub, struct osd_otable_it *it)
1819 {
1820         spin_lock(&scrub->os_lock);
1821         if (it->ooi_cache.ooc_pos_preload < scrub->os_pos_current ||
1822             scrub->os_waiting || it->ooi_stopping ||
1823             !thread_is_running(&scrub->os_thread))
1824                 it->ooi_waiting = 0;
1825         else
1826                 it->ooi_waiting = 1;
1827         spin_unlock(&scrub->os_lock);
1828
1829         return !it->ooi_waiting;
1830 }
1831
1832 static int osd_otable_it_next(const struct lu_env *env, struct dt_it *di)
1833 {
1834         struct osd_otable_it    *it     = (struct osd_otable_it *)di;
1835         struct osd_device       *dev    = it->ooi_dev;
1836         struct osd_scrub        *scrub  = &dev->od_scrub;
1837         struct osd_otable_cache *ooc    = &it->ooi_cache;
1838         struct ptlrpc_thread    *thread = &scrub->os_thread;
1839         struct l_wait_info       lwi    = { 0 };
1840         int                      rc;
1841         ENTRY;
1842
1843         LASSERT(it->ooi_user_ready);
1844
1845 again:
1846         if (!thread_is_running(thread) && !it->ooi_used_outside)
1847                 RETURN(1);
1848
1849         if (ooc->ooc_cached_items > 0) {
1850                 ooc->ooc_cached_items--;
1851                 ooc->ooc_consumer_idx = (ooc->ooc_consumer_idx + 1) &
1852                                         ~OSD_OTABLE_IT_CACHE_MASK;
1853                 RETURN(0);
1854         }
1855
1856         if (it->ooi_all_cached) {
1857                 l_wait_event(thread->t_ctl_waitq,
1858                              !thread_is_running(thread),
1859                              &lwi);
1860                 RETURN(1);
1861         }
1862
1863         if (scrub->os_waiting && osd_scrub_has_window(scrub, ooc)) {
1864                 spin_lock(&scrub->os_lock);
1865                 scrub->os_waiting = 0;
1866                 cfs_waitq_broadcast(&scrub->os_thread.t_ctl_waitq);
1867                 spin_unlock(&scrub->os_lock);
1868         }
1869
1870         if (it->ooi_cache.ooc_pos_preload >= scrub->os_pos_current)
1871                 l_wait_event(thread->t_ctl_waitq,
1872                              osd_otable_it_wakeup(scrub, it),
1873                              &lwi);
1874
1875         if (!thread_is_running(thread) && !it->ooi_used_outside)
1876                 RETURN(1);
1877
1878         if (it->ooi_stopping)
1879                 RETURN(0);
1880
1881         rc = osd_otable_it_preload(env, it);
1882         if (rc >= 0)
1883                 goto again;
1884
1885         RETURN(rc);
1886 }
1887
1888 static struct dt_key *osd_otable_it_key(const struct lu_env *env,
1889                                         const struct dt_it *di)
1890 {
1891         return NULL;
1892 }
1893
1894 static int osd_otable_it_key_size(const struct lu_env *env,
1895                                   const struct dt_it *di)
1896 {
1897         return sizeof(__u64);
1898 }
1899
1900 static int osd_otable_it_rec(const struct lu_env *env, const struct dt_it *di,
1901                              struct dt_rec *rec, __u32 attr)
1902 {
1903         struct osd_otable_it    *it  = (struct osd_otable_it *)di;
1904         struct osd_otable_cache *ooc = &it->ooi_cache;
1905
1906         *(struct lu_fid *)rec = ooc->ooc_cache[ooc->ooc_consumer_idx].oic_fid;
1907
1908         /* Filter out Invald FID already. */
1909         LASSERTF(fid_is_sane((struct lu_fid *)rec),
1910                  "Invalid FID "DFID", p_idx = %d, c_idx = %d\n",
1911                  PFID((struct lu_fid *)rec),
1912                  ooc->ooc_producer_idx, ooc->ooc_consumer_idx);
1913
1914         return 0;
1915 }
1916
1917 static __u64 osd_otable_it_store(const struct lu_env *env,
1918                                  const struct dt_it *di)
1919 {
1920         struct osd_otable_it    *it  = (struct osd_otable_it *)di;
1921         struct osd_otable_cache *ooc = &it->ooi_cache;
1922         __u64                    hash;
1923
1924         if (!it->ooi_user_ready)
1925                 hash = ooc->ooc_pos_preload;
1926         else if (likely(ooc->ooc_consumer_idx != -1))
1927                 hash = ooc->ooc_cache[ooc->ooc_consumer_idx].oic_lid.oii_ino;
1928         else
1929                 hash = 0;
1930         return hash;
1931 }
1932
1933 /**
1934  * Set the OSD layer iteration start position as the specified hash.
1935  */
1936 static int osd_otable_it_load(const struct lu_env *env,
1937                               const struct dt_it *di, __u64 hash)
1938 {
1939         struct osd_otable_it    *it    = (struct osd_otable_it *)di;
1940         struct osd_device       *dev   = it->ooi_dev;
1941         struct osd_otable_cache *ooc   = &it->ooi_cache;
1942         struct osd_scrub        *scrub = &dev->od_scrub;
1943         int                      rc;
1944         ENTRY;
1945
1946         /* Forbid to set iteration position after iteration started. */
1947         if (it->ooi_user_ready)
1948                 RETURN(-EPERM);
1949
1950         if (hash > OSD_OTABLE_MAX_HASH)
1951                 hash = OSD_OTABLE_MAX_HASH;
1952
1953         ooc->ooc_pos_preload = hash;
1954         if (ooc->ooc_pos_preload <= LDISKFS_FIRST_INO(osd_sb(dev)))
1955                 ooc->ooc_pos_preload = LDISKFS_FIRST_INO(osd_sb(dev)) + 1;
1956
1957         it->ooi_user_ready = 1;
1958         if (!scrub->os_full_speed)
1959                 cfs_waitq_broadcast(&scrub->os_thread.t_ctl_waitq);
1960
1961         /* Unplug OSD layer iteration by the first next() call. */
1962         rc = osd_otable_it_next(env, (struct dt_it *)it);
1963
1964         RETURN(rc);
1965 }
1966
1967 static int osd_otable_it_key_rec(const struct lu_env *env,
1968                                  const struct dt_it *di, void *key_rec)
1969 {
1970         return 0;
1971 }
1972
1973 const struct dt_index_operations osd_otable_ops = {
1974         .dio_it = {
1975                 .init     = osd_otable_it_init,
1976                 .fini     = osd_otable_it_fini,
1977                 .get      = osd_otable_it_get,
1978                 .put      = osd_otable_it_put,
1979                 .next     = osd_otable_it_next,
1980                 .key      = osd_otable_it_key,
1981                 .key_size = osd_otable_it_key_size,
1982                 .rec      = osd_otable_it_rec,
1983                 .store    = osd_otable_it_store,
1984                 .load     = osd_otable_it_load,
1985                 .key_rec  = osd_otable_it_key_rec,
1986         }
1987 };
1988
1989 /* high priority inconsistent items list APIs */
1990
1991 int osd_oii_insert(struct osd_device *dev, struct osd_idmap_cache *oic,
1992                    int insert)
1993 {
1994         struct osd_inconsistent_item *oii;
1995         struct osd_scrub             *scrub  = &dev->od_scrub;
1996         struct ptlrpc_thread         *thread = &scrub->os_thread;
1997         int                           wakeup = 0;
1998         ENTRY;
1999
2000         OBD_ALLOC_PTR(oii);
2001         if (unlikely(oii == NULL))
2002                 RETURN(-ENOMEM);
2003
2004         CFS_INIT_LIST_HEAD(&oii->oii_list);
2005         oii->oii_cache = *oic;
2006         oii->oii_insert = insert;
2007
2008         spin_lock(&scrub->os_lock);
2009         if (unlikely(!thread_is_running(thread))) {
2010                 spin_unlock(&scrub->os_lock);
2011                 OBD_FREE_PTR(oii);
2012                 RETURN(-EAGAIN);
2013         }
2014
2015         if (cfs_list_empty(&scrub->os_inconsistent_items))
2016                 wakeup = 1;
2017         cfs_list_add_tail(&oii->oii_list, &scrub->os_inconsistent_items);
2018         spin_unlock(&scrub->os_lock);
2019
2020         if (wakeup != 0)
2021                 cfs_waitq_broadcast(&thread->t_ctl_waitq);
2022
2023         RETURN(0);
2024 }
2025
2026 int osd_oii_lookup(struct osd_device *dev, const struct lu_fid *fid,
2027                    struct osd_inode_id *id)
2028 {
2029         struct osd_scrub             *scrub = &dev->od_scrub;
2030         struct osd_inconsistent_item *oii;
2031         ENTRY;
2032
2033         spin_lock(&scrub->os_lock);
2034         cfs_list_for_each_entry(oii, &scrub->os_inconsistent_items, oii_list) {
2035                 if (lu_fid_eq(fid, &oii->oii_cache.oic_fid)) {
2036                         *id = oii->oii_cache.oic_lid;
2037                         spin_unlock(&scrub->os_lock);
2038                         RETURN(0);
2039                 }
2040         }
2041         spin_unlock(&scrub->os_lock);
2042
2043         RETURN(-ENOENT);
2044 }
2045
2046 /* OI scrub dump */
2047
2048 static const char *scrub_status_names[] = {
2049         "init",
2050         "scanning",
2051         "completed",
2052         "failed",
2053         "stopped",
2054         "paused",
2055         "crashed",
2056         NULL
2057 };
2058
2059 static const char *scrub_flags_names[] = {
2060         "recreated",
2061         "inconsistent",
2062         "auto",
2063         "upgrade",
2064         NULL
2065 };
2066
2067 static const char *scrub_param_names[] = {
2068         "failout",
2069         NULL
2070 };
2071
2072 static int scrub_bits_dump(char **buf, int *len, int bits, const char *names[],
2073                            const char *prefix)
2074 {
2075         int save = *len;
2076         int flag;
2077         int rc;
2078         int i;
2079
2080         rc = snprintf(*buf, *len, "%s:%c", prefix, bits != 0 ? ' ' : '\n');
2081         if (rc <= 0)
2082                 return -ENOSPC;
2083
2084         *buf += rc;
2085         *len -= rc;
2086         for (i = 0, flag = 1; bits != 0; i++, flag = 1 << i) {
2087                 if (flag & bits) {
2088                         bits &= ~flag;
2089                         rc = snprintf(*buf, *len, "%s%c", names[i],
2090                                       bits != 0 ? ',' : '\n');
2091                         if (rc <= 0)
2092                                 return -ENOSPC;
2093
2094                         *buf += rc;
2095                         *len -= rc;
2096                 }
2097         }
2098         return save - *len;
2099 }
2100
2101 static int scrub_time_dump(char **buf, int *len, __u64 time, const char *prefix)
2102 {
2103         int rc;
2104
2105         if (time != 0)
2106                 rc = snprintf(*buf, *len, "%s: "LPU64" seconds\n", prefix,
2107                               cfs_time_current_sec() - time);
2108         else
2109                 rc = snprintf(*buf, *len, "%s: N/A\n", prefix);
2110         if (rc <= 0)
2111                 return -ENOSPC;
2112
2113         *buf += rc;
2114         *len -= rc;
2115         return rc;
2116 }
2117
2118 static int scrub_pos_dump(char **buf, int *len, __u64 pos, const char *prefix)
2119 {
2120         int rc;
2121
2122         if (pos != 0)
2123                 rc = snprintf(*buf, *len, "%s: "LPU64"\n", prefix, pos);
2124         else
2125                 rc = snprintf(*buf, *len, "%s: N/A\n", prefix);
2126         if (rc <= 0)
2127                 return -ENOSPC;
2128
2129         *buf += rc;
2130         *len -= rc;
2131         return rc;
2132 }
2133
2134 int osd_scrub_dump(struct osd_device *dev, char *buf, int len)
2135 {
2136         struct osd_scrub  *scrub   = &dev->od_scrub;
2137         struct scrub_file *sf      = &scrub->os_file;
2138         __u64              checked;
2139         __u64              speed;
2140         int                save    = len;
2141         int                ret     = -ENOSPC;
2142         int                rc;
2143
2144         down_read(&scrub->os_rwsem);
2145         rc = snprintf(buf, len,
2146                       "name: OI_scrub\n"
2147                       "magic: 0x%x\n"
2148                       "oi_files: %d\n"
2149                       "status: %s\n",
2150                       sf->sf_magic, (int)sf->sf_oi_count,
2151                       scrub_status_names[sf->sf_status]);
2152         if (rc <= 0)
2153                 goto out;
2154
2155         buf += rc;
2156         len -= rc;
2157         rc = scrub_bits_dump(&buf, &len, sf->sf_flags, scrub_flags_names,
2158                              "flags");
2159         if (rc < 0)
2160                 goto out;
2161
2162         rc = scrub_bits_dump(&buf, &len, sf->sf_param, scrub_param_names,
2163                              "param");
2164         if (rc < 0)
2165                 goto out;
2166
2167         rc = scrub_time_dump(&buf, &len, sf->sf_time_last_complete,
2168                              "time_since_last_completed");
2169         if (rc < 0)
2170                 goto out;
2171
2172         rc = scrub_time_dump(&buf, &len, sf->sf_time_latest_start,
2173                              "time_since_latest_start");
2174         if (rc < 0)
2175                 goto out;
2176
2177         rc = scrub_time_dump(&buf, &len, sf->sf_time_last_checkpoint,
2178                              "time_since_last_checkpoint");
2179         if (rc < 0)
2180                 goto out;
2181
2182         rc = scrub_pos_dump(&buf, &len, sf->sf_pos_latest_start,
2183                             "latest_start_position");
2184         if (rc < 0)
2185                 goto out;
2186
2187         rc = scrub_pos_dump(&buf, &len, sf->sf_pos_last_checkpoint,
2188                             "last_checkpoint_position");
2189         if (rc < 0)
2190                 goto out;
2191
2192         rc = scrub_pos_dump(&buf, &len, sf->sf_pos_first_inconsistent,
2193                             "first_failure_position");
2194         if (rc < 0)
2195                 goto out;
2196
2197         checked = sf->sf_items_checked + scrub->os_new_checked;
2198         rc = snprintf(buf, len,
2199                       "checked: "LPU64"\n"
2200                       "updated: "LPU64"\n"
2201                       "failed: "LPU64"\n"
2202                       "prior_updated: "LPU64"\n"
2203                       "noscrub: "LPU64"\n"
2204                       "igif: "LPU64"\n"
2205                       "success_count: %u\n",
2206                       checked, sf->sf_items_updated, sf->sf_items_failed,
2207                       sf->sf_items_updated_prior, sf->sf_items_noscrub,
2208                       sf->sf_items_igif, sf->sf_success_count);
2209         if (rc <= 0)
2210                 goto out;
2211
2212         buf += rc;
2213         len -= rc;
2214         speed = checked;
2215         if (thread_is_running(&scrub->os_thread)) {
2216                 cfs_duration_t duration = cfs_time_current() -
2217                                           scrub->os_time_last_checkpoint;
2218                 __u64 new_checked = scrub->os_new_checked * CFS_HZ;
2219                 __u32 rtime = sf->sf_run_time +
2220                               cfs_duration_sec(duration + HALF_SEC);
2221
2222                 if (duration != 0)
2223                         do_div(new_checked, duration);
2224                 if (rtime != 0)
2225                         do_div(speed, rtime);
2226                 rc = snprintf(buf, len,
2227                               "run_time: %u seconds\n"
2228                               "average_speed: "LPU64" objects/sec\n"
2229                               "real-time_speed: "LPU64" objects/sec\n"
2230                               "current_position: %u\n",
2231                               rtime, speed, new_checked, scrub->os_pos_current);
2232         } else {
2233                 if (sf->sf_run_time != 0)
2234                         do_div(speed, sf->sf_run_time);
2235                 rc = snprintf(buf, len,
2236                               "run_time: %u seconds\n"
2237                               "average_speed: "LPU64" objects/sec\n"
2238                               "real-time_speed: N/A\n"
2239                               "current_position: N/A\n",
2240                               sf->sf_run_time, speed);
2241         }
2242         if (rc <= 0)
2243                 goto out;
2244
2245         buf += rc;
2246         len -= rc;
2247         ret = save - len;
2248
2249 out:
2250         up_read(&scrub->os_rwsem);
2251         return ret;
2252 }