Whamcloud - gitweb
LU-14430 mdd: rename mti_big_buf to mdi_big_buf
[fs/lustre-release.git] / lustre / mdd / mdd_device.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, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2011, 2017, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  *
31  * lustre/mdd/mdd_device.c
32  *
33  * Lustre Metadata Server (mdd) routines
34  *
35  * Author: Wang Di <wangdi@clusterfs.com>
36  */
37
38 #define DEBUG_SUBSYSTEM S_MDS
39
40 #include <linux/module.h>
41 #include <linux/kthread.h>
42 #include <obd_class.h>
43 #include <uapi/linux/lustre/lustre_ioctl.h>
44 #include <lustre_mds.h>
45 #include <obd_support.h>
46 #include <lu_object.h>
47 #include <uapi/linux/lustre/lustre_param.h>
48 #include <lustre_fid.h>
49 #include <lustre_nodemap.h>
50 #include <lustre_barrier.h>
51
52 #include "mdd_internal.h"
53
54 static const struct md_device_operations mdd_ops;
55 static struct lu_device_type mdd_device_type;
56
57 static const char mdd_root_dir_name[] = "ROOT";
58 static const char mdd_obf_dir_name[] = "fid";
59 static const char mdd_lpf_dir_name[] = "lost+found";
60
61 /* Slab for MDD object allocation */
62 struct kmem_cache *mdd_object_kmem;
63
64 static struct lu_kmem_descr mdd_caches[] = {
65         {
66                 .ckd_cache = &mdd_object_kmem,
67                 .ckd_name  = "mdd_obj",
68                 .ckd_size  = sizeof(struct mdd_object)
69         },
70         {
71                 .ckd_cache = NULL
72         }
73 };
74
75 static int mdd_connect_to_next(const struct lu_env *env, struct mdd_device *m,
76                                const char *nextdev)
77 {
78         struct obd_connect_data *data = NULL;
79         struct lu_device        *lud = mdd2lu_dev(m);
80         struct obd_device       *obd;
81         int                      rc;
82         ENTRY;
83
84         LASSERT(m->mdd_child_exp == NULL);
85
86         OBD_ALLOC(data, sizeof(*data));
87         if (data == NULL)
88                 GOTO(out, rc = -ENOMEM);
89
90         obd = class_name2obd(nextdev);
91         if (obd == NULL) {
92                 CERROR("can't locate next device: %s\n", nextdev);
93                 GOTO(out, rc = -ENOTCONN);
94         }
95
96         data->ocd_connect_flags = OBD_CONNECT_VERSION;
97         data->ocd_version = LUSTRE_VERSION_CODE;
98
99         rc = obd_connect(NULL, &m->mdd_child_exp, obd, &obd->obd_uuid, data, NULL);
100         if (rc) {
101                 CERROR("cannot connect to next dev %s (%d)\n", nextdev, rc);
102                 GOTO(out, rc);
103         }
104
105         lud->ld_site = m->mdd_child_exp->exp_obd->obd_lu_dev->ld_site;
106         LASSERT(lud->ld_site);
107         m->mdd_child = lu2dt_dev(m->mdd_child_exp->exp_obd->obd_lu_dev);
108         m->mdd_bottom = lu2dt_dev(lud->ld_site->ls_bottom_dev);
109         lu_dev_add_linkage(lud->ld_site, lud);
110
111 out:
112         if (data)
113                 OBD_FREE(data, sizeof(*data));
114         RETURN(rc);
115 }
116
117 static int mdd_init0(const struct lu_env *env, struct mdd_device *mdd,
118                 struct lu_device_type *t, struct lustre_cfg *lcfg)
119 {
120         int rc = -EINVAL;
121         const char *dev;
122
123         ENTRY;
124
125         /* LU-8040 Set defaults here, before values configs */
126         mdd->mdd_cl.mc_flags = 0; /* off by default */
127         /* per-server mask is set via parameters if needed */
128         mdd->mdd_cl.mc_proc_mask = CHANGELOG_MINMASK;
129         /* current mask is calculated from mask above and users masks */
130         mdd->mdd_cl.mc_current_mask = CHANGELOG_MINMASK;
131         mdd->mdd_cl.mc_deniednext = 60; /* 60 secs by default */
132
133         dev = lustre_cfg_string(lcfg, 0);
134         if (dev == NULL)
135                 RETURN(rc);
136
137         mdd->mdd_md_dev.md_lu_dev.ld_obd = class_name2obd(dev);
138         if (mdd->mdd_md_dev.md_lu_dev.ld_obd == NULL)
139                 RETURN(rc);
140         mdd->mdd_md_dev.md_lu_dev.ld_ops = &mdd_lu_ops;
141         mdd->mdd_md_dev.md_ops = &mdd_ops;
142
143         rc = mdd_connect_to_next(env, mdd, lustre_cfg_string(lcfg, 3));
144         if (rc != 0)
145                 RETURN(rc);
146
147         mdd->mdd_atime_diff = MAX_ATIME_DIFF;
148         /* sync permission changes */
149         mdd->mdd_sync_permission = 1;
150         /* enable changelog garbage collection */
151         mdd->mdd_changelog_gc = 1;
152         /* with a significant amount of idle time */
153         mdd->mdd_changelog_max_idle_time = CHLOG_MAX_IDLE_TIME;
154         /* or a significant amount of late indexes */
155         mdd->mdd_changelog_max_idle_indexes = CHLOG_MAX_IDLE_INDEXES;
156         /* with a reasonable interval between each check */
157         mdd->mdd_changelog_min_gc_interval = CHLOG_MIN_GC_INTERVAL;
158         /* with a very few number of free catalog entries */
159         mdd->mdd_changelog_min_free_cat_entries = CHLOG_MIN_FREE_CAT_ENTRIES;
160         /* special default striping for files created with O_APPEND */
161         mdd->mdd_append_stripe_count = 1;
162         mdd->mdd_append_pool[0] = '\0';
163
164         dt_conf_get(env, mdd->mdd_child, &mdd->mdd_dt_conf);
165
166         /* we are using service name but not mdd obd name
167          * for compatibility reasons.
168          * It is passed from MDT in lustre_cfg[2] buffer */
169         rc = mdd_procfs_init(mdd, lustre_cfg_string(lcfg, 2));
170         if (rc < 0)
171                 obd_disconnect(mdd->mdd_child_exp);
172
173         RETURN(rc);
174 }
175
176 static struct lu_device *mdd_device_fini(const struct lu_env *env,
177                                          struct lu_device *d)
178 {
179         struct mdd_device *mdd = lu2mdd_dev(d);
180
181         if (d->ld_site)
182                 lu_dev_del_linkage(d->ld_site, d);
183
184         mdd_procfs_fini(mdd);
185         return NULL;
186 }
187
188 static int changelog_init_cb(const struct lu_env *env, struct llog_handle *llh,
189                              struct llog_rec_hdr *hdr, void *data)
190 {
191         struct mdd_device *mdd = (struct mdd_device *)data;
192         struct llog_changelog_rec *rec = (struct llog_changelog_rec *)hdr;
193
194         LASSERT(llh->lgh_hdr->llh_flags & LLOG_F_IS_PLAIN);
195         LASSERT(rec->cr_hdr.lrh_type == CHANGELOG_REC);
196
197         CDEBUG(D_INFO,
198                "seeing record at index %d/%d/%llu t=%x %.*s in log"
199                DFID"\n", hdr->lrh_index, rec->cr_hdr.lrh_index,
200                rec->cr.cr_index, rec->cr.cr_type, rec->cr.cr_namelen,
201                changelog_rec_name(&rec->cr), PFID(&llh->lgh_id.lgl_oi.oi_fid));
202         spin_lock(&mdd->mdd_cl.mc_lock);
203         mdd->mdd_cl.mc_index = rec->cr.cr_index;
204         spin_unlock(&mdd->mdd_cl.mc_lock);
205         return LLOG_PROC_BREAK;
206 }
207
208 char *mdd_chlg_username(struct llog_changelog_user_rec2 *rec, char *buf,
209                         size_t len)
210 {
211         if (rec->cur_hdr.lrh_type == CHANGELOG_USER_REC2 &&
212             rec->cur_name[0])
213                 snprintf(buf, len, "%s%u-%s",  CHANGELOG_USER_PREFIX,
214                          rec->cur_id, rec->cur_name);
215         else
216                 snprintf(buf, len, "%s%u", CHANGELOG_USER_PREFIX, rec->cur_id);
217         return buf;
218 }
219
220 __u32 mdd_chlg_usermask(struct llog_changelog_user_rec2 *rec)
221 {
222         return rec->cur_hdr.lrh_type == CHANGELOG_USER_REC2 ?
223                rec->cur_mask : 0;
224 }
225
226 static int changelog_user_init_cb(const struct lu_env *env,
227                                   struct llog_handle *llh,
228                                   struct llog_rec_hdr *hdr, void *data)
229 {
230         struct mdd_device *mdd = data;
231         struct llog_changelog_user_rec2 *rec;
232         char user_name[CHANGELOG_USER_NAMELEN_FULL];
233
234         LASSERT(llh->lgh_hdr->llh_flags & LLOG_F_IS_PLAIN);
235
236         rec = container_of(hdr, typeof(*rec), cur_hdr);
237         if (rec->cur_hdr.lrh_type != CHANGELOG_USER_REC &&
238             rec->cur_hdr.lrh_type != CHANGELOG_USER_REC2) {
239                 CWARN("%s: unknown user type %x at index %u in log "DFID"\n",
240                       mdd2obd_dev(mdd)->obd_name, hdr->lrh_index,
241                       rec->cur_hdr.lrh_type, PFID(&llh->lgh_id.lgl_oi.oi_fid));
242
243                 return 0;
244         }
245
246         CDEBUG(D_INFO, "%s: user %s at index %u/%u endrec=%llu in log "DFID"\n",
247                mdd2obd_dev(mdd)->obd_name, mdd_chlg_username(rec, user_name,
248                                                              sizeof(user_name)),
249                hdr->lrh_index, rec->cur_hdr.lrh_index, rec->cur_endrec,
250                PFID(&llh->lgh_id.lgl_oi.oi_fid));
251
252         spin_lock(&mdd->mdd_cl.mc_user_lock);
253         mdd->mdd_cl.mc_lastuser = rec->cur_id;
254         mdd->mdd_cl.mc_users++;
255         if (rec->cur_hdr.lrh_type == CHANGELOG_USER_REC2 && rec->cur_mask)
256                 mdd->mdd_cl.mc_current_mask |= rec->cur_mask;
257         else if (mdd->mdd_cl.mc_proc_mask == CHANGELOG_MINMASK)
258                 mdd->mdd_cl.mc_current_mask |= CHANGELOG_DEFMASK;
259         spin_unlock(&mdd->mdd_cl.mc_user_lock);
260         spin_lock(&mdd->mdd_cl.mc_lock);
261         if (rec->cur_endrec > mdd->mdd_cl.mc_index)
262                 mdd->mdd_cl.mc_index = rec->cur_endrec;
263         spin_unlock(&mdd->mdd_cl.mc_lock);
264
265         return LLOG_PROC_BREAK;
266 }
267
268 struct changelog_orphan_data {
269         __u64                   clod_index;
270         struct mdd_device       *clod_mdd;
271 };
272
273 /* find oldest changelog record index */
274 static int changelog_detect_orphan_cb(const struct lu_env *env,
275                                       struct llog_handle *llh,
276                                       struct llog_rec_hdr *hdr, void *data)
277 {
278         struct changelog_orphan_data *clod = data;
279         struct mdd_device *mdd = clod->clod_mdd;
280         struct llog_changelog_rec *rec;
281
282         LASSERT(llh->lgh_hdr->llh_flags & LLOG_F_IS_PLAIN);
283
284         rec = container_of(hdr, typeof(*rec), cr_hdr);
285         if (rec->cr_hdr.lrh_type != CHANGELOG_REC) {
286                 CWARN("%s: invalid record at index %d in log "DFID"\n",
287                       mdd2obd_dev(mdd)->obd_name, hdr->lrh_index,
288                       PFID(&llh->lgh_id.lgl_oi.oi_fid));
289                 /* try to find some next valid record and thus allow to recover
290                  * from a corrupted LLOG, instead to assert and force a crash
291                  */
292                 return 0;
293         }
294
295         CDEBUG(D_INFO,
296                "%s: record at index %d/%d/%llu t=%x %.*s in log "DFID"\n",
297                mdd2obd_dev(mdd)->obd_name, hdr->lrh_index,
298                rec->cr_hdr.lrh_index, rec->cr.cr_index, rec->cr.cr_type,
299                rec->cr.cr_namelen, changelog_rec_name(&rec->cr),
300                PFID(&llh->lgh_id.lgl_oi.oi_fid));
301
302         clod->clod_index = rec->cr.cr_index;
303
304         return LLOG_PROC_BREAK;
305 }
306
307 /* find oldest changelog user index */
308 static int changelog_user_detect_orphan_cb(const struct lu_env *env,
309                                            struct llog_handle *llh,
310                                            struct llog_rec_hdr *hdr, void *data)
311 {
312         struct changelog_orphan_data *clod = data;
313         struct mdd_device *mdd = clod->clod_mdd;
314         struct llog_changelog_user_rec2 *rec;
315         char user_name[CHANGELOG_USER_NAMELEN_FULL];
316
317         LASSERT(llh->lgh_hdr->llh_flags & LLOG_F_IS_PLAIN);
318
319         rec = container_of(hdr, typeof(*rec), cur_hdr);
320         if (rec->cur_hdr.lrh_type != CHANGELOG_USER_REC &&
321             rec->cur_hdr.lrh_type != CHANGELOG_USER_REC2) {
322                 CWARN("%s: unknown user type %u at index %u in log "DFID"\n",
323                       mdd2obd_dev(mdd)->obd_name, hdr->lrh_index,
324                       rec->cur_hdr.lrh_type, PFID(&llh->lgh_id.lgl_oi.oi_fid));
325                 /* try to find some next valid record and thus allow to recover
326                  * from a corrupted LLOG, instead to assert and force a crash
327                  */
328                 return 0;
329         }
330
331         CDEBUG(D_INFO, "%s: user %s at index %u/%u endrec=%llu in log "DFID"\n",
332                mdd2obd_dev(mdd)->obd_name, mdd_chlg_username(rec, user_name,
333                                                              sizeof(user_name)),
334                hdr->lrh_index, rec->cur_hdr.lrh_index,
335                rec->cur_endrec, PFID(&llh->lgh_id.lgl_oi.oi_fid));
336
337         clod->clod_index = min_t(__u64, clod->clod_index, rec->cur_endrec);
338
339         return 0;
340 }
341
342 struct changelog_cancel_cookie {
343         long long endrec;
344         struct mdd_device *mdd;
345 };
346
347 static int llog_changelog_cancel_cb(const struct lu_env *env,
348                                     struct llog_handle *llh,
349                                     struct llog_rec_hdr *hdr, void *data)
350 {
351         struct llog_changelog_rec *rec = (struct llog_changelog_rec *)hdr;
352         struct changelog_cancel_cookie *cl_cookie =
353                 (struct changelog_cancel_cookie *)data;
354
355         ENTRY;
356
357         /* This is always a (sub)log, not the catalog */
358         LASSERT(llh->lgh_hdr->llh_flags & LLOG_F_IS_PLAIN);
359
360         /* if current context is GC-thread allow it to stop upon umount
361          * remaining records cleanup will occur upon next mount
362          *
363          * also during testing, wait for GC-thread to be released
364          *
365          * XXX this requires the GC-thread to not fork a sub-thread via
366          * llog[_cat]_process_or_fork() and we may think to also implement
367          * this shutdown mechanism for manually started user unregister which
368          * can also take a long time if huge backlog of records
369          */
370         if (unlikely(cl_cookie->mdd->mdd_cl.mc_gc_task == current)) {
371                 /* wait to be released */
372                 while (CFS_FAIL_CHECK_QUIET(OBD_FAIL_FORCE_GC_THREAD))
373                         schedule();
374
375                 if (kthread_should_stop())
376                         RETURN(LLOG_PROC_BREAK);
377         }
378
379         if (rec->cr.cr_index > cl_cookie->endrec)
380                 /* records are in order, so we're done */
381                 RETURN(LLOG_PROC_BREAK);
382
383         if (unlikely(OBD_FAIL_PRECHECK(OBD_FAIL_MDS_CHANGELOG_RACE))) {
384                 if (cfs_fail_val == 0)
385                         cfs_fail_val = hdr->lrh_index;
386                 if (cfs_fail_val == hdr->lrh_index)
387                         OBD_RACE(OBD_FAIL_MDS_CHANGELOG_RACE);
388         }
389
390         /* Records folow one by one, cr_index++. We could calculate the
391          * last cr_index at this plain llog. And if it less then cookie endrec
392          * cancel the whole file.
393          */
394         if ((LLOG_HDR_BITMAP_SIZE(llh->lgh_hdr) - hdr->lrh_index +
395              rec->cr.cr_index) < cl_cookie->endrec) {
396                 int rc;
397
398                 if (unlikely(OBD_FAIL_PRECHECK(OBD_FAIL_MDS_CHANGELOG_DEL))) {
399                         if (cfs_fail_val == 0) {
400                                 cfs_fail_val = (unsigned long)llh & 0xFFFFFFFF;
401                                 OBD_RACE(OBD_FAIL_MDS_CHANGELOG_DEL);
402                         }
403                 }
404                 rc = llog_destroy(env, llh);
405                 if (!rc) {
406                         CDEBUG(D_HA, "Changelog destroyed plain "DFID"\n",
407                                PFID(&llh->lgh_id.lgl_oi.oi_fid));
408                         RETURN(LLOG_DEL_PLAIN);
409                 }
410         }
411
412         /* cancel them one at a time.  I suppose we could store up the cookies
413          * and cancel them all at once; probably more efficient, but this is
414          * done as a user call, so who cares... */
415
416         RETURN(LLOG_DEL_RECORD);
417 }
418
419 static int llog_changelog_cancel(const struct lu_env *env,
420                                  struct llog_ctxt *ctxt,
421                                  struct changelog_cancel_cookie *cookie)
422 {
423         struct llog_handle      *cathandle = ctxt->loc_handle;
424         int                      rc;
425
426         ENTRY;
427
428         /* This should only be called with the catalog handle */
429         LASSERT(cathandle->lgh_hdr->llh_flags & LLOG_F_IS_CAT);
430
431         rc = llog_cat_process(env, cathandle, llog_changelog_cancel_cb,
432                               cookie, 0, 0);
433         if (rc >= 0)
434                 /* 0 or 1 means we're done */
435                 rc = 0;
436         else
437                 CERROR("%s: cancel idx %u of catalog "DFID": rc = %d\n",
438                        ctxt->loc_obd->obd_name, cathandle->lgh_last_idx,
439                        PFID(&cathandle->lgh_id.lgl_oi.oi_fid), rc);
440
441         RETURN(rc);
442 }
443
444 static struct llog_operations changelog_orig_logops;
445
446 static int
447 mdd_changelog_write_header(const struct lu_env *env, struct mdd_device *mdd,
448                            int markerflags);
449
450 static int
451 mdd_changelog_on(const struct lu_env *env, struct mdd_device *mdd)
452 {
453         int rc = 0;
454
455         if ((mdd->mdd_cl.mc_flags & CLM_ON) != 0)
456                 return rc;
457
458         LCONSOLE_INFO("%s: changelog on\n", mdd2obd_dev(mdd)->obd_name);
459         if (mdd->mdd_cl.mc_flags & CLM_ERR) {
460                 CERROR("Changelogs cannot be enabled due to error "
461                        "condition (see %s log).\n",
462                        mdd2obd_dev(mdd)->obd_name);
463                 rc = -ESRCH;
464         } else {
465                 spin_lock(&mdd->mdd_cl.mc_lock);
466                 mdd->mdd_cl.mc_flags |= CLM_ON;
467                 spin_unlock(&mdd->mdd_cl.mc_lock);
468                 rc = mdd_changelog_write_header(env, mdd, CLM_START);
469         }
470         return rc;
471 }
472
473 static int
474 mdd_changelog_off(const struct lu_env *env, struct mdd_device *mdd)
475 {
476         int rc = 0;
477
478         if ((mdd->mdd_cl.mc_flags & CLM_ON) != CLM_ON)
479                 return rc;
480
481         LCONSOLE_INFO("%s: changelog off\n", mdd2obd_dev(mdd)->obd_name);
482         rc = mdd_changelog_write_header(env, mdd, CLM_FINI);
483         spin_lock(&mdd->mdd_cl.mc_lock);
484         mdd->mdd_cl.mc_flags &= ~CLM_ON;
485         spin_unlock(&mdd->mdd_cl.mc_lock);
486
487         return rc;
488 }
489
490 static int mdd_changelog_llog_init(const struct lu_env *env,
491                                    struct mdd_device *mdd)
492 {
493         struct obd_device *obd = mdd2obd_dev(mdd);
494         struct llog_ctxt *ctxt = NULL, *uctxt = NULL;
495         struct changelog_orphan_data clod = {
496                 .clod_mdd = mdd,
497                 .clod_index = -1,
498         }, user_orphan = {
499                 .clod_mdd = mdd,
500                 .clod_index = -1,
501         };
502         int rc;
503
504         ENTRY;
505
506         /* LU-2844 mdd setup failure should not cause umount oops */
507         if (OBD_FAIL_CHECK(OBD_FAIL_MDS_CHANGELOG_INIT))
508                 RETURN(-EIO);
509
510         OBD_SET_CTXT_MAGIC(&obd->obd_lvfs_ctxt);
511         obd->obd_lvfs_ctxt.dt = mdd->mdd_bottom;
512         rc = llog_setup(env, obd, &obd->obd_olg, LLOG_CHANGELOG_ORIG_CTXT,
513                         obd, &changelog_orig_logops);
514         if (rc) {
515                 CERROR("%s: changelog llog setup failed: rc = %d\n",
516                        obd->obd_name, rc);
517                 RETURN(rc);
518         }
519
520         ctxt = llog_get_context(obd, LLOG_CHANGELOG_ORIG_CTXT);
521         LASSERT(ctxt);
522
523         rc = llog_open_create(env, ctxt, &ctxt->loc_handle, NULL,
524                               CHANGELOG_CATALOG);
525         if (rc)
526                 GOTO(out_cleanup, rc);
527
528         rc = llog_init_handle(env, ctxt->loc_handle, LLOG_F_IS_CAT, NULL);
529         if (rc)
530                 GOTO(out_close, rc);
531
532         rc = llog_cat_reverse_process(env, ctxt->loc_handle,
533                                       changelog_init_cb, mdd);
534
535         if (rc < 0) {
536                 CERROR("%s: changelog init failed: rc = %d\n", obd->obd_name,
537                        rc);
538                 GOTO(out_close, rc);
539         }
540
541         CDEBUG(D_IOCTL, "changelog starting index=%llu\n",
542                mdd->mdd_cl.mc_index);
543
544         /* setup user changelog */
545         rc = llog_setup(env, obd, &obd->obd_olg, LLOG_CHANGELOG_USER_ORIG_CTXT,
546                         obd, &changelog_orig_logops);
547         if (rc) {
548                 CERROR("%s: changelog users llog setup failed: rc = %d\n",
549                        obd->obd_name, rc);
550                 GOTO(out_close, rc);
551         }
552
553         uctxt = llog_get_context(obd, LLOG_CHANGELOG_USER_ORIG_CTXT);
554         LASSERT(ctxt);
555
556         rc = llog_open_create(env, uctxt, &uctxt->loc_handle, NULL,
557                               CHANGELOG_USERS);
558         if (rc)
559                 GOTO(out_ucleanup, rc);
560
561         rc = llog_init_handle(env, uctxt->loc_handle, LLOG_F_IS_CAT, NULL);
562         if (rc)
563                 GOTO(out_uclose, rc);
564
565         rc = llog_cat_reverse_process(env, uctxt->loc_handle,
566                                       changelog_user_init_cb, mdd);
567         if (rc < 0) {
568                 CERROR("%s: changelog user init failed: rc = %d\n",
569                        obd->obd_name, rc);
570                 GOTO(out_uclose, rc);
571         }
572
573         /* Finally apply per-server mask */
574         mdd->mdd_cl.mc_current_mask |= mdd->mdd_cl.mc_proc_mask;
575
576         /* If we have registered users, assume we want changelogs on */
577         if (mdd->mdd_cl.mc_lastuser > 0) {
578                 rc = mdd_changelog_on(env, mdd);
579                 if (rc < 0)
580                         GOTO(out_uclose, rc);
581         }
582
583         /* find and clear any orphan changelog records (1st record index <
584          * smallest of all users current index), likely to come from an
585          * interrupted manual or GC-thread purge, as its user record had
586          * been deleted first
587          * XXX we may wait for a still registered user clear operation to
588          * do the job, but it may then take a long time to reach the user's
589          * real targetted records if a huge purge backlog is still to be
590          * processed as a long time idle user record could have been deleted
591          * XXX we may need to run end of purge as a separate thread
592          */
593         rc = llog_cat_process(env, ctxt->loc_handle, changelog_detect_orphan_cb,
594                               &clod, 0, 0);
595         if (rc < 0) {
596                 CERROR("%s: changelog detect orphan failed: rc = %d\n",
597                        obd->obd_name, rc);
598                 GOTO(out_uclose, rc);
599         }
600         rc = llog_cat_process(env, uctxt->loc_handle,
601                               changelog_user_detect_orphan_cb,
602                               &user_orphan, 0, 0);
603         if (rc < 0) {
604                 CERROR("%s: changelog user detect orphan failed: rc = %d\n",
605                        obd->obd_name, rc);
606                 GOTO(out_uclose, rc);
607         }
608         if (unlikely(clod.clod_index < user_orphan.clod_index)) {
609                 struct changelog_cancel_cookie cl_cookie = {
610                         .endrec = user_orphan.clod_index,
611                         .mdd = mdd,
612                 };
613
614                 CWARN("%s : orphan changelog records found, starting from "
615                       "index %llu to index %llu, being cleared now\n",
616                       obd->obd_name, clod.clod_index, user_orphan.clod_index);
617
618                 /* XXX we may need to run end of purge as a separate thread */
619                 rc = llog_changelog_cancel(env, ctxt, &cl_cookie);
620                 if (rc < 0) {
621                         CERROR("%s: purge of changelog orphan records failed: "
622                                "rc = %d\n", obd->obd_name, rc);
623                         GOTO(out_uclose, rc);
624                 }
625         }
626
627         llog_ctxt_put(ctxt);
628         llog_ctxt_put(uctxt);
629         RETURN(0);
630 out_uclose:
631         llog_cat_close(env, uctxt->loc_handle);
632 out_ucleanup:
633         llog_cleanup(env, uctxt);
634 out_close:
635         llog_cat_close(env, ctxt->loc_handle);
636 out_cleanup:
637         llog_cleanup(env, ctxt);
638         return rc;
639 }
640
641 static int mdd_changelog_init(const struct lu_env *env, struct mdd_device *mdd)
642 {
643         struct obd_device       *obd = mdd2obd_dev(mdd);
644         int                      rc;
645
646         mdd->mdd_cl.mc_index = 0;
647         spin_lock_init(&mdd->mdd_cl.mc_lock);
648         mdd->mdd_cl.mc_starttime = ktime_get();
649         spin_lock_init(&mdd->mdd_cl.mc_user_lock);
650         mdd->mdd_cl.mc_lastuser = 0;
651
652         /* ensure a GC check will, and a thread run may, occur upon start */
653         mdd->mdd_cl.mc_gc_time = 0;
654         mdd->mdd_cl.mc_gc_task = MDD_CHLG_GC_NONE;
655
656         rc = mdd_changelog_llog_init(env, mdd);
657         if (rc) {
658                 CERROR("%s: changelog setup during init failed: rc = %d\n",
659                        obd->obd_name, rc);
660                 mdd->mdd_cl.mc_flags |= CLM_ERR;
661         }
662
663         return rc;
664 }
665
666 static void mdd_changelog_fini(const struct lu_env *env,
667                                struct mdd_device *mdd)
668 {
669         struct obd_device       *obd = mdd2obd_dev(mdd);
670         struct llog_ctxt        *ctxt;
671
672         if (mdd->mdd_cl.mc_flags & CLM_CLEANUP_DONE)
673                 return;
674         mdd->mdd_cl.mc_flags = CLM_CLEANUP_DONE;
675
676 again:
677         /* stop GC-thread if running */
678         spin_lock(&mdd->mdd_cl.mc_lock);
679         if (likely(mdd->mdd_cl.mc_gc_task == MDD_CHLG_GC_NONE)) {
680                 /* avoid any attempt to run a GC-thread */
681                 mdd->mdd_cl.mc_gc_task = current;
682                 spin_unlock(&mdd->mdd_cl.mc_lock);
683         } else {
684                 struct task_struct *gc_task;
685
686                 if (unlikely(mdd->mdd_cl.mc_gc_task == MDD_CHLG_GC_NEED ||
687                              mdd->mdd_cl.mc_gc_task == MDD_CHLG_GC_START)) {
688                         /* need to wait for birthing GC-thread to be started
689                          * and to have set mc_gc_task to itself
690                          */
691                         spin_unlock(&mdd->mdd_cl.mc_lock);
692                         /* Add a tiny sleep */
693                         schedule_timeout_uninterruptible(1);
694                         /* go back to fully check if GC-thread has started or
695                          * even already exited or if a new one is starting...
696                          */
697                         goto again;
698                 }
699                 /* take a reference on task_struct to avoid it to be freed
700                  * upon exit
701                  */
702                 gc_task = mdd->mdd_cl.mc_gc_task;
703                 get_task_struct(gc_task);
704                 spin_unlock(&mdd->mdd_cl.mc_lock);
705                 kthread_stop(gc_task);
706                 put_task_struct(gc_task);
707         }
708
709         ctxt = llog_get_context(obd, LLOG_CHANGELOG_ORIG_CTXT);
710         if (ctxt) {
711                 llog_cat_close(env, ctxt->loc_handle);
712                 llog_cleanup(env, ctxt);
713         }
714         ctxt = llog_get_context(obd, LLOG_CHANGELOG_USER_ORIG_CTXT);
715         if (ctxt) {
716                 llog_cat_close(env, ctxt->loc_handle);
717                 llog_cleanup(env, ctxt);
718         }
719 }
720
721 /** Remove entries with indicies up to and including \a endrec from the
722  *  changelog
723  * \param mdd
724  * \param endrec
725  * \retval 0 ok
726  */
727 static int
728 mdd_changelog_llog_cancel(const struct lu_env *env, struct mdd_device *mdd,
729                           long long endrec)
730 {
731         struct obd_device *obd = mdd2obd_dev(mdd);
732         struct llog_ctxt *ctxt;
733         long long unsigned cur;
734         struct changelog_cancel_cookie cookie;
735         int rc;
736
737         ctxt = llog_get_context(obd, LLOG_CHANGELOG_ORIG_CTXT);
738         if (ctxt == NULL)
739                 return -ENXIO;
740
741         spin_lock(&mdd->mdd_cl.mc_lock);
742         cur = (long long)mdd->mdd_cl.mc_index;
743         spin_unlock(&mdd->mdd_cl.mc_lock);
744         if (endrec > cur)
745                 endrec = cur;
746
747         /* purge to "0" is shorthand for everything */
748         if (endrec == 0)
749                 endrec = cur;
750
751         /* If purging all records, write a header entry so we don't have an
752            empty catalog and we're sure to have a valid starting index next
753            time.  In case of crash, we just restart with old log so we're
754            allright. */
755         if (endrec == cur) {
756                 /* XXX: transaction is started by llog itself */
757                 rc = mdd_changelog_write_header(env, mdd, CLM_PURGE);
758                 if (rc)
759                       goto out;
760         }
761
762         /* Some records were purged, so reset repeat-access time (so we
763            record new mtime update records, so users can see a file has been
764            changed since the last purge) */
765         mdd->mdd_cl.mc_starttime = ktime_get();
766
767         cookie.endrec = endrec;
768         cookie.mdd = mdd;
769         rc = llog_changelog_cancel(env, ctxt, &cookie);
770 out:
771         llog_ctxt_put(ctxt);
772         return rc;
773 }
774
775 /** Add a CL_MARK record to the changelog
776  * \param mdd
777  * \param markerflags - CLM_*
778  * \retval 0 ok
779  */
780 int mdd_changelog_write_header(const struct lu_env *env,
781                                struct mdd_device *mdd, int markerflags)
782 {
783         struct obd_device               *obd = mdd2obd_dev(mdd);
784         struct llog_changelog_rec       *rec;
785         struct lu_buf                   *buf;
786         struct llog_ctxt                *ctxt;
787         int                              reclen;
788         int                              len = strlen(obd->obd_name);
789         int                              rc;
790
791         ENTRY;
792
793         if (mdd->mdd_cl.mc_current_mask & BIT(CL_MARK)) {
794                 mdd->mdd_cl.mc_starttime = ktime_get();
795                 RETURN(0);
796         }
797
798         reclen = llog_data_len(sizeof(*rec) + len);
799         buf = lu_buf_check_and_alloc(&mdd_env_info(env)->mdi_chlg_buf, reclen);
800         if (buf->lb_buf == NULL)
801                 RETURN(-ENOMEM);
802         rec = buf->lb_buf;
803
804         rec->cr.cr_flags = CLF_VERSION;
805         rec->cr.cr_type = CL_MARK;
806         rec->cr.cr_namelen = len;
807         memcpy(changelog_rec_name(&rec->cr), obd->obd_name, rec->cr.cr_namelen);
808         /* Status and action flags */
809         rec->cr.cr_markerflags = mdd->mdd_cl.mc_flags | markerflags;
810         rec->cr_hdr.lrh_len = llog_data_len(changelog_rec_size(&rec->cr) +
811                                             rec->cr.cr_namelen);
812         rec->cr_hdr.lrh_type = CHANGELOG_REC;
813         rec->cr.cr_time = cl_time();
814
815         ctxt = llog_get_context(obd, LLOG_CHANGELOG_ORIG_CTXT);
816         LASSERT(ctxt);
817
818         rc = llog_cat_add(env, ctxt->loc_handle, &rec->cr_hdr, NULL);
819         if (rc > 0)
820                 rc = 0;
821         llog_ctxt_put(ctxt);
822
823         /* assume on or off event; reset repeat-access time */
824         mdd->mdd_cl.mc_starttime = ktime_get();
825         RETURN(rc);
826 }
827
828 /**
829  * Lookup method for "fid" object. Only filenames with correct SEQ:OID format
830  * are valid. We also check if object with passed fid exists or not.
831  */
832 static int obf_lookup(const struct lu_env *env, struct md_object *p,
833                       const struct lu_name *lname, struct lu_fid *f,
834                       struct md_op_spec *spec)
835 {
836         char *name = (char *)lname->ln_name;
837         struct mdd_device *mdd = mdo2mdd(p);
838         struct mdd_object *child;
839         int rc = 0;
840
841         while (*name == '[')
842                 name++;
843
844         sscanf(name, SFID, RFID(f));
845         if (!fid_is_sane(f))
846                 GOTO(out, rc = -ENOENT);
847
848         if (!fid_is_norm(f) && !fid_is_igif(f) && !fid_is_root(f) &&
849             !fid_seq_is_dot(f->f_seq))
850                 GOTO(out, rc = -ENOENT);
851
852         /* Check if object with this fid exists */
853         child = mdd_object_find(env, mdd, f);
854         if (IS_ERR(child))
855                 GOTO(out, rc = PTR_ERR(child));
856
857         if (mdd_object_exists(child) == 0)
858                 rc = -ENOENT;
859
860         mdd_object_put(env, child);
861
862 out:
863         return rc;
864 }
865
866 static int mdd_dummy_create(const struct lu_env *env,
867                             struct md_object *pobj,
868                             const struct lu_name *lname,
869                             struct md_object *child,
870                             struct md_op_spec *spec,
871                             struct md_attr* ma)
872 {
873         return -EPERM;
874 }
875
876 static int mdd_dummy_rename(const struct lu_env *env,
877                             struct md_object *src_pobj,
878                             struct md_object *tgt_pobj,
879                             const struct lu_fid *lf,
880                             const struct lu_name *lsname,
881                             struct md_object *tobj,
882                             const struct lu_name *ltname,
883                             struct md_attr *ma)
884 {
885         return -EPERM;
886 }
887
888 static int mdd_dummy_link(const struct lu_env *env,
889                           struct md_object *tgt_obj,
890                           struct md_object *src_obj,
891                           const struct lu_name *lname,
892                           struct md_attr *ma)
893 {
894         return -EPERM;
895 }
896
897 static int mdd_dummy_unlink(const struct lu_env *env,
898                             struct md_object *pobj,
899                             struct md_object *cobj,
900                             const struct lu_name *lname,
901                             struct md_attr *ma,
902                             int no_name)
903 {
904         return -EPERM;
905 }
906
907 int mdd_create(const struct lu_env *env, struct md_object *pobj,
908                       const struct lu_name *lname, struct md_object *child,
909                       struct md_op_spec *spec, struct md_attr *ma);
910 static int mdd_obf_create(const struct lu_env *env, struct md_object *pobj,
911                       const struct lu_name *lname, struct md_object *child,
912                       struct md_op_spec *spec, struct md_attr *ma)
913 {
914         if (spec->sp_cr_flags & MDS_OPEN_VOLATILE)
915                 return mdd_create(env, pobj, lname, child, spec, ma);
916         RETURN(-EPERM);
917 }
918
919 static const struct md_dir_operations mdd_obf_dir_ops = {
920         .mdo_lookup = obf_lookup,
921         .mdo_create = mdd_obf_create,
922         .mdo_rename = mdd_dummy_rename,
923         .mdo_link   = mdd_dummy_link,
924         .mdo_unlink = mdd_dummy_unlink
925 };
926
927 static const struct md_dir_operations mdd_lpf_dir_ops = {
928         .mdo_lookup = mdd_lookup,
929         .mdo_create = mdd_dummy_create,
930         .mdo_rename = mdd_dummy_rename,
931         .mdo_link   = mdd_dummy_link,
932         .mdo_unlink = mdd_dummy_unlink
933 };
934
935 static struct md_object *mdo_locate(const struct lu_env *env,
936                                     struct md_device *md,
937                                     const struct lu_fid *fid)
938 {
939         struct lu_object *obj;
940         struct md_object *mdo;
941
942         obj = lu_object_find(env, &md->md_lu_dev, fid, NULL);
943         if (!IS_ERR(obj)) {
944                 obj = lu_object_locate(obj->lo_header, md->md_lu_dev.ld_type);
945                 LASSERT(obj != NULL);
946                 mdo = lu2md(obj);
947         } else {
948                 mdo = ERR_CAST(obj);
949         }
950         return mdo;
951 }
952
953 static int mdd_lpf_setup(const struct lu_env *env, struct mdd_device *m)
954 {
955         struct md_object        *mdo;
956         struct mdd_object       *mdd_lpf;
957         struct lu_fid            fid    = LU_LPF_FID;
958         int                      rc;
959         ENTRY;
960
961         rc = mdd_local_file_create(env, m, mdd_object_fid(m->mdd_dot_lustre),
962                                    mdd_lpf_dir_name, S_IFDIR | S_IRUSR | S_IXUSR,
963                                    &fid);
964         if (rc != 0)
965                 RETURN(rc);
966
967         mdo = mdo_locate(env, &m->mdd_md_dev, &fid);
968         if (IS_ERR(mdo))
969                 RETURN(PTR_ERR(mdo));
970
971         LASSERT(lu_object_exists(&mdo->mo_lu));
972
973         mdd_lpf = md2mdd_obj(mdo);
974         mdd_lpf->mod_obj.mo_dir_ops = &mdd_lpf_dir_ops;
975         m->mdd_dot_lustre_objs.mdd_lpf = mdd_lpf;
976
977         RETURN(0);
978 }
979
980 /**
981  * Create special in-memory "fid" object for open-by-fid.
982  */
983 static int mdd_obf_setup(const struct lu_env *env, struct mdd_device *m)
984 {
985         struct md_object        *mdo;
986         struct mdd_object       *mdd_obf;
987         struct lu_fid            fid = LU_OBF_FID;
988         int                      rc;
989
990         rc = mdd_local_file_create(env, m, mdd_object_fid(m->mdd_dot_lustre),
991                                    mdd_obf_dir_name, S_IFDIR | S_IXUSR, &fid);
992         if (rc < 0)
993                 RETURN(rc);
994
995         mdo = mdo_locate(env, &m->mdd_md_dev, &fid);
996         if (IS_ERR(mdo))
997                 RETURN(PTR_ERR(mdo));
998
999         LASSERT(lu_object_exists(&mdo->mo_lu));
1000
1001         mdd_obf = md2mdd_obj(mdo);
1002         mdd_obf->mod_obj.mo_dir_ops = &mdd_obf_dir_ops;
1003         m->mdd_dot_lustre_objs.mdd_obf = mdd_obf;
1004
1005         return 0;
1006 }
1007
1008 static void mdd_dot_lustre_cleanup(const struct lu_env *env,
1009                                    struct mdd_device *m)
1010 {
1011         if (m->mdd_dot_lustre_objs.mdd_lpf != NULL) {
1012                 mdd_object_put(env, m->mdd_dot_lustre_objs.mdd_lpf);
1013                 m->mdd_dot_lustre_objs.mdd_lpf = NULL;
1014         }
1015         if (m->mdd_dot_lustre_objs.mdd_obf != NULL) {
1016                 mdd_object_put(env, m->mdd_dot_lustre_objs.mdd_obf);
1017                 m->mdd_dot_lustre_objs.mdd_obf = NULL;
1018         }
1019         if (m->mdd_dot_lustre != NULL) {
1020                 mdd_object_put(env, m->mdd_dot_lustre);
1021                 m->mdd_dot_lustre = NULL;
1022         }
1023 }
1024
1025 /** Setup ".lustre" directory object */
1026 static int mdd_dot_lustre_setup(const struct lu_env *env, struct mdd_device *m)
1027 {
1028         struct md_object        *mdo;
1029         struct lu_fid            fid;
1030         int                      rc;
1031
1032         ENTRY;
1033         /* Create ".lustre" directory in ROOT. */
1034         fid = LU_DOT_LUSTRE_FID;
1035         rc = mdd_local_file_create(env, m, &m->mdd_root_fid,
1036                                    dot_lustre_name,
1037                                    S_IFDIR | S_IRUGO | S_IWUSR | S_IXUGO,
1038                                    &fid);
1039         if (rc < 0)
1040                 RETURN(rc);
1041         mdo = mdo_locate(env, &m->mdd_md_dev, &fid);
1042         if (IS_ERR(mdo))
1043                 RETURN(PTR_ERR(mdo));
1044         LASSERT(lu_object_exists(&mdo->mo_lu));
1045
1046         m->mdd_dot_lustre = md2mdd_obj(mdo);
1047
1048         rc = mdd_obf_setup(env, m);
1049         if (rc) {
1050                 CERROR("%s: error initializing \"fid\" object: rc = %d.\n",
1051                        mdd2obd_dev(m)->obd_name, rc);
1052                 GOTO(out, rc);
1053         }
1054
1055         rc = mdd_lpf_setup(env, m);
1056         if (rc != 0) {
1057                 CERROR("%s: error initializing \"lost+found\": rc = %d.\n",
1058                        mdd2obd_dev(m)->obd_name, rc);
1059                 GOTO(out, rc);
1060         }
1061
1062         RETURN(0);
1063
1064 out:
1065         mdd_dot_lustre_cleanup(env, m);
1066
1067         return rc;
1068 }
1069
1070 /**
1071  * set llog methods and create LLOG_AGENT_ORIG_CTXT llog
1072  * object in obd_device
1073  */
1074 static int mdd_hsm_actions_llog_init(const struct lu_env *env,
1075                                      struct mdd_device *m)
1076 {
1077         struct obd_device       *obd = mdd2obd_dev(m);
1078         struct llog_ctxt        *ctxt = NULL;
1079         int                      rc;
1080         ENTRY;
1081
1082         OBD_SET_CTXT_MAGIC(&obd->obd_lvfs_ctxt);
1083         obd->obd_lvfs_ctxt.dt = m->mdd_bottom;
1084
1085         rc = llog_setup(env, obd, &obd->obd_olg, LLOG_AGENT_ORIG_CTXT,
1086                         obd, &llog_common_cat_ops);
1087         if (rc) {
1088                 CERROR("%s: hsm actions llog setup failed: rc = %d\n",
1089                         obd->obd_name, rc);
1090                 RETURN(rc);
1091         }
1092
1093         ctxt = llog_get_context(obd, LLOG_AGENT_ORIG_CTXT);
1094         LASSERT(ctxt);
1095
1096         rc = llog_open_create(env, ctxt, &ctxt->loc_handle, NULL,
1097                               HSM_ACTIONS);
1098         if (rc) {
1099                 CERROR("%s: hsm actions llog open_create failed: rc = %d\n",
1100                         obd->obd_name, rc);
1101                 GOTO(out_cleanup, rc);
1102         }
1103
1104         rc = llog_init_handle(env, ctxt->loc_handle, LLOG_F_IS_CAT, NULL);
1105         if (rc)
1106                 GOTO(out_close, rc);
1107
1108         llog_ctxt_put(ctxt);
1109         RETURN(0);
1110
1111 out_close:
1112         llog_cat_close(env, ctxt->loc_handle);
1113         ctxt->loc_handle = NULL;
1114 out_cleanup:
1115         llog_cleanup(env, ctxt);
1116
1117         return rc;
1118 }
1119
1120 /**
1121  * cleanup the context created by llog_setup_named()
1122  */
1123 static int mdd_hsm_actions_llog_fini(const struct lu_env *env,
1124                                      struct mdd_device *m)
1125 {
1126         struct obd_device       *obd = mdd2obd_dev(m);
1127         struct llog_ctxt        *lctxt;
1128         ENTRY;
1129
1130         lctxt = llog_get_context(obd, LLOG_AGENT_ORIG_CTXT);
1131         if (lctxt) {
1132                 llog_cat_close(env, lctxt->loc_handle);
1133                 lctxt->loc_handle = NULL;
1134                 llog_cleanup(env, lctxt);
1135         }
1136
1137         RETURN(0);
1138 }
1139
1140 static void mdd_device_shutdown(const struct lu_env *env, struct mdd_device *m,
1141                                 struct lustre_cfg *cfg)
1142 {
1143         barrier_deregister(m->mdd_bottom);
1144         lfsck_degister(env, m->mdd_bottom);
1145         mdd_hsm_actions_llog_fini(env, m);
1146         mdd_changelog_fini(env, m);
1147         mdd_orphan_index_fini(env, m);
1148         mdd_dot_lustre_cleanup(env, m);
1149         if (mdd2obd_dev(m)->u.obt.obt_nodemap_config_file) {
1150                 nm_config_file_deregister_tgt(env,
1151                                 mdd2obd_dev(m)->u.obt.obt_nodemap_config_file);
1152                 mdd2obd_dev(m)->u.obt.obt_nodemap_config_file = NULL;
1153         }
1154         if (m->mdd_los != NULL) {
1155                 local_oid_storage_fini(env, m->mdd_los);
1156                 m->mdd_los = NULL;
1157         }
1158         lu_site_purge(env, mdd2lu_dev(m)->ld_site, ~0);
1159
1160         if (m->mdd_child_exp)
1161                 obd_disconnect(m->mdd_child_exp);
1162 }
1163
1164 static int mdd_process_config(const struct lu_env *env,
1165                               struct lu_device *d, struct lustre_cfg *cfg)
1166 {
1167         struct mdd_device *m    = lu2mdd_dev(d);
1168         struct dt_device  *dt   = m->mdd_child;
1169         struct lu_device  *next = &dt->dd_lu_dev;
1170         int rc;
1171         ENTRY;
1172
1173         switch (cfg->lcfg_command) {
1174         case LCFG_PARAM: {
1175                 ssize_t count;
1176
1177                 count = class_modify_config(cfg, PARAM_MDD, &m->mdd_kobj);
1178                 rc = count > 0 ? 0 : count;
1179                 if (rc)
1180                         /* we don't understand; pass it on */
1181                         rc = next->ld_ops->ldo_process_config(env, next, cfg);
1182                 break;
1183         }
1184         case LCFG_SETUP:
1185                 rc = next->ld_ops->ldo_process_config(env, next, cfg);
1186                 if (rc)
1187                         GOTO(out, rc);
1188                 dt_conf_get(env, dt, &m->mdd_dt_conf);
1189                 break;
1190         case LCFG_PRE_CLEANUP:
1191                 rc = next->ld_ops->ldo_process_config(env, next, cfg);
1192                 mdd_generic_thread_stop(&m->mdd_orphan_cleanup_thread);
1193                 break;
1194         case LCFG_CLEANUP:
1195                 rc = next->ld_ops->ldo_process_config(env, next, cfg);
1196                 lu_dev_del_linkage(d->ld_site, d);
1197                 mdd_device_shutdown(env, m, cfg);
1198                 break;
1199         default:
1200                 rc = next->ld_ops->ldo_process_config(env, next, cfg);
1201                 break;
1202         }
1203 out:
1204         RETURN(rc);
1205 }
1206
1207 static int mdd_recovery_complete(const struct lu_env *env,
1208                                  struct lu_device *d)
1209 {
1210         struct mdd_device *mdd = lu2mdd_dev(d);
1211         struct lu_device *next;
1212         int rc;
1213         ENTRY;
1214
1215         LASSERT(mdd != NULL);
1216         next = &mdd->mdd_child->dd_lu_dev;
1217
1218         if (!mdd->mdd_bottom->dd_rdonly)
1219                 mdd_orphan_cleanup(env, mdd);
1220         rc = next->ld_ops->ldo_recovery_complete(env, next);
1221
1222         RETURN(rc);
1223 }
1224
1225 int mdd_local_file_create(const struct lu_env *env, struct mdd_device *mdd,
1226                           const struct lu_fid *pfid, const char *name,
1227                           __u32 mode, struct lu_fid *fid)
1228 {
1229         struct dt_object *parent, *dto;
1230         int rc = 0;
1231
1232         ENTRY;
1233
1234         LASSERT(!fid_is_zero(pfid));
1235         parent = dt_locate(env, mdd->mdd_bottom, pfid);
1236         if (unlikely(IS_ERR(parent)))
1237                 RETURN(PTR_ERR(parent));
1238
1239         /* create local file/dir, if @fid is passed then try to use it */
1240         if (fid_is_zero(fid))
1241                 dto = local_file_find_or_create(env, mdd->mdd_los, parent,
1242                                                 name, mode);
1243         else
1244                 dto = local_file_find_or_create_with_fid(env, mdd->mdd_bottom,
1245                                                          fid, parent, name,
1246                                                          mode);
1247         if (IS_ERR(dto))
1248                 GOTO(out_put, rc = PTR_ERR(dto));
1249         *fid = *lu_object_fid(&dto->do_lu);
1250         /* since stack is not fully set up the local_storage uses own stack
1251          * and we should drop its object from cache */
1252         dt_object_put_nocache(env, dto);
1253         EXIT;
1254 out_put:
1255         dt_object_put(env, parent);
1256         return rc;
1257 }
1258
1259 static int mdd_lfsck_out_notify(const struct lu_env *env, void *data,
1260                                 enum lfsck_events event)
1261 {
1262         return 0;
1263 }
1264
1265 static int mdd_prepare(const struct lu_env *env,
1266                        struct lu_device *pdev,
1267                        struct lu_device *cdev)
1268 {
1269         struct mdd_device *mdd = lu2mdd_dev(cdev);
1270         struct lu_device *next = &mdd->mdd_child->dd_lu_dev;
1271         struct nm_config_file *nodemap_config;
1272         struct obd_device_target *obt = &mdd2obd_dev(mdd)->u.obt;
1273         struct lu_fid fid;
1274         int rc;
1275
1276         ENTRY;
1277
1278         rc = next->ld_ops->ldo_prepare(env, cdev, next);
1279         if (rc)
1280                 RETURN(rc);
1281
1282         /* Setup local dirs */
1283         fid.f_seq = FID_SEQ_LOCAL_NAME;
1284         fid.f_oid = 1;
1285         fid.f_ver = 0;
1286         rc = local_oid_storage_init(env, mdd->mdd_bottom, &fid,
1287                                     &mdd->mdd_los);
1288         if (rc)
1289                 RETURN(rc);
1290
1291         rc = dt_root_get(env, mdd->mdd_child, &mdd->mdd_local_root_fid);
1292         if (rc < 0)
1293                 GOTO(out_los, rc);
1294
1295         lu_root_fid(&fid);
1296         if (mdd_seq_site(mdd)->ss_node_id == 0) {
1297                 rc = mdd_local_file_create(env, mdd, &mdd->mdd_local_root_fid,
1298                                            mdd_root_dir_name, S_IFDIR |
1299                                            S_IRUGO | S_IWUSR | S_IXUGO, &fid);
1300                 if (rc != 0) {
1301                         CERROR("%s: create root fid failed: rc = %d\n",
1302                                mdd2obd_dev(mdd)->obd_name, rc);
1303                         GOTO(out_los, rc);
1304                 }
1305
1306                 mdd->mdd_root_fid = fid;
1307                 rc = mdd_dot_lustre_setup(env, mdd);
1308                 if (rc != 0) {
1309                         CERROR("%s: initializing .lustre failed: rc = %d\n",
1310                                mdd2obd_dev(mdd)->obd_name, rc);
1311                         GOTO(out_los, rc);
1312                 }
1313         } else {
1314                 /* Normal client usually send root access to MDT0 directly,
1315                  * the root FID on non-MDT0 will only be used by echo client. */
1316                 mdd->mdd_root_fid = fid;
1317         }
1318
1319         rc = mdd_orphan_index_init(env, mdd);
1320         if (rc < 0)
1321                 GOTO(out_dot, rc);
1322
1323         rc = mdd_changelog_init(env, mdd);
1324         if (rc != 0) {
1325                 CERROR("%s: failed to initialize changelog: rc = %d\n",
1326                        mdd2obd_dev(mdd)->obd_name, rc);
1327                 GOTO(out_orph, rc);
1328         }
1329
1330         rc = mdd_hsm_actions_llog_init(env, mdd);
1331         if (rc != 0)
1332                 GOTO(out_changelog, rc);
1333
1334         nodemap_config = nm_config_file_register_tgt(env, mdd->mdd_bottom,
1335                                                      mdd->mdd_los);
1336         if (IS_ERR(nodemap_config)) {
1337                 rc = PTR_ERR(nodemap_config);
1338                 if (rc != -EROFS)
1339                         GOTO(out_hsm, rc);
1340         } else {
1341                 obt->obt_nodemap_config_file = nodemap_config;
1342         }
1343
1344         rc = lfsck_register(env, mdd->mdd_bottom, mdd->mdd_child,
1345                             mdd2obd_dev(mdd), mdd_lfsck_out_notify,
1346                             mdd, true);
1347         if (rc != 0) {
1348                 CERROR("%s: failed to initialize lfsck: rc = %d\n",
1349                        mdd2obd_dev(mdd)->obd_name, rc);
1350                 GOTO(out_nodemap, rc);
1351         }
1352
1353         rc = barrier_register(mdd->mdd_bottom, mdd->mdd_child);
1354         if (rc) {
1355                 CERROR("%s: failed to register to barrier: rc = %d\n",
1356                        mdd2obd_dev(mdd)->obd_name, rc);
1357                 GOTO(out_lfsck, rc);
1358         }
1359
1360         RETURN(0);
1361
1362 out_lfsck:
1363         lfsck_degister(env, mdd->mdd_bottom);
1364 out_nodemap:
1365         nm_config_file_deregister_tgt(env, obt->obt_nodemap_config_file);
1366         obt->obt_nodemap_config_file = NULL;
1367 out_hsm:
1368         mdd_hsm_actions_llog_fini(env, mdd);
1369 out_changelog:
1370         mdd_changelog_fini(env, mdd);
1371 out_orph:
1372         mdd_orphan_index_fini(env, mdd);
1373 out_dot:
1374         if (mdd_seq_site(mdd)->ss_node_id == 0)
1375                 mdd_dot_lustre_cleanup(env, mdd);
1376 out_los:
1377         local_oid_storage_fini(env, mdd->mdd_los);
1378         mdd->mdd_los = NULL;
1379
1380         return rc;
1381 }
1382
1383 /**
1384  * Implementation of lu_device_operations::ldo_fid_alloc() for MDD.
1385  *
1386  * Find corresponding device by passed parent and name, and allocate FID from
1387  * there.
1388  *
1389  * see include/lu_object.h for the details.
1390  */
1391 static int mdd_fid_alloc(const struct lu_env *env, struct lu_device *d,
1392                          struct lu_fid *fid, struct lu_object *parent,
1393                          const struct lu_name *name)
1394 {
1395         struct mdd_device *mdd = lu2mdd_dev(d);
1396         struct lu_object *o = lu_object_next(parent);
1397
1398         return dt_fid_alloc(env, mdd->mdd_child, fid, o, name);
1399 }
1400
1401 const struct lu_device_operations mdd_lu_ops = {
1402         .ldo_object_alloc      = mdd_object_alloc,
1403         .ldo_process_config    = mdd_process_config,
1404         .ldo_recovery_complete = mdd_recovery_complete,
1405         .ldo_prepare           = mdd_prepare,
1406         .ldo_fid_alloc         = mdd_fid_alloc,
1407 };
1408
1409 static int mdd_root_get(const struct lu_env *env,
1410                         struct md_device *m, struct lu_fid *f)
1411 {
1412         struct mdd_device *mdd = lu2mdd_dev(&m->md_lu_dev);
1413
1414         ENTRY;
1415         *f = mdd->mdd_root_fid;
1416         RETURN(0);
1417 }
1418
1419 /*
1420  * No permission check is needed.
1421  */
1422 static int mdd_statfs(const struct lu_env *env, struct md_device *m,
1423                       struct obd_statfs *sfs)
1424 {
1425         struct mdd_device *mdd = lu2mdd_dev(&m->md_lu_dev);
1426         int rc;
1427
1428         ENTRY;
1429
1430         rc = mdd_child_ops(mdd)->dt_statfs(env, mdd->mdd_child, sfs, NULL);
1431
1432         sfs->os_namelen = min_t(__u32, sfs->os_namelen, NAME_MAX);
1433
1434         RETURN(rc);
1435 }
1436
1437 static const struct dt_device_param *mdd_dtconf_get(const struct lu_env *env,
1438                                                     struct md_device *m)
1439 {
1440         struct mdd_device *mdd = lu2mdd_dev(&m->md_lu_dev);
1441
1442         return &mdd->mdd_dt_conf;
1443 }
1444
1445 static int mdd_llog_ctxt_get(const struct lu_env *env, struct md_device *m,
1446                              int idx, void **h)
1447 {
1448         struct mdd_device *mdd = lu2mdd_dev(&m->md_lu_dev);
1449
1450         *h = llog_group_get_ctxt(&mdd2obd_dev(mdd)->obd_olg, idx);
1451         return (*h == NULL ? -ENOENT : 0);
1452 }
1453
1454 static struct lu_device *mdd_device_free(const struct lu_env *env,
1455                                          struct lu_device *lu)
1456 {
1457         struct mdd_device *m = lu2mdd_dev(lu);
1458         ENTRY;
1459
1460         LASSERT(atomic_read(&lu->ld_ref) == 0);
1461         md_device_fini(&m->mdd_md_dev);
1462         OBD_FREE_PTR(m);
1463         RETURN(NULL);
1464 }
1465
1466 static struct lu_device *mdd_device_alloc(const struct lu_env *env,
1467                                           struct lu_device_type *t,
1468                                           struct lustre_cfg *lcfg)
1469 {
1470         struct lu_device  *l;
1471         struct mdd_device *m;
1472
1473         OBD_ALLOC_PTR(m);
1474         if (m == NULL) {
1475                 l = ERR_PTR(-ENOMEM);
1476         } else {
1477                 int rc;
1478
1479                 l = mdd2lu_dev(m);
1480                 md_device_init(&m->mdd_md_dev, t);
1481                 rc = mdd_init0(env, m, t, lcfg);
1482                 if (rc != 0) {
1483                         mdd_device_free(env, l);
1484                         l = ERR_PTR(rc);
1485                 }
1486         }
1487
1488         return l;
1489 }
1490
1491 /*
1492  * we use exports to track all mdd users
1493  */
1494 static int mdd_obd_connect(const struct lu_env *env, struct obd_export **exp,
1495                            struct obd_device *obd, struct obd_uuid *cluuid,
1496                            struct obd_connect_data *data, void *localdata)
1497 {
1498         struct mdd_device    *mdd = lu2mdd_dev(obd->obd_lu_dev);
1499         struct lustre_handle  conn;
1500         int                   rc;
1501         ENTRY;
1502
1503         CDEBUG(D_CONFIG, "connect #%d\n", mdd->mdd_connects);
1504
1505         rc = class_connect(&conn, obd, cluuid);
1506         if (rc)
1507                 RETURN(rc);
1508
1509         *exp = class_conn2export(&conn);
1510
1511         /* Why should there ever be more than 1 connect? */
1512         LASSERT(mdd->mdd_connects == 0);
1513         mdd->mdd_connects++;
1514
1515         RETURN(0);
1516 }
1517
1518 /*
1519  * once last export (we don't count self-export) disappeared
1520  * mdd can be released
1521  */
1522 static int mdd_obd_disconnect(struct obd_export *exp)
1523 {
1524         struct obd_device *obd = exp->exp_obd;
1525         struct mdd_device *mdd = lu2mdd_dev(obd->obd_lu_dev);
1526         int                rc, release = 0;
1527         ENTRY;
1528
1529         mdd->mdd_connects--;
1530         if (mdd->mdd_connects == 0)
1531                 release = 1;
1532
1533         rc = class_disconnect(exp);
1534
1535         if (rc == 0 && release)
1536                 class_manual_cleanup(obd);
1537         RETURN(rc);
1538 }
1539
1540 static int mdd_obd_get_info(const struct lu_env *env, struct obd_export *exp,
1541                             __u32 keylen, void *key, __u32 *vallen, void *val)
1542 {
1543         int rc = -EINVAL;
1544
1545         if (KEY_IS(KEY_OSP_CONNECTED)) {
1546                 struct obd_device       *obd = exp->exp_obd;
1547                 struct mdd_device       *mdd;
1548
1549                 if (!obd->obd_set_up || obd->obd_stopping)
1550                         RETURN(-EAGAIN);
1551
1552                 mdd = lu2mdd_dev(obd->obd_lu_dev);
1553                 LASSERT(mdd);
1554                 rc = obd_get_info(env, mdd->mdd_child_exp, keylen, key, vallen,
1555                                   val);
1556                 RETURN(rc);
1557         }
1558
1559         RETURN(rc);
1560 }
1561
1562 static int mdd_obd_set_info_async(const struct lu_env *env,
1563                                   struct obd_export *exp,
1564                                   __u32 keylen, void *key,
1565                                   __u32 vallen, void *val,
1566                                   struct ptlrpc_request_set *set)
1567 {
1568         struct obd_device       *obd = exp->exp_obd;
1569         struct mdd_device       *mdd;
1570         int                      rc;
1571
1572         if (!obd->obd_set_up || obd->obd_stopping)
1573                 RETURN(-EAGAIN);
1574
1575         mdd = lu2mdd_dev(obd->obd_lu_dev);
1576         LASSERT(mdd);
1577         rc = obd_set_info_async(env, mdd->mdd_child_exp, keylen, key,
1578                                 vallen, val, set);
1579         RETURN(rc);
1580 }
1581
1582 static const struct obd_ops mdd_obd_device_ops = {
1583         .o_owner        = THIS_MODULE,
1584         .o_connect      = mdd_obd_connect,
1585         .o_disconnect   = mdd_obd_disconnect,
1586         .o_get_info     = mdd_obd_get_info,
1587         .o_set_info_async = mdd_obd_set_info_async,
1588 };
1589
1590 struct mdd_changelog_name_check_data {
1591         const char *mcnc_name;
1592         __u32       mcnc_id;
1593 };
1594
1595 /**
1596  * changelog_recalc_mask callback
1597  *
1598  * Is is called per each registered user and calculates combined mask of
1599  * all registered users.
1600  */
1601 static int mdd_changelog_name_check_cb(const struct lu_env *env,
1602                                        struct llog_handle *llh,
1603                                        struct llog_rec_hdr *hdr, void *data)
1604 {
1605         struct llog_changelog_user_rec2 *rec;
1606         struct mdd_changelog_name_check_data *mcnc = data;
1607
1608         rec = container_of(hdr, typeof(*rec), cur_hdr);
1609         if (rec->cur_hdr.lrh_type == CHANGELOG_USER_REC2 &&
1610             !strncmp(rec->cur_name, mcnc->mcnc_name, sizeof(rec->cur_name))) {
1611                 mcnc->mcnc_id = rec->cur_id;
1612                 return -EEXIST;
1613         }
1614         return 0;
1615 }
1616
1617 static int mdd_changelog_name_check(const struct lu_env *env,
1618                                     struct llog_ctxt *ctxt,
1619                                     struct mdd_device *mdd, const char *name)
1620 {
1621         struct mdd_changelog_name_check_data mcnc = { .mcnc_name = name, };
1622         int chr = 0;
1623         int rc;
1624
1625         ENTRY;
1626
1627         /* first symbol is a letter */
1628         if (!isalpha(name[0])) {
1629                 rc = -EINVAL;
1630                 CERROR("%s: first char '%c' in '%s' is not letter: rc = %d\n",
1631                        mdd2obd_dev(mdd)->obd_name, name[0], name, rc);
1632                 RETURN(rc);
1633         }
1634
1635         /* name is valid: contains letters, numbers and '-', '_' only */
1636         while (name[++chr]) {
1637                 if (!(isalnum(name[chr]) || name[chr] == '_' ||
1638                       name[chr] == '-')) {
1639                         rc = -EINVAL;
1640                         CERROR("%s: wrong char '%c' in name '%s': rc = %d\n",
1641                                mdd2obd_dev(mdd)->obd_name, name[chr], name, rc);
1642                         RETURN(rc);
1643                 }
1644         }
1645
1646         if (chr > CHANGELOG_USER_NAMELEN) {
1647                 rc = -ENAMETOOLONG;
1648                 CERROR("%s: name '%s' is over %d symbols limit: rc = %d\n",
1649                        mdd2obd_dev(mdd)->obd_name, name,
1650                        CHANGELOG_USER_NAMELEN, rc);
1651                 RETURN(rc);
1652         }
1653
1654         rc = llog_cat_process(env, ctxt->loc_handle,
1655                               mdd_changelog_name_check_cb, &mcnc, 0, 0);
1656         if (rc == -EEXIST)
1657                 CWARN("%s: changelog name %s exists already: rc = %d\n",
1658                       mdd2obd_dev(mdd)->obd_name, name, rc);
1659         else if (rc < 0)
1660                 CWARN("%s: failed user changelog processing: rc = %d\n",
1661                       mdd2obd_dev(mdd)->obd_name, rc);
1662         RETURN(rc);
1663 }
1664
1665 static int mdd_changelog_user_register(const struct lu_env *env,
1666                                        struct mdd_device *mdd, int *id,
1667                                        const char *name, const char *mask)
1668 {
1669         struct llog_ctxt *ctxt;
1670         struct llog_changelog_user_rec2 *rec;
1671         char user_name[CHANGELOG_USER_NAMELEN_FULL];
1672         int rc;
1673
1674         ENTRY;
1675
1676         ctxt = llog_get_context(mdd2obd_dev(mdd),
1677                                 LLOG_CHANGELOG_USER_ORIG_CTXT);
1678         if (ctxt == NULL)
1679                 RETURN(-ENXIO);
1680
1681         OBD_ALLOC_PTR(rec);
1682         if (rec == NULL) {
1683                 llog_ctxt_put(ctxt);
1684                 RETURN(-ENOMEM);
1685         }
1686
1687         CFS_RACE(CFS_FAIL_CHLOG_USER_REG_UNREG_RACE);
1688
1689         rec->cur_hdr.lrh_len = sizeof(*rec);
1690         /* keep old record type for users without mask/name for
1691          * compatibility needs
1692          */
1693         if (mask || (name && name[0]))
1694                 rec->cur_hdr.lrh_type = CHANGELOG_USER_REC2;
1695         else
1696                 rec->cur_hdr.lrh_type = CHANGELOG_USER_REC;
1697         spin_lock(&mdd->mdd_cl.mc_user_lock);
1698         if (mdd->mdd_cl.mc_lastuser == (unsigned int)(-1)) {
1699                 spin_unlock(&mdd->mdd_cl.mc_user_lock);
1700                 rc = -EOVERFLOW;
1701                 CERROR("%s: registering %s user: max ID is exceeded: rc = %d\n",
1702                        mdd2obd_dev(mdd)->obd_name,
1703                        (name && name[0]) ? name : "new", rc);
1704                 GOTO(out, rc);
1705         }
1706         *id = rec->cur_id = ++mdd->mdd_cl.mc_lastuser;
1707         mdd->mdd_cl.mc_users++;
1708         spin_unlock(&mdd->mdd_cl.mc_user_lock);
1709
1710         rec->cur_time = (__u32)ktime_get_real_seconds();
1711         if (OBD_FAIL_CHECK(OBD_FAIL_TIME_IN_CHLOG_USER))
1712                 rec->cur_time = 0;
1713
1714         spin_lock(&mdd->mdd_cl.mc_lock);
1715         rec->cur_endrec = mdd->mdd_cl.mc_index;
1716         spin_unlock(&mdd->mdd_cl.mc_lock);
1717
1718         if (mask) {
1719                 /* if user will use relative mask apply it on default one */
1720                 rec->cur_mask = CHANGELOG_DEFMASK;
1721                 rc = cfs_str2mask(mask, changelog_type2str, &rec->cur_mask,
1722                                   CHANGELOG_MINMASK, CHANGELOG_ALLMASK);
1723                 if (rc)
1724                         GOTO(out_users, rc);
1725         }
1726
1727         if (name && name[0]) {
1728                 rc = mdd_changelog_name_check(env, ctxt, mdd, name);
1729                 if (rc)
1730                         GOTO(out_users, rc);
1731                 strlcpy(rec->cur_name, name, sizeof(rec->cur_name));
1732         }
1733         mdd_chlg_username(rec, user_name, sizeof(user_name));
1734
1735         rc = llog_cat_add(env, ctxt->loc_handle, &rec->cur_hdr, NULL);
1736         if (rc) {
1737                 CWARN("%s: failed to register changelog user %s: rc = %d\n",
1738                       mdd2obd_dev(mdd)->obd_name, user_name, rc);
1739                 GOTO(out_users, rc);
1740         }
1741
1742         /* apply user mask finally */
1743         spin_lock(&mdd->mdd_cl.mc_user_lock);
1744         mdd->mdd_cl.mc_current_mask |= rec->cur_mask;
1745         spin_unlock(&mdd->mdd_cl.mc_user_lock);
1746
1747         CDEBUG(D_IOCTL, "%s: registered changelog user '%s', mask %#x\n",
1748                mdd2obd_dev(mdd)->obd_name, user_name, rec->cur_mask);
1749
1750         /* Assume we want it on since somebody registered */
1751         rc = mdd_changelog_on(env, mdd);
1752         if (rc)
1753                 /* record is added, so don't decrement users on error */
1754                 GOTO(out, rc);
1755 out_users:
1756         if (rc) {
1757                 spin_lock(&mdd->mdd_cl.mc_user_lock);
1758                 mdd->mdd_cl.mc_users--;
1759                 spin_unlock(&mdd->mdd_cl.mc_user_lock);
1760         }
1761 out:
1762         OBD_FREE_PTR(rec);
1763         llog_ctxt_put(ctxt);
1764         RETURN(rc);
1765 }
1766
1767 struct mdd_changelog_recalc_mask_data {
1768         struct mdd_device *mcrm_mdd;
1769         __u32              mcrm_mask;
1770 };
1771
1772 /**
1773  * changelog_recalc_mask callback
1774  *
1775  * Is is called per each registered user and calculates combined mask of
1776  * all registered users.
1777  */
1778 static int mdd_changelog_recalc_mask_cb(const struct lu_env *env,
1779                                        struct llog_handle *llh,
1780                                        struct llog_rec_hdr *hdr, void *data)
1781 {
1782         struct llog_changelog_user_rec2 *rec;
1783         struct mdd_changelog_recalc_mask_data *mcrm = data;
1784
1785         rec = container_of(hdr, typeof(*rec), cur_hdr);
1786         if (rec->cur_hdr.lrh_type == CHANGELOG_USER_REC2 && rec->cur_mask)
1787                 mcrm->mcrm_mask |= rec->cur_mask;
1788         else if (mcrm->mcrm_mdd->mdd_cl.mc_proc_mask == CHANGELOG_MINMASK)
1789                 mcrm->mcrm_mask |= CHANGELOG_DEFMASK;
1790
1791         return 0;
1792 }
1793
1794 int mdd_changelog_recalc_mask(const struct lu_env *env, struct mdd_device *mdd)
1795 {
1796         struct llog_ctxt *ctxt;
1797         struct mdd_changelog_recalc_mask_data mcrm = {
1798                 .mcrm_mdd = mdd,
1799                 .mcrm_mask = mdd->mdd_cl.mc_proc_mask,
1800         };
1801         int rc;
1802
1803         ENTRY;
1804
1805         ctxt = llog_get_context(mdd2obd_dev(mdd),
1806                                 LLOG_CHANGELOG_USER_ORIG_CTXT);
1807         if (!ctxt)
1808                 RETURN(-ENXIO);
1809
1810         if (!(ctxt->loc_handle->lgh_hdr->llh_flags & LLOG_F_IS_CAT))
1811                 GOTO(out, rc = -ENXIO);
1812
1813         rc = llog_cat_process(env, ctxt->loc_handle,
1814                               mdd_changelog_recalc_mask_cb, &mcrm, 0, 0);
1815         if (rc < 0)
1816                 CWARN("%s: failed user changelog processing: rc = %d\n",
1817                       mdd2obd_dev(mdd)->obd_name, rc);
1818
1819         spin_lock(&mdd->mdd_cl.mc_user_lock);
1820         CDEBUG(D_INFO, "%s: recalc changelog mask: %#x -> %#x\n",
1821                mdd2obd_dev(mdd)->obd_name, mdd->mdd_cl.mc_current_mask,
1822                mcrm.mcrm_mask);
1823         mdd->mdd_cl.mc_current_mask = mcrm.mcrm_mask;
1824         spin_unlock(&mdd->mdd_cl.mc_user_lock);
1825
1826         EXIT;
1827 out:
1828         llog_ctxt_put(ctxt);
1829
1830         return rc;
1831 }
1832
1833 struct mdd_changelog_user_purge {
1834         struct mdd_device *mcup_mdd;
1835         __u32 mcup_id;
1836         __u32 mcup_usercount;
1837         __u64 mcup_minrec;
1838         bool mcup_found;
1839 };
1840
1841 /**
1842  * changelog_user_purge callback
1843  *
1844  * Is called once per user.
1845  *
1846  * Check to see the user requested is available from rec.
1847  * Truncate the changelog.
1848  * Keep track of the total number of users (calls).
1849  */
1850 static int mdd_changelog_user_purge_cb(const struct lu_env *env,
1851                                        struct llog_handle *llh,
1852                                        struct llog_rec_hdr *hdr, void *data)
1853 {
1854         struct llog_changelog_user_rec2 *rec;
1855         struct mdd_changelog_user_purge *mcup = data;
1856         struct llog_cookie cookie;
1857         int rc;
1858
1859         ENTRY;
1860
1861         if ((llh->lgh_hdr->llh_flags & LLOG_F_IS_PLAIN) == 0)
1862                 RETURN(-ENXIO);
1863
1864         rec = container_of(hdr, typeof(*rec), cur_hdr);
1865
1866         mcup->mcup_usercount++;
1867
1868         if (rec->cur_id != mcup->mcup_id) {
1869                 /* truncate to the lowest endrec that is not this user */
1870                 mcup->mcup_minrec = min(mcup->mcup_minrec, rec->cur_endrec);
1871                 RETURN(0);
1872         }
1873
1874         /* Unregister this user */
1875         cookie.lgc_lgl = llh->lgh_id;
1876         cookie.lgc_index = hdr->lrh_index;
1877
1878         rc = llog_cat_cancel_records(env, llh->u.phd.phd_cat_handle,
1879                                      1, &cookie);
1880         if (rc == 0) {
1881                 mcup->mcup_found = true;
1882                 mcup->mcup_usercount--;
1883                 spin_lock(&mcup->mcup_mdd->mdd_cl.mc_user_lock);
1884                 mcup->mcup_mdd->mdd_cl.mc_users--;
1885                 spin_unlock(&mcup->mcup_mdd->mdd_cl.mc_user_lock);
1886         }
1887
1888         RETURN(rc);
1889 }
1890
1891 int mdd_changelog_user_purge(const struct lu_env *env,
1892                              struct mdd_device *mdd, __u32 id)
1893 {
1894         struct mdd_changelog_user_purge mcup = {
1895                 .mcup_mdd = mdd,
1896                 .mcup_id = id,
1897                 .mcup_found = false,
1898                 .mcup_usercount = 0,
1899                 .mcup_minrec = ULLONG_MAX,
1900         };
1901         struct llog_ctxt *ctxt;
1902         int rc;
1903
1904         ENTRY;
1905
1906         CDEBUG(D_IOCTL, "%s: Purge request: id=%u\n",
1907                mdd2obd_dev(mdd)->obd_name, id);
1908
1909         ctxt = llog_get_context(mdd2obd_dev(mdd),
1910                                 LLOG_CHANGELOG_USER_ORIG_CTXT);
1911         if (ctxt == NULL ||
1912             (ctxt->loc_handle->lgh_hdr->llh_flags & LLOG_F_IS_CAT) == 0)
1913                 GOTO(out, rc = -ENXIO);
1914
1915         rc = llog_cat_process(env, ctxt->loc_handle,
1916                               mdd_changelog_user_purge_cb, &mcup,
1917                               0, 0);
1918
1919         OBD_FAIL_TIMEOUT(OBD_FAIL_LLOG_PURGE_DELAY, cfs_fail_val);
1920
1921         if ((rc == 0) && (mcup.mcup_usercount == 0)) {
1922                 spin_lock(&mdd->mdd_cl.mc_user_lock);
1923                 if (mdd->mdd_cl.mc_users == 0) {
1924                         /* No more users; turn changelogs off */
1925                         CDEBUG(D_IOCTL, "turning off changelogs\n");
1926                         rc = mdd_changelog_off(env, mdd);
1927                 }
1928                 spin_unlock(&mdd->mdd_cl.mc_user_lock);
1929         }
1930
1931         if ((rc == 0) && mcup.mcup_found) {
1932                 CDEBUG(D_IOCTL, "%s: Purging changelog entries for user %d "
1933                        "record=%llu\n",
1934                        mdd2obd_dev(mdd)->obd_name, id, mcup.mcup_minrec);
1935                 /* Cancelling record 0 destroys the entire changelog, make sure
1936                    we don't do that unless we mean it. */
1937                 if (mcup.mcup_minrec != 0 || mcup.mcup_usercount == 0) {
1938                         rc = mdd_changelog_llog_cancel(env, mdd,
1939                                                        mcup.mcup_minrec);
1940                 }
1941         } else {
1942                 CWARN("%s: No changelog for user %u; rc=%d\n",
1943                       mdd2obd_dev(mdd)->obd_name, id, rc);
1944                 GOTO(out, rc = -ENOENT);
1945         }
1946
1947         CFS_RACE(CFS_FAIL_CHLOG_USER_REG_UNREG_RACE);
1948
1949         EXIT;
1950 out:
1951         if (ctxt != NULL)
1952                 llog_ctxt_put(ctxt);
1953
1954         return rc;
1955 }
1956
1957 struct mdd_changelog_user_clear {
1958         __u64 mcuc_endrec;
1959         __u64 mcuc_minrec;
1960         __u32 mcuc_id;
1961         bool mcuc_flush;
1962         struct mdd_device *mcuc_mdd;
1963 };
1964
1965 /**
1966  * changelog_clear callback
1967  *
1968  * Is called once per user.
1969  *
1970  * Check to see the user requested is available from rec.
1971  * Check the oldest (smallest) record for boundary conditions.
1972  * Truncate the changelog.
1973  */
1974 static int mdd_changelog_clear_cb(const struct lu_env *env,
1975                                   struct llog_handle *llh,
1976                                   struct llog_rec_hdr *hdr,
1977                                   void *data)
1978 {
1979         struct llog_changelog_user_rec2 *rec;
1980         struct mdd_changelog_user_clear *mcuc = data;
1981         char user_name[CHANGELOG_USER_NAMELEN_FULL];
1982         struct mdd_device *mdd = mcuc->mcuc_mdd;
1983         int rc;
1984
1985         ENTRY;
1986
1987         if ((llh->lgh_hdr->llh_flags & LLOG_F_IS_PLAIN) == 0)
1988                 RETURN(-ENXIO);
1989
1990         rec = container_of(hdr, typeof(*rec), cur_hdr);
1991         /* Does the changelog id match the requested id? */
1992         if (rec->cur_id != mcuc->mcuc_id) {
1993                 mcuc->mcuc_minrec = min(mcuc->mcuc_minrec,
1994                                         rec->cur_endrec);
1995                 RETURN(0);
1996         }
1997
1998         /* cur_endrec is the oldest purgeable record, make sure we're newer */
1999         if (rec->cur_endrec > mcuc->mcuc_endrec) {
2000                 rc = -EINVAL;
2001                 CDEBUG(D_IOCTL,
2002                        "%s: request %llu > endrec %llu for user %s: rc = %d\n",
2003                        mdd2obd_dev(mdd)->obd_name,
2004                        mcuc->mcuc_endrec, rec->cur_endrec,
2005                        mdd_chlg_username(rec, user_name, sizeof(user_name)),
2006                        rc);
2007                 RETURN(rc);
2008         }
2009
2010         /* Flag that we've met all the range and user checks.
2011          * We now know the record to flush.
2012          */
2013         rec->cur_endrec = mcuc->mcuc_endrec;
2014
2015         rec->cur_time = (__u32)ktime_get_real_seconds();
2016         if (OBD_FAIL_CHECK(OBD_FAIL_TIME_IN_CHLOG_USER))
2017                 rec->cur_time = 0;
2018
2019         mcuc->mcuc_flush = true;
2020
2021         CDEBUG(D_IOCTL, "%s: rewriting changelog user %s endrec = %llu\n",
2022                mdd2obd_dev(mdd)->obd_name,
2023                mdd_chlg_username(rec, user_name, sizeof(user_name)),
2024                rec->cur_endrec);
2025
2026         /* Update the endrec */
2027         rc = llog_write(env, llh, hdr, hdr->lrh_index);
2028
2029         RETURN(rc);
2030 }
2031
2032 /**
2033  * Clear a changelog up to entry specified by endrec for user id.
2034  */
2035 static int mdd_changelog_clear(const struct lu_env *env,
2036                                struct mdd_device *mdd, __u32 id,
2037                                __u64 endrec)
2038 {
2039         struct mdd_changelog_user_clear mcuc = {
2040                 .mcuc_id = id,
2041                 .mcuc_minrec = endrec,
2042                 .mcuc_flush = false,
2043                 .mcuc_mdd = mdd,
2044         };
2045         struct llog_ctxt *ctxt;
2046         __u64 start_rec;
2047         int rc;
2048
2049         ENTRY;
2050
2051         CDEBUG(D_IOCTL, "%s: Purge request: id=%u, endrec=%llu\n",
2052                mdd2obd_dev(mdd)->obd_name, id, endrec);
2053         /* start_rec is the newest (largest value) entry in the changelogs*/
2054         spin_lock(&mdd->mdd_cl.mc_lock);
2055         start_rec = mdd->mdd_cl.mc_index;
2056         spin_unlock(&mdd->mdd_cl.mc_lock);
2057
2058         if (start_rec < endrec) {
2059                 CDEBUG(D_IOCTL, "%s: Could not clear changelog, requested "\
2060                        "address out of range\n", mdd2obd_dev(mdd)->obd_name);
2061                 RETURN(-EINVAL);
2062         }
2063
2064         if (endrec == 0) {
2065                 mcuc.mcuc_endrec = start_rec;
2066                 mcuc.mcuc_minrec = ULLONG_MAX;
2067         } else {
2068                 mcuc.mcuc_endrec = endrec;
2069         }
2070
2071         ctxt = llog_get_context(mdd2obd_dev(mdd),
2072                                 LLOG_CHANGELOG_USER_ORIG_CTXT);
2073         if (ctxt == NULL ||
2074             (ctxt->loc_handle->lgh_hdr->llh_flags & LLOG_F_IS_CAT) == 0)
2075                 GOTO(out, rc = -ENXIO);
2076
2077         rc = llog_cat_process(env, ctxt->loc_handle,
2078                               mdd_changelog_clear_cb, (void *)&mcuc,
2079                               0, 0);
2080
2081         if (rc == -EINVAL) {
2082                 CDEBUG(D_IOCTL, "%s: No changelog recnum <= %llu to clear\n",
2083                        mdd2obd_dev(mdd)->obd_name, (unsigned long long) endrec);
2084                 RETURN(-EINVAL);
2085         } else if (rc < 0) {
2086                 CWARN("%s: Failure to clear the changelog for user %d: %d\n",
2087                       mdd2obd_dev(mdd)->obd_name, id, rc);
2088         } else if (mcuc.mcuc_flush) {
2089                 /* Cancelling record 0 destroys the entire changelog, make sure
2090                    we don't do that unless we mean it. */
2091                 if (mcuc.mcuc_minrec != 0) {
2092                         CDEBUG(D_IOCTL, "%s: Purging changelog entries up "\
2093                                "to %llu\n", mdd2obd_dev(mdd)->obd_name,
2094                                mcuc.mcuc_minrec);
2095
2096                         rc = mdd_changelog_llog_cancel(env, mdd,
2097                                                       mcuc.mcuc_minrec);
2098                 }
2099         } else {
2100                 CDEBUG(D_IOCTL, "%s: No entry for user %d\n",
2101                       mdd2obd_dev(mdd)->obd_name, id);
2102                 rc = -ENOENT;
2103         }
2104
2105         EXIT;
2106 out:
2107         if (ctxt != NULL)
2108                 llog_ctxt_put(ctxt);
2109
2110         return rc;
2111 }
2112
2113 static int mdd_changelog_user_deregister(const struct lu_env *env,
2114                                        struct mdd_device *mdd, int *id,
2115                                        const char *name)
2116 {
2117         struct llog_ctxt *ctxt;
2118         struct mdd_changelog_name_check_data mcnc = {
2119                 .mcnc_name = name,
2120                 .mcnc_id = 0,
2121         };
2122         int rc;
2123
2124         ENTRY;
2125
2126         if (name) {
2127                 ctxt = llog_get_context(mdd2obd_dev(mdd),
2128                                         LLOG_CHANGELOG_USER_ORIG_CTXT);
2129                 if (!ctxt)
2130                         RETURN(-ENXIO);
2131
2132                 rc = llog_cat_process(env, ctxt->loc_handle,
2133                               mdd_changelog_name_check_cb, &mcnc, 0, 0);
2134                 llog_ctxt_put(ctxt);
2135
2136                 if (rc != -EEXIST) {
2137                         CDEBUG(D_IOCTL, "%s: no entry for username %s\n",
2138                                mdd2obd_dev(mdd)->obd_name, name);
2139                         RETURN(-ENOENT);
2140                 }
2141                 *id = mcnc.mcnc_id;
2142         }
2143
2144         /* explicitly clear changelog first, to protect from crash in
2145          * the middle of purge that would lead to unregistered consumer
2146          * but pending changelog entries
2147          */
2148         rc = mdd_changelog_clear(env, mdd, *id, 0);
2149         if (!rc)
2150                 rc = mdd_changelog_user_purge(env, mdd, *id);
2151
2152         /* recalc changelog current mask */
2153         mdd_changelog_recalc_mask(env, mdd);
2154
2155         RETURN(rc);
2156 }
2157
2158 /** mdd_iocontrol
2159  * May be called remotely from mdt_iocontrol_handle or locally from
2160  * mdt_iocontrol. Data may be freeform - remote handling doesn't enforce
2161  * an obd_ioctl_data format (but local ioctl handler does).
2162  * \param cmd - ioc
2163  * \param len - data len
2164  * \param karg - ioctl data, in kernel space
2165  */
2166 static int mdd_iocontrol(const struct lu_env *env, struct md_device *m,
2167                          unsigned int cmd, int len, void *karg)
2168 {
2169         struct mdd_device *mdd = lu2mdd_dev(&m->md_lu_dev);
2170         struct obd_ioctl_data *data = karg;
2171         int rc;
2172         ENTRY;
2173
2174         /* Doesn't use obd_ioctl_data */
2175         switch (cmd) {
2176         case OBD_IOC_CHANGELOG_CLEAR: {
2177                 struct changelog_setinfo *cs = karg;
2178
2179                 if (unlikely(!barrier_entry(mdd->mdd_bottom)))
2180                         RETURN(-EINPROGRESS);
2181
2182                 rc = mdd_changelog_clear(env, mdd, cs->cs_id,
2183                                          cs->cs_recno);
2184                 barrier_exit(mdd->mdd_bottom);
2185                 RETURN(rc);
2186         }
2187         case OBD_IOC_START_LFSCK: {
2188                 rc = lfsck_start(env, mdd->mdd_bottom,
2189                                  (struct lfsck_start_param *)karg);
2190                 RETURN(rc);
2191         }
2192         case OBD_IOC_STOP_LFSCK: {
2193                 rc = lfsck_stop(env, mdd->mdd_bottom,
2194                                 (struct lfsck_stop *)karg);
2195                 RETURN(rc);
2196         }
2197         case OBD_IOC_QUERY_LFSCK: {
2198                 rc = lfsck_query(env, mdd->mdd_bottom, NULL, NULL,
2199                                  (struct lfsck_query *)karg);
2200                 RETURN(rc);
2201         }
2202         }
2203
2204         /* Below ioctls use obd_ioctl_data */
2205         if (data->ioc_version != OBD_IOCTL_VERSION) {
2206                 CERROR("Bad magic %x != %x\n", data->ioc_version,
2207                        OBD_IOCTL_VERSION);
2208                 RETURN(-EINVAL);
2209         }
2210
2211         switch (cmd) {
2212         case OBD_IOC_CHANGELOG_REG:
2213                 if (unlikely(!barrier_entry(mdd->mdd_bottom)))
2214                         RETURN(-EINPROGRESS);
2215
2216                 rc = mdd_changelog_user_register(env, mdd, &data->ioc_u32_1,
2217                                                  data->ioc_inlbuf1,
2218                                                  data->ioc_inlbuf2);
2219                 barrier_exit(mdd->mdd_bottom);
2220                 break;
2221         case OBD_IOC_CHANGELOG_DEREG:
2222                 if (unlikely(!barrier_entry(mdd->mdd_bottom)))
2223                         RETURN(-EINPROGRESS);
2224
2225                 rc = mdd_changelog_user_deregister(env, mdd, &data->ioc_u32_1,
2226                                                    data->ioc_inlbuf1);
2227
2228                 barrier_exit(mdd->mdd_bottom);
2229                 break;
2230         default:
2231                 rc = -ENOTTY;
2232         }
2233
2234         RETURN(rc);
2235 }
2236
2237 /* type constructor/destructor: mdd_type_init, mdd_type_fini */
2238 LU_TYPE_INIT_FINI(mdd, &mdd_thread_key);
2239
2240 static const struct md_device_operations mdd_ops = {
2241         .mdo_statfs         = mdd_statfs,
2242         .mdo_root_get       = mdd_root_get,
2243         .mdo_llog_ctxt_get  = mdd_llog_ctxt_get,
2244         .mdo_iocontrol      = mdd_iocontrol,
2245         .mdo_dtconf_get     = mdd_dtconf_get,
2246 };
2247
2248 static const struct lu_device_type_operations mdd_device_type_ops = {
2249         .ldto_init              = mdd_type_init,
2250         .ldto_fini              = mdd_type_fini,
2251
2252         .ldto_start             = mdd_type_start,
2253         .ldto_stop              = mdd_type_stop,
2254
2255         .ldto_device_alloc      = mdd_device_alloc,
2256         .ldto_device_free       = mdd_device_free,
2257
2258         .ldto_device_fini       = mdd_device_fini
2259 };
2260
2261 static struct lu_device_type mdd_device_type = {
2262         .ldt_tags     = LU_DEVICE_MD,
2263         .ldt_name     = LUSTRE_MDD_NAME,
2264         .ldt_ops      = &mdd_device_type_ops,
2265         .ldt_ctx_tags = LCT_MD_THREAD
2266 };
2267
2268 /* context key constructor: mdd_key_init */
2269 LU_KEY_INIT(mdd, struct mdd_thread_info);
2270
2271 static void mdd_key_fini(const struct lu_context *ctx,
2272                          struct lu_context_key *key, void *data)
2273 {
2274         struct mdd_thread_info *info = data;
2275
2276         lu_buf_free(&info->mdi_big_buf);
2277         lu_buf_free(&info->mdi_link_buf);
2278         lu_buf_free(&info->mdi_xattr_buf);
2279         lu_buf_free(&info->mdi_chlg_buf);
2280
2281         OBD_FREE_PTR(info);
2282 }
2283
2284 /* context key: mdd_thread_key */
2285 LU_CONTEXT_KEY_DEFINE(mdd, LCT_MD_THREAD);
2286
2287 int mdd_generic_thread_start(struct mdd_generic_thread *thread,
2288                              int (*func)(void *), void *data, char *name)
2289 {
2290         struct task_struct      *task;
2291
2292         LASSERT(thread->mgt_init == false);
2293         init_completion(&thread->mgt_started);
2294         init_completion(&thread->mgt_finished);
2295         thread->mgt_data = data;
2296         thread->mgt_abort = false;
2297         thread->mgt_init = true;
2298
2299         task = kthread_run(func, thread, name);
2300         if (IS_ERR(task)) {
2301                 complete(&thread->mgt_finished);
2302                 return PTR_ERR(task);
2303         }
2304         wait_for_completion(&thread->mgt_started);
2305         return 0;
2306 }
2307
2308 void mdd_generic_thread_stop(struct mdd_generic_thread *thread)
2309 {
2310         if (thread->mgt_init == true) {
2311                 thread->mgt_abort = true;
2312                 wait_for_completion(&thread->mgt_finished);
2313         }
2314 }
2315
2316 static int __init mdd_init(void)
2317 {
2318         int rc;
2319
2320         rc = lu_kmem_init(mdd_caches);
2321         if (rc)
2322                 return rc;
2323
2324         changelog_orig_logops = llog_common_cat_ops;
2325         changelog_orig_logops.lop_write_rec = mdd_changelog_write_rec;
2326
2327         rc = class_register_type(&mdd_obd_device_ops, NULL, false,
2328                                  LUSTRE_MDD_NAME, &mdd_device_type);
2329         if (rc)
2330                 lu_kmem_fini(mdd_caches);
2331         return rc;
2332 }
2333
2334 static void __exit mdd_exit(void)
2335 {
2336         class_unregister_type(LUSTRE_MDD_NAME);
2337         lu_kmem_fini(mdd_caches);
2338 }
2339
2340 MODULE_AUTHOR("OpenSFS, Inc. <http://www.lustre.org/>");
2341 MODULE_DESCRIPTION("Lustre Meta-data Device Driver ("LUSTRE_MDD_NAME")");
2342 MODULE_VERSION(LUSTRE_VERSION_STRING);
2343 MODULE_LICENSE("GPL");
2344
2345 module_init(mdd_init);
2346 module_exit(mdd_exit);