Whamcloud - gitweb
7b0524b4b0a56ac0e25605649c871cb4ad674091
[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.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2011, 2013, Intel Corporation.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  *
36  * lustre/mdd/mdd_device.c
37  *
38  * Lustre Metadata Server (mdd) routines
39  *
40  * Author: Wang Di <wangdi@clusterfs.com>
41  */
42
43 #define DEBUG_SUBSYSTEM S_MDS
44
45 #include <linux/module.h>
46 #include <obd_class.h>
47 #include <lustre_mds.h>
48 #include <obd_support.h>
49 #include <lu_object.h>
50 #include <lustre_param.h>
51 #include <lustre_fid.h>
52
53 #include "mdd_internal.h"
54
55 const struct md_device_operations mdd_ops;
56 static struct lu_device_type mdd_device_type;
57
58 static const char mdd_root_dir_name[] = "ROOT";
59 static const char mdd_obf_dir_name[] = "fid";
60
61 /* Slab for MDD object allocation */
62 cfs_mem_cache_t *mdd_object_kmem;
63
64 static struct lu_kmem_descr mdd_caches[] = {
65         {
66                 .ckd_cache = &mdd_object_kmem,
67                 .ckd_name  = "mdd_obj",
68                 .ckd_size  = sizeof(struct mdd_object)
69         },
70         {
71                 .ckd_cache = NULL
72         }
73 };
74
75 static int mdd_connect_to_next(const struct lu_env *env, struct mdd_device *m,
76                                const char *nextdev)
77 {
78         struct obd_connect_data *data = NULL;
79         struct lu_device        *lud = mdd2lu_dev(m);
80         struct obd_device       *obd;
81         int                      rc;
82         ENTRY;
83
84         LASSERT(m->mdd_child_exp == NULL);
85
86         OBD_ALLOC(data, sizeof(*data));
87         if (data == NULL)
88                 GOTO(out, rc = -ENOMEM);
89
90         obd = class_name2obd(nextdev);
91         if (obd == NULL) {
92                 CERROR("can't locate next device: %s\n", nextdev);
93                 GOTO(out, rc = -ENOTCONN);
94         }
95
96         data->ocd_connect_flags = OBD_CONNECT_VERSION;
97         data->ocd_version = LUSTRE_VERSION_CODE;
98
99         rc = obd_connect(NULL, &m->mdd_child_exp, obd, &obd->obd_uuid, data, NULL);
100         if (rc) {
101                 CERROR("cannot connect to next dev %s (%d)\n", nextdev, rc);
102                 GOTO(out, rc);
103         }
104
105         lud->ld_site = m->mdd_child_exp->exp_obd->obd_lu_dev->ld_site;
106         LASSERT(lud->ld_site);
107         m->mdd_child = lu2dt_dev(m->mdd_child_exp->exp_obd->obd_lu_dev);
108         m->mdd_bottom = lu2dt_dev(lud->ld_site->ls_bottom_dev);
109         lu_dev_add_linkage(lud->ld_site, lud);
110
111 out:
112         if (data)
113                 OBD_FREE(data, sizeof(*data));
114         RETURN(rc);
115 }
116
117 static int mdd_init0(const struct lu_env *env, struct mdd_device *mdd,
118                 struct lu_device_type *t, struct lustre_cfg *lcfg)
119 {
120         int rc;
121         ENTRY;
122
123         mdd->mdd_md_dev.md_lu_dev.ld_ops = &mdd_lu_ops;
124         mdd->mdd_md_dev.md_ops = &mdd_ops;
125
126         rc = mdd_connect_to_next(env, mdd, lustre_cfg_string(lcfg, 3));
127         if (rc)
128                 RETURN(rc);
129
130         mdd->mdd_atime_diff = MAX_ATIME_DIFF;
131         /* sync permission changes */
132         mdd->mdd_sync_permission = 1;
133
134         dt_conf_get(env, mdd->mdd_child, &mdd->mdd_dt_conf);
135
136         /* we are using service name but not mdd obd name
137          * for compatibility reasons.
138          * It is passed from MDT in lustre_cfg[2] buffer */
139         rc = mdd_procfs_init(mdd, lustre_cfg_string(lcfg, 2));
140         if (rc < 0)
141                 obd_disconnect(mdd->mdd_child_exp);
142
143         RETURN(rc);
144 }
145
146 static struct lu_device *mdd_device_fini(const struct lu_env *env,
147                                          struct lu_device *d)
148 {
149         struct mdd_device *mdd = lu2mdd_dev(d);
150         int rc;
151
152         if (d->ld_site)
153                 lu_dev_del_linkage(d->ld_site, d);
154
155         rc = mdd_procfs_fini(mdd);
156         if (rc) {
157                 CERROR("proc fini error %d \n", rc);
158                 return ERR_PTR(rc);
159         }
160         return NULL;
161 }
162
163 static int changelog_init_cb(const struct lu_env *env, struct llog_handle *llh,
164                              struct llog_rec_hdr *hdr, void *data)
165 {
166         struct mdd_device *mdd = (struct mdd_device *)data;
167         struct llog_changelog_rec *rec = (struct llog_changelog_rec *)hdr;
168
169         LASSERT(llh->lgh_hdr->llh_flags & LLOG_F_IS_PLAIN);
170         LASSERT(rec->cr_hdr.lrh_type == CHANGELOG_REC);
171
172         CDEBUG(D_INFO,
173                "seeing record at index %d/%d/"LPU64" t=%x %.*s in log"
174                DOSTID"\n", hdr->lrh_index, rec->cr_hdr.lrh_index,
175                rec->cr.cr_index, rec->cr.cr_type, rec->cr.cr_namelen,
176                rec->cr.cr_name, POSTID(&llh->lgh_id.lgl_oi));
177
178         mdd->mdd_cl.mc_index = rec->cr.cr_index;
179         return LLOG_PROC_BREAK;
180 }
181
182 static int changelog_user_init_cb(const struct lu_env *env,
183                                   struct llog_handle *llh,
184                                   struct llog_rec_hdr *hdr, void *data)
185 {
186         struct mdd_device *mdd = (struct mdd_device *)data;
187         struct llog_changelog_user_rec *rec =
188                 (struct llog_changelog_user_rec *)hdr;
189
190         LASSERT(llh->lgh_hdr->llh_flags & LLOG_F_IS_PLAIN);
191         LASSERT(rec->cur_hdr.lrh_type == CHANGELOG_USER_REC);
192
193         CDEBUG(D_INFO, "seeing user at index %d/%d id=%d endrec="LPU64
194                " in log "DOSTID"\n", hdr->lrh_index, rec->cur_hdr.lrh_index,
195                rec->cur_id, rec->cur_endrec, POSTID(&llh->lgh_id.lgl_oi));
196
197         spin_lock(&mdd->mdd_cl.mc_user_lock);
198         mdd->mdd_cl.mc_lastuser = rec->cur_id;
199         spin_unlock(&mdd->mdd_cl.mc_user_lock);
200
201         return LLOG_PROC_BREAK;
202 }
203
204 static int llog_changelog_cancel_cb(const struct lu_env *env,
205                                     struct llog_handle *llh,
206                                     struct llog_rec_hdr *hdr, void *data)
207 {
208         struct llog_changelog_rec *rec = (struct llog_changelog_rec *)hdr;
209         struct llog_cookie       cookie;
210         long long                endrec = *(long long *)data;
211         int                      rc;
212
213         ENTRY;
214
215         /* This is always a (sub)log, not the catalog */
216         LASSERT(llh->lgh_hdr->llh_flags & LLOG_F_IS_PLAIN);
217
218         if (rec->cr.cr_index > endrec)
219                 /* records are in order, so we're done */
220                 RETURN(LLOG_PROC_BREAK);
221
222         cookie.lgc_lgl = llh->lgh_id;
223         cookie.lgc_index = hdr->lrh_index;
224
225         /* cancel them one at a time.  I suppose we could store up the cookies
226          * and cancel them all at once; probably more efficient, but this is
227          * done as a user call, so who cares... */
228         rc = llog_cat_cancel_records(env, llh->u.phd.phd_cat_handle, 1,
229                                      &cookie);
230         RETURN(rc < 0 ? rc : 0);
231 }
232
233 static int llog_changelog_cancel(const struct lu_env *env,
234                                  struct llog_ctxt *ctxt,
235                                  struct lov_stripe_md *lsm, int count,
236                                  struct llog_cookie *cookies, int flags)
237 {
238         struct llog_handle      *cathandle = ctxt->loc_handle;
239         int                      rc;
240
241         ENTRY;
242
243         /* This should only be called with the catalog handle */
244         LASSERT(cathandle->lgh_hdr->llh_flags & LLOG_F_IS_CAT);
245
246         rc = llog_cat_process(env, cathandle, llog_changelog_cancel_cb,
247                               (void *)cookies, 0, 0);
248         if (rc >= 0)
249                 /* 0 or 1 means we're done */
250                 rc = 0;
251         else
252                 CERROR("%s: cancel idx %u of catalog "DOSTID" rc=%d\n",
253                        ctxt->loc_obd->obd_name, cathandle->lgh_last_idx,
254                        POSTID(&cathandle->lgh_id.lgl_oi), rc);
255
256         RETURN(rc);
257 }
258
259 static struct llog_operations changelog_orig_logops;
260
261 int mdd_changelog_on(const struct lu_env *env, struct mdd_device *mdd, int on);
262
263 static int mdd_changelog_llog_init(const struct lu_env *env,
264                                    struct mdd_device *mdd)
265 {
266         struct obd_device       *obd = mdd2obd_dev(mdd);
267         struct llog_ctxt        *ctxt = NULL, *uctxt = NULL;
268         int                      rc;
269
270         ENTRY;
271
272         /* LU-2844 mdd setup failure should not cause umount oops */
273         if (OBD_FAIL_CHECK(OBD_FAIL_MDS_CHANGELOG_INIT))
274                 RETURN(-EIO);
275
276         OBD_SET_CTXT_MAGIC(&obd->obd_lvfs_ctxt);
277         obd->obd_lvfs_ctxt.dt = mdd->mdd_bottom;
278         rc = llog_setup(env, obd, &obd->obd_olg, LLOG_CHANGELOG_ORIG_CTXT,
279                         obd, &changelog_orig_logops);
280         if (rc) {
281                 CERROR("%s: changelog llog setup failed: rc = %d\n",
282                        obd->obd_name, rc);
283                 RETURN(rc);
284         }
285
286         ctxt = llog_get_context(obd, LLOG_CHANGELOG_ORIG_CTXT);
287         LASSERT(ctxt);
288
289         rc = llog_open_create(env, ctxt, &ctxt->loc_handle, NULL,
290                               CHANGELOG_CATALOG);
291         if (rc)
292                 GOTO(out_cleanup, rc);
293
294         rc = llog_cat_init_and_process(env, ctxt->loc_handle);
295         if (rc)
296                 GOTO(out_close, rc);
297
298         rc = llog_cat_reverse_process(env, ctxt->loc_handle,
299                                       changelog_init_cb, mdd);
300
301         if (rc < 0) {
302                 CERROR("%s: changelog init failed: rc = %d\n", obd->obd_name,
303                        rc);
304                 GOTO(out_close, rc);
305         }
306
307         CDEBUG(D_IOCTL, "changelog starting index="LPU64"\n",
308                mdd->mdd_cl.mc_index);
309
310         /* setup user changelog */
311         rc = llog_setup(env, obd, &obd->obd_olg, LLOG_CHANGELOG_USER_ORIG_CTXT,
312                         obd, &changelog_orig_logops);
313         if (rc) {
314                 CERROR("%s: changelog users llog setup failed: rc = %d\n",
315                        obd->obd_name, rc);
316                 GOTO(out_close, rc);
317         }
318
319         uctxt = llog_get_context(obd, LLOG_CHANGELOG_USER_ORIG_CTXT);
320         LASSERT(ctxt);
321
322         rc = llog_open_create(env, uctxt, &uctxt->loc_handle, NULL,
323                               CHANGELOG_USERS);
324         if (rc)
325                 GOTO(out_ucleanup, rc);
326
327         uctxt->loc_handle->lgh_logops->lop_add = llog_cat_add_rec;
328         uctxt->loc_handle->lgh_logops->lop_declare_add = llog_cat_declare_add_rec;
329
330         rc = llog_cat_init_and_process(env, uctxt->loc_handle);
331         if (rc)
332                 GOTO(out_uclose, rc);
333
334         rc = llog_cat_reverse_process(env, uctxt->loc_handle,
335                                       changelog_user_init_cb, mdd);
336         if (rc < 0) {
337                 CERROR("%s: changelog user init failed: rc = %d\n",
338                        obd->obd_name, rc);
339                 GOTO(out_uclose, rc);
340         }
341
342         /* If we have registered users, assume we want changelogs on */
343         if (mdd->mdd_cl.mc_lastuser > 0) {
344                 rc = mdd_changelog_on(env, mdd, 1);
345                 if (rc < 0)
346                         GOTO(out_uclose, rc);
347         }
348         llog_ctxt_put(ctxt);
349         llog_ctxt_put(uctxt);
350         RETURN(0);
351 out_uclose:
352         llog_cat_close(env, uctxt->loc_handle);
353 out_ucleanup:
354         llog_cleanup(env, uctxt);
355 out_close:
356         llog_cat_close(env, ctxt->loc_handle);
357 out_cleanup:
358         llog_cleanup(env, ctxt);
359         return rc;
360 }
361
362 static int mdd_changelog_init(const struct lu_env *env, struct mdd_device *mdd)
363 {
364         struct obd_device       *obd = mdd2obd_dev(mdd);
365         int                      rc;
366
367         mdd->mdd_cl.mc_index = 0;
368         spin_lock_init(&mdd->mdd_cl.mc_lock);
369         mdd->mdd_cl.mc_starttime = cfs_time_current_64();
370         mdd->mdd_cl.mc_flags = 0; /* off by default */
371         mdd->mdd_cl.mc_mask = CHANGELOG_DEFMASK;
372         spin_lock_init(&mdd->mdd_cl.mc_user_lock);
373         mdd->mdd_cl.mc_lastuser = 0;
374
375         rc = mdd_changelog_llog_init(env, mdd);
376         if (rc) {
377                 CERROR("%s: changelog setup during init failed: rc = %d\n",
378                        obd->obd_name, rc);
379                 mdd->mdd_cl.mc_flags |= CLM_ERR;
380         }
381
382         return rc;
383 }
384
385 static void mdd_changelog_fini(const struct lu_env *env,
386                                struct mdd_device *mdd)
387 {
388         struct obd_device       *obd = mdd2obd_dev(mdd);
389         struct llog_ctxt        *ctxt;
390
391         mdd->mdd_cl.mc_flags = 0;
392
393         ctxt = llog_get_context(obd, LLOG_CHANGELOG_ORIG_CTXT);
394         if (ctxt) {
395                 llog_cat_close(env, ctxt->loc_handle);
396                 llog_cleanup(env, ctxt);
397         }
398         ctxt = llog_get_context(obd, LLOG_CHANGELOG_USER_ORIG_CTXT);
399         if (ctxt) {
400                 llog_cat_close(env, ctxt->loc_handle);
401                 llog_cleanup(env, ctxt);
402         }
403 }
404
405 int mdd_changelog_write_header(const struct lu_env *env,
406                                struct mdd_device *mdd, int markerflags);
407
408 /* Start / stop recording */
409 int mdd_changelog_on(const struct lu_env *env, struct mdd_device *mdd, int on)
410 {
411         int rc = 0;
412
413         if ((on == 1) && ((mdd->mdd_cl.mc_flags & CLM_ON) == 0)) {
414                 LCONSOLE_INFO("%s: changelog on\n", mdd2obd_dev(mdd)->obd_name);
415                 if (mdd->mdd_cl.mc_flags & CLM_ERR) {
416                         CERROR("Changelogs cannot be enabled due to error "
417                                "condition (see %s log).\n",
418                                mdd2obd_dev(mdd)->obd_name);
419                         rc = -ESRCH;
420                 } else {
421                         spin_lock(&mdd->mdd_cl.mc_lock);
422                         mdd->mdd_cl.mc_flags |= CLM_ON;
423                         spin_unlock(&mdd->mdd_cl.mc_lock);
424                         rc = mdd_changelog_write_header(env, mdd, CLM_START);
425                 }
426         } else if ((on == 0) && ((mdd->mdd_cl.mc_flags & CLM_ON) == CLM_ON)) {
427                 LCONSOLE_INFO("%s: changelog off\n",mdd2obd_dev(mdd)->obd_name);
428                 rc = mdd_changelog_write_header(env, mdd, CLM_FINI);
429                 spin_lock(&mdd->mdd_cl.mc_lock);
430                 mdd->mdd_cl.mc_flags &= ~CLM_ON;
431                 spin_unlock(&mdd->mdd_cl.mc_lock);
432         }
433         return rc;
434 }
435
436 /** Remove entries with indicies up to and including \a endrec from the
437  *  changelog
438  * \param mdd
439  * \param endrec
440  * \retval 0 ok
441  */
442 int mdd_changelog_llog_cancel(const struct lu_env *env,
443                               struct mdd_device *mdd, long long endrec)
444 {
445         struct obd_device *obd = mdd2obd_dev(mdd);
446         struct llog_ctxt *ctxt;
447         long long unsigned cur;
448         int rc;
449
450         ctxt = llog_get_context(obd, LLOG_CHANGELOG_ORIG_CTXT);
451         if (ctxt == NULL)
452                 return -ENXIO;
453
454         spin_lock(&mdd->mdd_cl.mc_lock);
455         cur = (long long)mdd->mdd_cl.mc_index;
456         spin_unlock(&mdd->mdd_cl.mc_lock);
457         if (endrec > cur)
458                 endrec = cur;
459
460         /* purge to "0" is shorthand for everything */
461         if (endrec == 0)
462                 endrec = cur;
463
464         /* If purging all records, write a header entry so we don't have an
465            empty catalog and we're sure to have a valid starting index next
466            time.  In case of crash, we just restart with old log so we're
467            allright. */
468         if (endrec == cur) {
469                 /* XXX: transaction is started by llog itself */
470                 rc = mdd_changelog_write_header(env, mdd, CLM_PURGE);
471                 if (rc)
472                       goto out;
473         }
474
475         /* Some records were purged, so reset repeat-access time (so we
476            record new mtime update records, so users can see a file has been
477            changed since the last purge) */
478         mdd->mdd_cl.mc_starttime = cfs_time_current_64();
479
480         rc = llog_cancel(env, ctxt, NULL, 1, (struct llog_cookie *)&endrec, 0);
481 out:
482         llog_ctxt_put(ctxt);
483         return rc;
484 }
485
486 /** Add a CL_MARK record to the changelog
487  * \param mdd
488  * \param markerflags - CLM_*
489  * \retval 0 ok
490  */
491 int mdd_changelog_write_header(const struct lu_env *env,
492                                struct mdd_device *mdd, int markerflags)
493 {
494         struct obd_device               *obd = mdd2obd_dev(mdd);
495         struct llog_changelog_rec       *rec;
496         struct lu_buf                   *buf;
497         struct llog_ctxt                *ctxt;
498         int                              reclen;
499         int                              len = strlen(obd->obd_name);
500         int                              rc;
501
502         ENTRY;
503
504         if (mdd->mdd_cl.mc_mask & (1 << CL_MARK)) {
505                 mdd->mdd_cl.mc_starttime = cfs_time_current_64();
506                 RETURN(0);
507         }
508
509         reclen = llog_data_len(sizeof(*rec) + len);
510         buf = lu_buf_check_and_alloc(&mdd_env_info(env)->mti_big_buf, reclen);
511         if (buf->lb_buf == NULL)
512                 RETURN(-ENOMEM);
513         rec = buf->lb_buf;
514
515         rec->cr.cr_flags = CLF_VERSION;
516         rec->cr.cr_type = CL_MARK;
517         rec->cr.cr_namelen = len;
518         memcpy(rec->cr.cr_name, obd->obd_name, rec->cr.cr_namelen);
519         /* Status and action flags */
520         rec->cr.cr_markerflags = mdd->mdd_cl.mc_flags | markerflags;
521         rec->cr_hdr.lrh_len = llog_data_len(sizeof(*rec) + rec->cr.cr_namelen);
522         rec->cr_hdr.lrh_type = CHANGELOG_REC;
523         rec->cr.cr_time = cl_time();
524         spin_lock(&mdd->mdd_cl.mc_lock);
525         rec->cr.cr_index = ++mdd->mdd_cl.mc_index;
526         spin_unlock(&mdd->mdd_cl.mc_lock);
527
528         ctxt = llog_get_context(obd, LLOG_CHANGELOG_ORIG_CTXT);
529         LASSERT(ctxt);
530
531         rc = llog_cat_add(env, ctxt->loc_handle, &rec->cr_hdr, NULL, NULL);
532         if (rc > 0)
533                 rc = 0;
534         llog_ctxt_put(ctxt);
535
536         /* assume on or off event; reset repeat-access time */
537         mdd->mdd_cl.mc_starttime = cfs_time_current_64();
538         RETURN(rc);
539 }
540
541 /**
542  * Lookup method for "fid" object. Only filenames with correct SEQ:OID format
543  * are valid. We also check if object with passed fid exists or not.
544  */
545 static int obf_lookup(const struct lu_env *env, struct md_object *p,
546                       const struct lu_name *lname, struct lu_fid *f,
547                       struct md_op_spec *spec)
548 {
549         char *name = (char *)lname->ln_name;
550         struct mdd_device *mdd = mdo2mdd(p);
551         struct mdd_object *child;
552         int rc = 0;
553
554         while (*name == '[')
555                 name++;
556
557         sscanf(name, SFID, RFID(f));
558         if (!fid_is_sane(f)) {
559                 CWARN("%s: bad FID format [%s], should be "DFID"\n",
560                       mdd2obd_dev(mdd)->obd_name, lname->ln_name,
561                       (__u64)FID_SEQ_NORMAL, 1, 0);
562                 GOTO(out, rc = -EINVAL);
563         }
564
565         if (!fid_is_norm(f) && !fid_is_igif(f)) {
566                 CWARN("%s: "DFID" is invalid, sequence should be "
567                       ">= "LPX64" or within ["LPX64","LPX64"].\n",
568                       mdd2obd_dev(mdd)->obd_name, PFID(f),
569                       (__u64)FID_SEQ_NORMAL, (__u64)FID_SEQ_IGIF,
570                       (__u64)FID_SEQ_IGIF_MAX);
571                 GOTO(out, rc = -EINVAL);
572         }
573
574         /* Check if object with this fid exists */
575         child = mdd_object_find(env, mdd, f);
576         if (child == NULL)
577                 GOTO(out, rc = 0);
578         if (IS_ERR(child))
579                 GOTO(out, rc = PTR_ERR(child));
580
581         if (mdd_object_exists(child) == 0)
582                 rc = -ENOENT;
583
584         mdd_object_put(env, child);
585
586 out:
587         return rc;
588 }
589
590 static int obf_create(const struct lu_env *env, struct md_object *pobj,
591                       const struct lu_name *lname, struct md_object *child,
592                       struct md_op_spec *spec, struct md_attr* ma)
593 {
594         return -EPERM;
595 }
596
597 static int obf_rename(const struct lu_env *env,
598                       struct md_object *src_pobj, struct md_object *tgt_pobj,
599                       const struct lu_fid *lf, const struct lu_name *lsname,
600                       struct md_object *tobj, const struct lu_name *ltname,
601                       struct md_attr *ma)
602 {
603         return -EPERM;
604 }
605
606 static int obf_link(const struct lu_env *env, struct md_object *tgt_obj,
607                     struct md_object *src_obj, const struct lu_name *lname,
608                     struct md_attr *ma)
609 {
610         return -EPERM;
611 }
612
613 static int obf_unlink(const struct lu_env *env, struct md_object *pobj,
614                       struct md_object *cobj, const struct lu_name *lname,
615                       struct md_attr *ma, int no_name)
616 {
617         return -EPERM;
618 }
619
620 static struct md_dir_operations mdd_obf_dir_ops = {
621         .mdo_lookup = obf_lookup,
622         .mdo_create = obf_create,
623         .mdo_rename = obf_rename,
624         .mdo_link   = obf_link,
625         .mdo_unlink = obf_unlink
626 };
627
628 static struct md_object *mdo_locate(const struct lu_env *env,
629                                     struct md_device *md,
630                                     const struct lu_fid *fid)
631 {
632         struct lu_object *obj;
633         struct md_object *mdo;
634
635         obj = lu_object_find(env, &md->md_lu_dev, fid, NULL);
636         if (!IS_ERR(obj)) {
637                 obj = lu_object_locate(obj->lo_header, md->md_lu_dev.ld_type);
638                 LASSERT(obj != NULL);
639                 mdo = lu2md(obj);
640         } else {
641                 mdo = ERR_PTR(PTR_ERR(obj));
642         }
643         return mdo;
644 }
645
646 /**
647  * Create special in-memory "fid" object for open-by-fid.
648  */
649 static int mdd_obf_setup(const struct lu_env *env, struct mdd_device *m)
650 {
651         struct md_object        *mdo;
652         struct mdd_object       *mdd_obf;
653         struct lu_fid            fid = LU_OBF_FID;
654         int                      rc;
655
656         rc = mdd_local_file_create(env, m, mdd_object_fid(m->mdd_dot_lustre),
657                                    mdd_obf_dir_name, S_IFDIR | S_IXUSR, &fid);
658         if (rc < 0)
659                 RETURN(rc);
660
661         mdo = mdo_locate(env, &m->mdd_md_dev, &fid);
662         if (IS_ERR(mdo))
663                 RETURN(PTR_ERR(mdo));
664
665         LASSERT(lu_object_exists(&mdo->mo_lu));
666
667         mdd_obf = md2mdd_obj(mdo);
668         mdd_obf->mod_obj.mo_dir_ops = &mdd_obf_dir_ops;
669         m->mdd_dot_lustre_objs.mdd_obf = mdd_obf;
670
671         return 0;
672 }
673
674 /** Setup ".lustre" directory object */
675 static int mdd_dot_lustre_setup(const struct lu_env *env, struct mdd_device *m)
676 {
677         struct md_object        *mdo;
678         struct lu_fid            fid;
679         int                      rc;
680
681         ENTRY;
682         /* Create ".lustre" directory in ROOT. */
683         fid = LU_DOT_LUSTRE_FID;
684         rc = mdd_local_file_create(env, m, &m->mdd_root_fid,
685                                    dot_lustre_name,
686                                    S_IFDIR | S_IRUGO | S_IWUSR | S_IXUGO,
687                                    &fid);
688         if (rc < 0)
689                 RETURN(rc);
690         mdo = mdo_locate(env, &m->mdd_md_dev, &fid);
691         if (IS_ERR(mdo))
692                 RETURN(PTR_ERR(mdo));
693         LASSERT(lu_object_exists(&mdo->mo_lu));
694
695         m->mdd_dot_lustre = md2mdd_obj(mdo);
696
697         rc = mdd_obf_setup(env, m);
698         if (rc) {
699                 CERROR("%s: error initializing \"fid\" object: rc = %d.\n",
700                        mdd2obd_dev(m)->obd_name, rc);
701                 GOTO(out, rc);
702         }
703         RETURN(0);
704 out:
705         mdd_object_put(env, m->mdd_dot_lustre);
706         m->mdd_dot_lustre = NULL;
707         return rc;
708 }
709
710 static void mdd_device_shutdown(const struct lu_env *env, struct mdd_device *m,
711                                 struct lustre_cfg *cfg)
712 {
713         mdd_lfsck_cleanup(env, m);
714         mdd_changelog_fini(env, m);
715         orph_index_fini(env, m);
716         if (m->mdd_dot_lustre_objs.mdd_obf)
717                 mdd_object_put(env, m->mdd_dot_lustre_objs.mdd_obf);
718         if (m->mdd_dot_lustre)
719                 mdd_object_put(env, m->mdd_dot_lustre);
720         if (m->mdd_los != NULL)
721                 local_oid_storage_fini(env, m->mdd_los);
722         lu_site_purge(env, mdd2lu_dev(m)->ld_site, ~0);
723
724         if (m->mdd_child_exp)
725                 obd_disconnect(m->mdd_child_exp);
726 }
727
728 static int mdd_process_config(const struct lu_env *env,
729                               struct lu_device *d, struct lustre_cfg *cfg)
730 {
731         struct mdd_device *m    = lu2mdd_dev(d);
732         struct dt_device  *dt   = m->mdd_child;
733         struct lu_device  *next = &dt->dd_lu_dev;
734         int rc;
735         ENTRY;
736
737         switch (cfg->lcfg_command) {
738         case LCFG_PARAM: {
739                 struct lprocfs_static_vars lvars;
740
741                 lprocfs_mdd_init_vars(&lvars);
742                 rc = class_process_proc_param(PARAM_MDD, lvars.obd_vars, cfg,m);
743                 if (rc > 0 || rc == -ENOSYS)
744                         /* we don't understand; pass it on */
745                         rc = next->ld_ops->ldo_process_config(env, next, cfg);
746                 break;
747         }
748         case LCFG_SETUP:
749                 rc = next->ld_ops->ldo_process_config(env, next, cfg);
750                 if (rc)
751                         GOTO(out, rc);
752                 dt_conf_get(env, dt, &m->mdd_dt_conf);
753                 break;
754         case LCFG_CLEANUP:
755                 rc = next->ld_ops->ldo_process_config(env, next, cfg);
756                 lu_dev_del_linkage(d->ld_site, d);
757                 mdd_device_shutdown(env, m, cfg);
758                 break;
759         default:
760                 rc = next->ld_ops->ldo_process_config(env, next, cfg);
761                 break;
762         }
763 out:
764         RETURN(rc);
765 }
766
767 static int mdd_recovery_complete(const struct lu_env *env,
768                                  struct lu_device *d)
769 {
770         struct mdd_device *mdd = lu2mdd_dev(d);
771         struct lu_device *next;
772         int rc;
773         ENTRY;
774
775         LASSERT(mdd != NULL);
776         next = &mdd->mdd_child->dd_lu_dev;
777
778         /* XXX: orphans handling. */
779         __mdd_orphan_cleanup(env, mdd);
780         rc = next->ld_ops->ldo_recovery_complete(env, next);
781
782         RETURN(rc);
783 }
784
785 int mdd_local_file_create(const struct lu_env *env, struct mdd_device *mdd,
786                           const struct lu_fid *pfid, const char *name, __u32 mode,
787                           struct lu_fid *fid)
788 {
789         struct dt_object        *parent, *dto;
790         int                      rc;
791
792         ENTRY;
793
794         LASSERT(!fid_is_zero(pfid));
795         parent = dt_locate(env, mdd->mdd_bottom, pfid);
796         if (unlikely(IS_ERR(parent)))
797                 RETURN(PTR_ERR(parent));
798
799         /* create local file/dir, if @fid is passed then try to use it */
800         if (fid_is_zero(fid))
801                 dto = local_file_find_or_create(env, mdd->mdd_los, parent,
802                                                 name, mode);
803         else
804                 dto = local_file_find_or_create_with_fid(env, mdd->mdd_bottom,
805                                                          fid, parent, name,
806                                                          mode);
807         if (IS_ERR(dto))
808                 GOTO(out_put, rc = PTR_ERR(dto));
809         *fid = *lu_object_fid(&dto->do_lu);
810         /* since stack is not fully set up the local_storage uses own stack
811          * and we should drop its object from cache */
812         lu_object_put_nocache(env, &dto->do_lu);
813         EXIT;
814 out_put:
815         lu_object_put(env, &parent->do_lu);
816         return 0;
817 }
818
819 static int mdd_prepare(const struct lu_env *env,
820                        struct lu_device *pdev,
821                        struct lu_device *cdev)
822 {
823         struct mdd_device       *mdd = lu2mdd_dev(cdev);
824         struct lu_device        *next = &mdd->mdd_child->dd_lu_dev;
825         struct lu_fid            fid;
826         int                      rc;
827
828         ENTRY;
829
830         rc = next->ld_ops->ldo_prepare(env, cdev, next);
831         if (rc)
832                 RETURN(rc);
833
834         /* Setup local dirs */
835         fid.f_seq = FID_SEQ_LOCAL_NAME;
836         fid.f_oid = 1;
837         fid.f_ver = 0;
838         rc = local_oid_storage_init(env, mdd->mdd_bottom, &fid,
839                                     &mdd->mdd_los);
840         if (rc)
841                 RETURN(rc);
842
843         rc = dt_root_get(env, mdd->mdd_child, &mdd->mdd_local_root_fid);
844         if (rc < 0)
845                 GOTO(out_los, rc);
846
847         if (mdd_seq_site(mdd)->ss_node_id == 0) {
848                 lu_root_fid(&fid);
849                 rc = mdd_local_file_create(env, mdd, &mdd->mdd_local_root_fid,
850                                            mdd_root_dir_name, S_IFDIR |
851                                            S_IRUGO | S_IWUSR | S_IXUGO, &fid);
852                 if (rc != 0) {
853                         CERROR("%s: create root fid failed: rc = %d\n",
854                                mdd2obd_dev(mdd)->obd_name, rc);
855                         GOTO(out_los, rc);
856                 }
857                 mdd->mdd_root_fid = fid;
858
859                 rc = mdd_dot_lustre_setup(env, mdd);
860                 if (rc != 0) {
861                         CERROR("%s: initializing .lustre failed: rc = %d\n",
862                                mdd2obd_dev(mdd)->obd_name, rc);
863                         GOTO(out_los, rc);
864                 }
865
866                 rc = mdd_compat_fixes(env, mdd);
867                 if (rc)
868                         GOTO(out_los, rc);
869
870         }
871
872         rc = orph_index_init(env, mdd);
873         if (rc < 0)
874                 GOTO(out_dot, rc);
875
876         rc = mdd_changelog_init(env, mdd);
877         if (rc != 0) {
878                 CERROR("%s: failed to initialize changelog: rc = %d\n",
879                        mdd2obd_dev(mdd)->obd_name, rc);
880                 GOTO(out_orph, rc);
881         }
882
883         rc = mdd_lfsck_setup(env, mdd);
884         if (rc != 0) {
885                 CERROR("%s: failed to initialize lfsck: rc = %d\n",
886                        mdd2obd_dev(mdd)->obd_name, rc);
887                 GOTO(out_changelog, rc);
888         }
889         RETURN(0);
890 out_changelog:
891         mdd_changelog_fini(env, mdd);
892 out_orph:
893         orph_index_fini(env, mdd);
894 out_dot:
895         if (mdd_seq_site(mdd)->ss_node_id == 0) {
896                 mdd_object_put(env, mdd->mdd_dot_lustre);
897                 mdd->mdd_dot_lustre = NULL;
898                 mdd_object_put(env, mdd->mdd_dot_lustre_objs.mdd_obf);
899                 mdd->mdd_dot_lustre_objs.mdd_obf = NULL;
900         }
901 out_los:
902         local_oid_storage_fini(env, mdd->mdd_los);
903         mdd->mdd_los = NULL;
904         return rc;
905 }
906
907 const struct lu_device_operations mdd_lu_ops = {
908         .ldo_object_alloc      = mdd_object_alloc,
909         .ldo_process_config    = mdd_process_config,
910         .ldo_recovery_complete = mdd_recovery_complete,
911         .ldo_prepare           = mdd_prepare,
912 };
913
914 static int mdd_root_get(const struct lu_env *env,
915                         struct md_device *m, struct lu_fid *f)
916 {
917         struct mdd_device *mdd = lu2mdd_dev(&m->md_lu_dev);
918
919         ENTRY;
920         *f = mdd->mdd_root_fid;
921         RETURN(0);
922 }
923
924 /*
925  * No permission check is needed.
926  */
927 static int mdd_statfs(const struct lu_env *env, struct md_device *m,
928                       struct obd_statfs *sfs)
929 {
930         struct mdd_device *mdd = lu2mdd_dev(&m->md_lu_dev);
931         int rc;
932
933         ENTRY;
934
935         rc = mdd_child_ops(mdd)->dt_statfs(env, mdd->mdd_child, sfs);
936
937         RETURN(rc);
938 }
939
940 /*
941  * No permission check is needed.
942  */
943 static int mdd_init_capa_ctxt(const struct lu_env *env, struct md_device *m,
944                               int mode, unsigned long timeout, __u32 alg,
945                               struct lustre_capa_key *keys)
946 {
947         struct mdd_device *mdd = lu2mdd_dev(&m->md_lu_dev);
948         int rc;
949         ENTRY;
950
951         /* need barrier for mds_capa_keys access. */
952
953         rc = mdd_child_ops(mdd)->dt_init_capa_ctxt(env, mdd->mdd_child, mode,
954                                                    timeout, alg, keys);
955         RETURN(rc);
956 }
957
958 static int mdd_update_capa_key(const struct lu_env *env,
959                                struct md_device *m,
960                                struct lustre_capa_key *key)
961 {
962         /* we do not support capabilities ... */
963         return -EINVAL;
964 }
965
966 static int mdd_llog_ctxt_get(const struct lu_env *env, struct md_device *m,
967                              int idx, void **h)
968 {
969         struct mdd_device *mdd = lu2mdd_dev(&m->md_lu_dev);
970
971         *h = llog_group_get_ctxt(&mdd2obd_dev(mdd)->obd_olg, idx);
972         return (*h == NULL ? -ENOENT : 0);
973 }
974
975 static struct lu_device *mdd_device_free(const struct lu_env *env,
976                                          struct lu_device *lu)
977 {
978         struct mdd_device *m = lu2mdd_dev(lu);
979         ENTRY;
980
981         LASSERT(cfs_atomic_read(&lu->ld_ref) == 0);
982         md_device_fini(&m->mdd_md_dev);
983         OBD_FREE_PTR(m);
984         RETURN(NULL);
985 }
986
987 static struct lu_device *mdd_device_alloc(const struct lu_env *env,
988                                           struct lu_device_type *t,
989                                           struct lustre_cfg *lcfg)
990 {
991         struct lu_device  *l;
992         struct mdd_device *m;
993
994         OBD_ALLOC_PTR(m);
995         if (m == NULL) {
996                 l = ERR_PTR(-ENOMEM);
997         } else {
998                 int rc;
999
1000                 l = mdd2lu_dev(m);
1001                 md_device_init(&m->mdd_md_dev, t);
1002                 rc = mdd_init0(env, m, t, lcfg);
1003                 if (rc != 0) {
1004                         mdd_device_free(env, l);
1005                         l = ERR_PTR(rc);
1006                 }
1007         }
1008
1009         return l;
1010 }
1011
1012 /*
1013  * we use exports to track all mdd users
1014  */
1015 static int mdd_obd_connect(const struct lu_env *env, struct obd_export **exp,
1016                            struct obd_device *obd, struct obd_uuid *cluuid,
1017                            struct obd_connect_data *data, void *localdata)
1018 {
1019         struct mdd_device    *mdd = lu2mdd_dev(obd->obd_lu_dev);
1020         struct lustre_handle  conn;
1021         int                   rc;
1022         ENTRY;
1023
1024         CDEBUG(D_CONFIG, "connect #%d\n", mdd->mdd_connects);
1025
1026         rc = class_connect(&conn, obd, cluuid);
1027         if (rc)
1028                 RETURN(rc);
1029
1030         *exp = class_conn2export(&conn);
1031
1032         /* Why should there ever be more than 1 connect? */
1033         LASSERT(mdd->mdd_connects == 0);
1034         mdd->mdd_connects++;
1035
1036         RETURN(0);
1037 }
1038
1039 /*
1040  * once last export (we don't count self-export) disappeared
1041  * mdd can be released
1042  */
1043 static int mdd_obd_disconnect(struct obd_export *exp)
1044 {
1045         struct obd_device *obd = exp->exp_obd;
1046         struct mdd_device *mdd = lu2mdd_dev(obd->obd_lu_dev);
1047         int                rc, release = 0;
1048         ENTRY;
1049
1050         mdd->mdd_connects--;
1051         if (mdd->mdd_connects == 0)
1052                 release = 1;
1053
1054         rc = class_disconnect(exp);
1055
1056         if (rc == 0 && release)
1057                 class_manual_cleanup(obd);
1058         RETURN(rc);
1059 }
1060
1061 static int mdd_obd_health_check(const struct lu_env *env,
1062                                 struct obd_device *obd)
1063 {
1064         struct mdd_device *mdd = lu2mdd_dev(obd->obd_lu_dev);
1065         int                rc;
1066         ENTRY;
1067
1068         LASSERT(mdd);
1069         rc = obd_health_check(env, mdd->mdd_child_exp->exp_obd);
1070         RETURN(rc);
1071 }
1072
1073 static struct obd_ops mdd_obd_device_ops = {
1074         .o_owner        = THIS_MODULE,
1075         .o_connect      = mdd_obd_connect,
1076         .o_disconnect   = mdd_obd_disconnect,
1077         .o_health_check = mdd_obd_health_check
1078 };
1079
1080 /*
1081  * context key constructor/destructor:
1082  * mdd_capainfo_key_init, mdd_capainfo_key_fini
1083  */
1084 LU_KEY_INIT_FINI(mdd_capainfo, struct md_capainfo);
1085
1086 struct lu_context_key mdd_capainfo_key = {
1087         .lct_tags = LCT_SESSION,
1088         .lct_init = mdd_capainfo_key_init,
1089         .lct_fini = mdd_capainfo_key_fini
1090 };
1091
1092 struct md_capainfo *md_capainfo(const struct lu_env *env)
1093 {
1094         /* NB, in mdt_init0 */
1095         if (env->le_ses == NULL)
1096                 return NULL;
1097         return lu_context_key_get(env->le_ses, &mdd_capainfo_key);
1098 }
1099 EXPORT_SYMBOL(md_capainfo);
1100
1101 static int mdd_changelog_user_register(const struct lu_env *env,
1102                                        struct mdd_device *mdd, int *id)
1103 {
1104         struct llog_ctxt *ctxt;
1105         struct llog_changelog_user_rec *rec;
1106         int rc;
1107         ENTRY;
1108
1109         ctxt = llog_get_context(mdd2obd_dev(mdd),
1110                                 LLOG_CHANGELOG_USER_ORIG_CTXT);
1111         if (ctxt == NULL)
1112                 RETURN(-ENXIO);
1113
1114         OBD_ALLOC_PTR(rec);
1115         if (rec == NULL) {
1116                 llog_ctxt_put(ctxt);
1117                 RETURN(-ENOMEM);
1118         }
1119
1120         /* Assume we want it on since somebody registered */
1121         rc = mdd_changelog_on(env, mdd, 1);
1122         if (rc)
1123                 GOTO(out, rc);
1124
1125         rec->cur_hdr.lrh_len = sizeof(*rec);
1126         rec->cur_hdr.lrh_type = CHANGELOG_USER_REC;
1127         spin_lock(&mdd->mdd_cl.mc_user_lock);
1128         if (mdd->mdd_cl.mc_lastuser == (unsigned int)(-1)) {
1129                 spin_unlock(&mdd->mdd_cl.mc_user_lock);
1130                 CERROR("Maximum number of changelog users exceeded!\n");
1131                 GOTO(out, rc = -EOVERFLOW);
1132         }
1133         *id = rec->cur_id = ++mdd->mdd_cl.mc_lastuser;
1134         rec->cur_endrec = mdd->mdd_cl.mc_index;
1135         spin_unlock(&mdd->mdd_cl.mc_user_lock);
1136
1137         rc = llog_cat_add(env, ctxt->loc_handle, &rec->cur_hdr, NULL, NULL);
1138
1139         CDEBUG(D_IOCTL, "Registered changelog user %d\n", *id);
1140 out:
1141         OBD_FREE_PTR(rec);
1142         llog_ctxt_put(ctxt);
1143         RETURN(rc);
1144 }
1145
1146 struct mdd_changelog_user_data {
1147         __u64 mcud_endrec; /**< purge record for this user */
1148         __u64 mcud_minrec; /**< lowest changelog recno still referenced */
1149         __u32 mcud_id;
1150         __u32 mcud_minid;  /**< user id with lowest rec reference */
1151         __u32 mcud_usercount;
1152         unsigned int mcud_found:1;
1153 };
1154 #define MCUD_UNREGISTER -1LL
1155
1156 /** Two things:
1157  * 1. Find the smallest record everyone is willing to purge
1158  * 2. Update the last purgeable record for this user
1159  */
1160 static int mdd_changelog_user_purge_cb(const struct lu_env *env,
1161                                        struct llog_handle *llh,
1162                                        struct llog_rec_hdr *hdr, void *data)
1163 {
1164         struct llog_changelog_user_rec  *rec;
1165         struct mdd_changelog_user_data  *mcud = data;
1166         int                              rc;
1167
1168         ENTRY;
1169
1170         LASSERT(llh->lgh_hdr->llh_flags & LLOG_F_IS_PLAIN);
1171
1172         rec = (struct llog_changelog_user_rec *)hdr;
1173
1174         mcud->mcud_usercount++;
1175
1176         /* If we have a new endrec for this id, use it for the following
1177            min check instead of its old value */
1178         if (rec->cur_id == mcud->mcud_id)
1179                 rec->cur_endrec = max(rec->cur_endrec, mcud->mcud_endrec);
1180
1181         /* Track the minimum referenced record */
1182         if (mcud->mcud_minid == 0 || mcud->mcud_minrec > rec->cur_endrec) {
1183                 mcud->mcud_minid = rec->cur_id;
1184                 mcud->mcud_minrec = rec->cur_endrec;
1185         }
1186
1187         if (rec->cur_id != mcud->mcud_id)
1188                 RETURN(0);
1189
1190         /* Update this user's record */
1191         mcud->mcud_found = 1;
1192
1193         /* Special case: unregister this user */
1194         if (mcud->mcud_endrec == MCUD_UNREGISTER) {
1195                 struct llog_cookie cookie;
1196
1197                 cookie.lgc_lgl = llh->lgh_id;
1198                 cookie.lgc_index = hdr->lrh_index;
1199
1200                 rc = llog_cat_cancel_records(env, llh->u.phd.phd_cat_handle,
1201                                              1, &cookie);
1202                 if (rc == 0)
1203                         mcud->mcud_usercount--;
1204
1205                 RETURN(rc);
1206         }
1207
1208         /* Update the endrec */
1209         CDEBUG(D_IOCTL, "Rewriting changelog user %d endrec to "LPU64"\n",
1210                mcud->mcud_id, rec->cur_endrec);
1211
1212         /* hdr+1 is loc of data */
1213         hdr->lrh_len -= sizeof(*hdr) + sizeof(struct llog_rec_tail);
1214         rc = llog_write(env, llh, hdr, NULL, 0, (void *)(hdr + 1),
1215                         hdr->lrh_index);
1216
1217         RETURN(rc);
1218 }
1219
1220 static int mdd_changelog_user_purge(const struct lu_env *env,
1221                                     struct mdd_device *mdd, int id,
1222                                     long long endrec)
1223 {
1224         struct mdd_changelog_user_data data;
1225         struct llog_ctxt *ctxt;
1226         int rc;
1227         ENTRY;
1228
1229         CDEBUG(D_IOCTL, "Purge request: id=%d, endrec=%lld\n", id, endrec);
1230
1231         data.mcud_id = id;
1232         data.mcud_minid = 0;
1233         data.mcud_minrec = 0;
1234         data.mcud_usercount = 0;
1235         data.mcud_endrec = endrec;
1236         spin_lock(&mdd->mdd_cl.mc_lock);
1237         endrec = mdd->mdd_cl.mc_index;
1238         spin_unlock(&mdd->mdd_cl.mc_lock);
1239         if ((data.mcud_endrec == 0) ||
1240             ((data.mcud_endrec > endrec) &&
1241              (data.mcud_endrec != MCUD_UNREGISTER)))
1242                 data.mcud_endrec = endrec;
1243
1244         ctxt = llog_get_context(mdd2obd_dev(mdd),
1245                                 LLOG_CHANGELOG_USER_ORIG_CTXT);
1246         if (ctxt == NULL)
1247                 return -ENXIO;
1248
1249         LASSERT(ctxt->loc_handle->lgh_hdr->llh_flags & LLOG_F_IS_CAT);
1250
1251         rc = llog_cat_process(env, ctxt->loc_handle,
1252                               mdd_changelog_user_purge_cb, (void *)&data,
1253                               0, 0);
1254         if ((rc >= 0) && (data.mcud_minrec > 0)) {
1255                 CDEBUG(D_IOCTL, "Purging changelog entries up to "LPD64
1256                        ", referenced by "CHANGELOG_USER_PREFIX"%d\n",
1257                        data.mcud_minrec, data.mcud_minid);
1258                 rc = mdd_changelog_llog_cancel(env, mdd, data.mcud_minrec);
1259         } else {
1260                 CWARN("Could not determine changelog records to purge; rc=%d\n",
1261                       rc);
1262         }
1263
1264         llog_ctxt_put(ctxt);
1265
1266         if (!data.mcud_found) {
1267                 CWARN("No entry for user %d.  Last changelog reference is "
1268                       LPD64" by changelog user %d\n", data.mcud_id,
1269                       data.mcud_minrec, data.mcud_minid);
1270                rc = -ENOENT;
1271         }
1272
1273         if (!rc && data.mcud_usercount == 0)
1274                 /* No more users; turn changelogs off */
1275                 rc = mdd_changelog_on(env, mdd, 0);
1276
1277         RETURN (rc);
1278 }
1279
1280 /** mdd_iocontrol
1281  * May be called remotely from mdt_iocontrol_handle or locally from
1282  * mdt_iocontrol. Data may be freeform - remote handling doesn't enforce
1283  * an obd_ioctl_data format (but local ioctl handler does).
1284  * \param cmd - ioc
1285  * \param len - data len
1286  * \param karg - ioctl data, in kernel space
1287  */
1288 static int mdd_iocontrol(const struct lu_env *env, struct md_device *m,
1289                          unsigned int cmd, int len, void *karg)
1290 {
1291         struct mdd_device *mdd;
1292         struct obd_ioctl_data *data = karg;
1293         int rc;
1294         ENTRY;
1295
1296         mdd = lu2mdd_dev(&m->md_lu_dev);
1297
1298         /* Doesn't use obd_ioctl_data */
1299         switch (cmd) {
1300         case OBD_IOC_CHANGELOG_CLEAR: {
1301                 struct changelog_setinfo *cs = karg;
1302                 rc = mdd_changelog_user_purge(env, mdd, cs->cs_id,
1303                                               cs->cs_recno);
1304                 RETURN(rc);
1305         }
1306         case OBD_IOC_GET_MNTOPT: {
1307                 mntopt_t *mntopts = (mntopt_t *)karg;
1308                 *mntopts = mdd->mdd_dt_conf.ddp_mntopts;
1309                 RETURN(0);
1310         }
1311         case OBD_IOC_START_LFSCK: {
1312                 rc = mdd_lfsck_start(env, &mdd->mdd_lfsck,
1313                                      (struct lfsck_start *)karg);
1314                 RETURN(rc);
1315         }
1316         case OBD_IOC_STOP_LFSCK: {
1317                 rc = mdd_lfsck_stop(env, &mdd->mdd_lfsck, false);
1318                 RETURN(rc);
1319         }
1320         case OBD_IOC_PAUSE_LFSCK: {
1321                 rc = mdd_lfsck_stop(env, &mdd->mdd_lfsck, true);
1322                 RETURN(rc);
1323         }
1324         }
1325
1326         /* Below ioctls use obd_ioctl_data */
1327         if (len != sizeof(*data)) {
1328                 CERROR("Bad ioctl size %d\n", len);
1329                 RETURN(-EINVAL);
1330         }
1331         if (data->ioc_version != OBD_IOCTL_VERSION) {
1332                 CERROR("Bad magic %x != %x\n", data->ioc_version,
1333                        OBD_IOCTL_VERSION);
1334                 RETURN(-EINVAL);
1335         }
1336
1337         switch (cmd) {
1338         case OBD_IOC_CHANGELOG_REG:
1339                 rc = mdd_changelog_user_register(env, mdd, &data->ioc_u32_1);
1340                 break;
1341         case OBD_IOC_CHANGELOG_DEREG:
1342                 rc = mdd_changelog_user_purge(env, mdd, data->ioc_u32_1,
1343                                               MCUD_UNREGISTER);
1344                 break;
1345         default:
1346                 rc = -ENOTTY;
1347         }
1348
1349         RETURN (rc);
1350 }
1351
1352 /* type constructor/destructor: mdd_type_init, mdd_type_fini */
1353 LU_TYPE_INIT_FINI(mdd, &mdd_thread_key, &mdd_capainfo_key);
1354
1355 const struct md_device_operations mdd_ops = {
1356         .mdo_statfs         = mdd_statfs,
1357         .mdo_root_get       = mdd_root_get,
1358         .mdo_init_capa_ctxt = mdd_init_capa_ctxt,
1359         .mdo_update_capa_key= mdd_update_capa_key,
1360         .mdo_llog_ctxt_get  = mdd_llog_ctxt_get,
1361         .mdo_iocontrol      = mdd_iocontrol,
1362 };
1363
1364 static struct lu_device_type_operations mdd_device_type_ops = {
1365         .ldto_init = mdd_type_init,
1366         .ldto_fini = mdd_type_fini,
1367
1368         .ldto_start = mdd_type_start,
1369         .ldto_stop  = mdd_type_stop,
1370
1371         .ldto_device_alloc = mdd_device_alloc,
1372         .ldto_device_free  = mdd_device_free,
1373
1374         .ldto_device_fini    = mdd_device_fini
1375 };
1376
1377 static struct lu_device_type mdd_device_type = {
1378         .ldt_tags     = LU_DEVICE_MD,
1379         .ldt_name     = LUSTRE_MDD_NAME,
1380         .ldt_ops      = &mdd_device_type_ops,
1381         .ldt_ctx_tags = LCT_MD_THREAD
1382 };
1383
1384 /* context key constructor: mdd_key_init */
1385 LU_KEY_INIT(mdd, struct mdd_thread_info);
1386
1387 static void mdd_key_fini(const struct lu_context *ctx,
1388                          struct lu_context_key *key, void *data)
1389 {
1390         struct mdd_thread_info *info = data;
1391
1392         lu_buf_free(&info->mti_big_buf);
1393         lu_buf_free(&info->mti_link_buf);
1394
1395         OBD_FREE_PTR(info);
1396 }
1397
1398 /* context key: mdd_thread_key */
1399 LU_CONTEXT_KEY_DEFINE(mdd, LCT_MD_THREAD);
1400
1401 static int __init mdd_mod_init(void)
1402 {
1403         struct lprocfs_static_vars lvars;
1404         int rc;
1405
1406         lprocfs_mdd_init_vars(&lvars);
1407
1408         rc = lu_kmem_init(mdd_caches);
1409         if (rc)
1410                 return rc;
1411
1412         changelog_orig_logops = llog_osd_ops;
1413         changelog_orig_logops.lop_cancel = llog_changelog_cancel;
1414         changelog_orig_logops.lop_add = llog_cat_add_rec;
1415         changelog_orig_logops.lop_declare_add = llog_cat_declare_add_rec;
1416
1417         rc = class_register_type(&mdd_obd_device_ops, NULL, lvars.module_vars,
1418                                  LUSTRE_MDD_NAME, &mdd_device_type);
1419         if (rc)
1420                 lu_kmem_fini(mdd_caches);
1421         return rc;
1422 }
1423
1424 static void __exit mdd_mod_exit(void)
1425 {
1426         class_unregister_type(LUSTRE_MDD_NAME);
1427         lu_kmem_fini(mdd_caches);
1428 }
1429
1430 MODULE_AUTHOR("Sun Microsystems, Inc. <http://www.lustre.org/>");
1431 MODULE_DESCRIPTION("Lustre Meta-data Device Prototype ("LUSTRE_MDD_NAME")");
1432 MODULE_LICENSE("GPL");
1433
1434 cfs_module(mdd, "0.1.0", mdd_mod_init, mdd_mod_exit);