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