Whamcloud - gitweb
b=18676
[fs/lustre-release.git] / lustre / mdd / mdd_device.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * GPL HEADER START
5  *
6  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 only,
10  * as published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License version 2 for more details (a copy is included
16  * in the LICENSE file that accompanied this code).
17  *
18  * You should have received a copy of the GNU General Public License
19  * version 2 along with this program; If not, see
20  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
21  *
22  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
23  * CA 95054 USA or visit www.sun.com if you need additional information or
24  * have any questions.
25  *
26  * GPL HEADER END
27  */
28 /*
29  * Copyright  2008 Sun Microsystems, Inc. All rights reserved
30  * Use is subject to license terms.
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 #ifndef EXPORT_SYMTAB
44 # define EXPORT_SYMTAB
45 #endif
46 #define DEBUG_SUBSYSTEM S_MDS
47
48 #include <linux/module.h>
49 #include <linux/jbd.h>
50 #include <obd.h>
51 #include <obd_class.h>
52 #include <lustre_ver.h>
53 #include <obd_support.h>
54 #include <lprocfs_status.h>
55
56 #include <lustre_disk.h>
57 #include <lustre_fid.h>
58 #include <linux/ldiskfs_fs.h>
59 #include <lustre_mds.h>
60 #include <lustre/lustre_idl.h>
61 #include <lustre_disk.h>      /* for changelogs */
62 #include <lustre_param.h>
63 #include <lustre_fid.h>
64
65 #include "mdd_internal.h"
66
67 const struct md_device_operations mdd_ops;
68 static struct lu_device_type mdd_device_type;
69
70 static const char mdd_root_dir_name[] = "ROOT";
71 static const char mdd_obf_dir_name[] = "fid";
72
73 static int mdd_device_init(const struct lu_env *env, struct lu_device *d,
74                            const char *name, struct lu_device *next)
75 {
76         struct mdd_device *mdd = lu2mdd_dev(d);
77         int rc;
78         ENTRY;
79
80         mdd->mdd_child = lu2dt_dev(next);
81
82         /* Prepare transactions callbacks. */
83         mdd->mdd_txn_cb.dtc_txn_start = mdd_txn_start_cb;
84         mdd->mdd_txn_cb.dtc_txn_stop = mdd_txn_stop_cb;
85         mdd->mdd_txn_cb.dtc_txn_commit = mdd_txn_commit_cb;
86         mdd->mdd_txn_cb.dtc_cookie = mdd;
87         CFS_INIT_LIST_HEAD(&mdd->mdd_txn_cb.dtc_linkage);
88         mdd->mdd_atime_diff = MAX_ATIME_DIFF;
89
90         rc = mdd_procfs_init(mdd, name);
91         RETURN(rc);
92 }
93
94 static struct lu_device *mdd_device_fini(const struct lu_env *env,
95                                          struct lu_device *d)
96 {
97         struct mdd_device *mdd = lu2mdd_dev(d);
98         struct lu_device *next = &mdd->mdd_child->dd_lu_dev;
99         int rc;
100
101         rc = mdd_procfs_fini(mdd);
102         if (rc) {
103                 CERROR("proc fini error %d \n", rc);
104                 return ERR_PTR(rc);
105         }
106         return next;
107 }
108
109 static void mdd_changelog_fini(const struct lu_env *env,
110                                struct mdd_device *mdd);
111
112 static void mdd_device_shutdown(const struct lu_env *env,
113                                 struct mdd_device *m, struct lustre_cfg *cfg)
114 {
115         ENTRY;
116         mdd_changelog_fini(env, m);
117         dt_txn_callback_del(m->mdd_child, &m->mdd_txn_cb);
118         mdd_object_put(env, m->mdd_dot_lustre_objs.mdd_obf);
119         mdd_object_put(env, m->mdd_dot_lustre);
120         if (m->mdd_obd_dev)
121                 mdd_fini_obd(env, m, cfg);
122         orph_index_fini(env, m);
123         /* remove upcall device*/
124         md_upcall_fini(&m->mdd_md_dev);
125         EXIT;
126 }
127
128 static int changelog_init_cb(struct llog_handle *llh, struct llog_rec_hdr *hdr,
129                              void *data)
130 {
131         struct mdd_device *mdd = (struct mdd_device *)data;
132         struct llog_changelog_rec *rec = (struct llog_changelog_rec *)hdr;
133         ENTRY;
134
135         LASSERT(llh->lgh_hdr->llh_flags & LLOG_F_IS_PLAIN);
136         LASSERT(rec->cr_hdr.lrh_type == CHANGELOG_REC);
137
138         CDEBUG(D_INFO,
139                "seeing record at index %d/%d/"LPU64" t=%x %.*s in log "LPX64"\n",
140                hdr->lrh_index, rec->cr_hdr.lrh_index, rec->cr_index,
141                rec->cr_type, rec->cr_namelen, rec->cr_name,
142                llh->lgh_id.lgl_oid);
143
144         mdd->mdd_cl.mc_index = rec->cr_index;
145         RETURN(LLOG_PROC_BREAK);
146 }
147
148 static int changelog_user_init_cb(struct llog_handle *llh,
149                                   struct llog_rec_hdr *hdr, void *data)
150 {
151         struct mdd_device *mdd = (struct mdd_device *)data;
152         struct llog_changelog_user_rec *rec =
153                 (struct llog_changelog_user_rec *)hdr;
154         ENTRY;
155
156         LASSERT(llh->lgh_hdr->llh_flags & LLOG_F_IS_PLAIN);
157         LASSERT(rec->cur_hdr.lrh_type == CHANGELOG_USER_REC);
158
159         CDEBUG(D_INFO, "seeing user at index %d/%d id=%d endrec="LPU64
160                " in log "LPX64"\n", hdr->lrh_index, rec->cur_hdr.lrh_index,
161                rec->cur_id, rec->cur_endrec, llh->lgh_id.lgl_oid);
162
163         spin_lock(&mdd->mdd_cl.mc_user_lock);
164         mdd->mdd_cl.mc_lastuser = rec->cur_id;
165         spin_unlock(&mdd->mdd_cl.mc_user_lock);
166
167         RETURN(LLOG_PROC_BREAK);
168 }
169
170
171 static int mdd_changelog_llog_init(struct mdd_device *mdd)
172 {
173         struct obd_device *obd = mdd2obd_dev(mdd);
174         struct llog_ctxt *ctxt;
175         int rc;
176
177         /* Find last changelog entry number */
178         ctxt = llog_get_context(obd, LLOG_CHANGELOG_ORIG_CTXT);
179         if (ctxt == NULL) {
180                 CERROR("no changelog context\n");
181                 return -EINVAL;
182         }
183         if (!ctxt->loc_handle) {
184                 llog_ctxt_put(ctxt);
185                 return -EINVAL;
186         }
187
188         rc = llog_cat_reverse_process(ctxt->loc_handle, changelog_init_cb, mdd);
189         llog_ctxt_put(ctxt);
190
191         if (rc < 0) {
192                 CERROR("changelog init failed: %d\n", rc);
193                 return rc;
194         }
195         CDEBUG(D_IOCTL, "changelog starting index="LPU64"\n",
196                mdd->mdd_cl.mc_index);
197
198         /* Find last changelog user id */
199         ctxt = llog_get_context(obd, LLOG_CHANGELOG_USER_ORIG_CTXT);
200         if (ctxt == NULL) {
201                 CERROR("no changelog user context\n");
202                 return -EINVAL;
203         }
204         if (!ctxt->loc_handle) {
205                 llog_ctxt_put(ctxt);
206                 return -EINVAL;
207         }
208
209         rc = llog_cat_reverse_process(ctxt->loc_handle, changelog_user_init_cb,
210                                       mdd);
211         llog_ctxt_put(ctxt);
212
213         if (rc < 0) {
214                 CERROR("changelog user init failed: %d\n", rc);
215                 return rc;
216         }
217
218         /* If we have registered users, assume we want changelogs on */
219         if (mdd->mdd_cl.mc_lastuser > 0)
220                 rc = mdd_changelog_on(mdd, 1);
221
222         return rc;
223 }
224
225 static int mdd_changelog_init(const struct lu_env *env, struct mdd_device *mdd)
226 {
227         int rc;
228
229         mdd->mdd_cl.mc_index = 0;
230         spin_lock_init(&mdd->mdd_cl.mc_lock);
231         cfs_waitq_init(&mdd->mdd_cl.mc_waitq);
232         mdd->mdd_cl.mc_starttime = cfs_time_current_64();
233         mdd->mdd_cl.mc_flags = 0; /* off by default */
234         mdd->mdd_cl.mc_mask = CHANGELOG_DEFMASK;
235         spin_lock_init(&mdd->mdd_cl.mc_user_lock);
236         mdd->mdd_cl.mc_lastuser = 0;
237
238         rc = mdd_changelog_llog_init(mdd);
239         if (rc) {
240                 CERROR("Changelog setup during init failed %d\n", rc);
241                 mdd->mdd_cl.mc_flags |= CLM_ERR;
242         }
243
244         return rc;
245 }
246
247 static void mdd_changelog_fini(const struct lu_env *env, struct mdd_device *mdd)
248 {
249         mdd->mdd_cl.mc_flags = 0;
250 }
251
252 /* Start / stop recording */
253 int mdd_changelog_on(struct mdd_device *mdd, int on)
254 {
255         int rc = 0;
256
257         if ((on == 1) && ((mdd->mdd_cl.mc_flags & CLM_ON) == 0)) {
258                 LCONSOLE_INFO("%s: changelog on\n", mdd2obd_dev(mdd)->obd_name);
259                 if (mdd->mdd_cl.mc_flags & CLM_ERR) {
260                         CERROR("Changelogs cannot be enabled due to error "
261                                "condition (see %s log).\n",
262                                mdd2obd_dev(mdd)->obd_name);
263                         rc = -ESRCH;
264                 } else {
265                         spin_lock(&mdd->mdd_cl.mc_lock);
266                         mdd->mdd_cl.mc_flags |= CLM_ON;
267                         spin_unlock(&mdd->mdd_cl.mc_lock);
268                         rc = mdd_changelog_write_header(mdd, CLM_START);
269                 }
270         } else if ((on == 0) && ((mdd->mdd_cl.mc_flags & CLM_ON) == CLM_ON)) {
271                 LCONSOLE_INFO("%s: changelog off\n",mdd2obd_dev(mdd)->obd_name);
272                 rc = mdd_changelog_write_header(mdd, CLM_FINI);
273                 spin_lock(&mdd->mdd_cl.mc_lock);
274                 mdd->mdd_cl.mc_flags &= ~CLM_ON;
275                 spin_unlock(&mdd->mdd_cl.mc_lock);
276         }
277         return rc;
278 }
279
280 /** Add a changelog entry \a rec to the changelog llog
281  * \param mdd
282  * \param rec
283  * \param handle - currently ignored since llogs start their own transaction;
284  *                 this will hopefully be fixed in llog rewrite
285  * \retval 0 ok
286  */
287 int mdd_changelog_llog_write(struct mdd_device         *mdd,
288                              struct llog_changelog_rec *rec,
289                              struct thandle            *handle)
290 {
291         struct obd_device *obd = mdd2obd_dev(mdd);
292         struct llog_ctxt *ctxt;
293         int rc;
294
295         if ((mdd->mdd_cl.mc_mask & (1 << rec->cr_type)) == 0)
296                 return 0;
297
298         rec->cr_hdr.lrh_len = llog_data_len(sizeof(*rec) + rec->cr_namelen);
299         /* llog_lvfs_write_rec sets the llog tail len */
300         rec->cr_hdr.lrh_type = CHANGELOG_REC;
301         rec->cr_time = cfs_time_current_64();
302         spin_lock(&mdd->mdd_cl.mc_lock);
303         /* NB: I suppose it's possible llog_add adds out of order wrt cr_index,
304            but as long as the MDD transactions are ordered correctly for e.g.
305            rename conflicts, I don't think this should matter. */
306         rec->cr_index = ++mdd->mdd_cl.mc_index;
307         spin_unlock(&mdd->mdd_cl.mc_lock);
308         ctxt = llog_get_context(obd, LLOG_CHANGELOG_ORIG_CTXT);
309         if (ctxt == NULL)
310                 return -ENXIO;
311
312         /* nested journal transaction */
313         rc = llog_add(ctxt, &rec->cr_hdr, NULL, NULL, 0);
314         llog_ctxt_put(ctxt);
315
316         cfs_waitq_signal(&mdd->mdd_cl.mc_waitq);
317
318         return rc;
319 }
320
321 /** Remove entries with indicies up to and including \a endrec from the
322  *  changelog
323  * \param mdd
324  * \param endrec
325  * \retval 0 ok
326  */
327 int mdd_changelog_llog_cancel(struct mdd_device *mdd, long long endrec)
328 {
329         struct obd_device *obd = mdd2obd_dev(mdd);
330         struct llog_ctxt *ctxt;
331         long long unsigned cur;
332         int rc;
333
334         ctxt = llog_get_context(obd, LLOG_CHANGELOG_ORIG_CTXT);
335         if (ctxt == NULL)
336                 return -ENXIO;
337
338         spin_lock(&mdd->mdd_cl.mc_lock);
339         cur = (long long)mdd->mdd_cl.mc_index;
340         spin_unlock(&mdd->mdd_cl.mc_lock);
341         if (endrec > cur)
342                 endrec = cur;
343
344         /* purge to "0" is shorthand for everything */
345         if (endrec == 0)
346                 endrec = cur;
347
348         /* If purging all records, write a header entry so we don't have an
349            empty catalog and we're sure to have a valid starting index next
350            time.  In case of crash, we just restart with old log so we're
351            allright. */
352         if (endrec == cur) {
353                 rc = mdd_changelog_write_header(mdd, CLM_PURGE);
354                 if (rc)
355                       goto out;
356         }
357
358         /* Some records were purged, so reset repeat-access time (so we
359            record new mtime update records, so users can see a file has been
360            changed since the last purge) */
361         mdd->mdd_cl.mc_starttime = cfs_time_current_64();
362
363         rc = llog_cancel(ctxt, NULL, 1, (struct llog_cookie *)&endrec, 0);
364 out:
365         llog_ctxt_put(ctxt);
366         return rc;
367 }
368
369 /** Add a CL_MARK record to the changelog
370  * \param mdd
371  * \param markerflags - CLM_*
372  * \retval 0 ok
373  */
374 int mdd_changelog_write_header(struct mdd_device *mdd, int markerflags)
375 {
376         struct obd_device *obd = mdd2obd_dev(mdd);
377         struct llog_changelog_rec *rec;
378         int reclen;
379         int len = strlen(obd->obd_name);
380         int rc;
381         ENTRY;
382
383         reclen = llog_data_len(sizeof(*rec) + len);
384         OBD_ALLOC(rec, reclen);
385         if (rec == NULL)
386                 RETURN(-ENOMEM);
387
388         rec->cr_flags = CLF_VERSION;
389         rec->cr_type = CL_MARK;
390         rec->cr_namelen = len;
391         memcpy(rec->cr_name, obd->obd_name, rec->cr_namelen);
392         /* Status and action flags */
393         rec->cr_markerflags = mdd->mdd_cl.mc_flags | markerflags;
394
395         rc = mdd_changelog_llog_write(mdd, rec, NULL);
396
397         /* assume on or off event; reset repeat-access time */
398         mdd->mdd_cl.mc_starttime = rec->cr_time;
399
400         OBD_FREE(rec, reclen);
401         RETURN(rc);
402 }
403
404 /**
405  * Create ".lustre" directory.
406  */
407 static int create_dot_lustre_dir(const struct lu_env *env, struct mdd_device *m)
408 {
409         struct lu_fid *fid = &mdd_env_info(env)->mti_fid;
410         struct md_object *mdo;
411         int rc;
412
413         memcpy(fid, &LU_DOT_LUSTRE_FID, sizeof(struct lu_fid));
414         mdo = llo_store_create_index(env, &m->mdd_md_dev, m->mdd_child,
415                                      mdd_root_dir_name, mdd_dot_lustre_name,
416                                      fid, &dt_directory_features);
417         /* .lustre dir may be already present */
418         if (IS_ERR(mdo) && PTR_ERR(mdo) != -EEXIST) {
419                 rc = PTR_ERR(mdo);
420                 CERROR("creating obj [%s] fid = "DFID" rc = %d\n",
421                         mdd_dot_lustre_name, PFID(fid), rc);
422                 RETURN(rc);
423         }
424
425         if (!IS_ERR(mdo))
426                 lu_object_put(env, &mdo->mo_lu);
427
428         return 0;
429 }
430
431 static int dot_lustre_attr_get(const struct lu_env *env, struct md_object *obj,
432                                struct md_attr *ma)
433 {
434         struct mdd_object *mdd_obj = md2mdd_obj(obj);
435
436         return mdd_attr_get_internal_locked(env, mdd_obj, ma);
437 }
438
439 static int dot_lustre_attr_set(const struct lu_env *env, struct md_object *obj,
440                                const struct md_attr *ma)
441 {
442         return -EPERM;
443 }
444
445 static int dot_lustre_xattr_get(const struct lu_env *env,
446                                 struct md_object *obj, struct lu_buf *buf,
447                                 const char *name)
448 {
449         return 0;
450 }
451
452 static int dot_lustre_mdd_open(const struct lu_env *env, struct md_object *obj,
453                                int flags)
454 {
455         struct mdd_object *mdd_obj = md2mdd_obj(obj);
456
457         mdd_write_lock(env, mdd_obj, MOR_TGT_CHILD);
458         mdd_obj->mod_count++;
459         mdd_write_unlock(env, mdd_obj);
460
461         return 0;
462 }
463
464 static int dot_lustre_path(const struct lu_env *env, struct md_object *obj,
465                            char *path, int pathlen, __u64 *recno, int *linkno)
466 {
467         return -ENOSYS;
468 }
469
470 static int dot_lustre_close(const struct lu_env *env, struct md_object *obj,
471                          struct md_attr *ma)
472 {
473         struct mdd_object *mdd_obj = md2mdd_obj(obj);
474
475         mdd_write_lock(env, mdd_obj, MOR_TGT_CHILD);
476         mdd_obj->mod_count--;
477         mdd_write_unlock(env, mdd_obj);
478
479         return 0;
480 }
481
482 static struct md_object_operations mdd_dot_lustre_obj_ops = {
483         .moo_attr_get   = dot_lustre_attr_get,
484         .moo_attr_set   = dot_lustre_attr_set,
485         .moo_xattr_get  = dot_lustre_xattr_get,
486         .moo_open       = dot_lustre_mdd_open,
487         .moo_close      = dot_lustre_close,
488         .moo_readpage   = mdd_readpage,
489         .moo_path       = dot_lustre_path
490 };
491
492 static int dot_lustre_lookup(const struct lu_env *env, struct md_object *p,
493                              const struct lu_name *lname, struct lu_fid *f,
494                              struct md_op_spec *spec)
495 {
496         if (strcmp(lname->ln_name, mdd_obf_dir_name) == 0)
497                 *f = LU_OBF_FID;
498         else
499                 return -ENOENT;
500
501         return 0;
502 }
503
504 static int dot_lustre_create(const struct lu_env *env, struct md_object *pobj,
505                              const struct lu_name *lname,
506                              struct md_object *child, struct md_op_spec *spec,
507                              struct md_attr* ma)
508 {
509         return -EPERM;
510 }
511
512 static int dot_lustre_rename(const struct lu_env *env,
513                              struct md_object *src_pobj,
514                              struct md_object *tgt_pobj,
515                              const struct lu_fid *lf,
516                              const struct lu_name *lsname,
517                              struct md_object *tobj,
518                              const struct lu_name *ltname, struct md_attr *ma)
519 {
520         return -EPERM;
521 }
522
523 static int dot_lustre_link(const struct lu_env *env, struct md_object *tgt_obj,
524                            struct md_object *src_obj,
525                            const struct lu_name *lname, struct md_attr *ma)
526 {
527         return -EPERM;
528 }
529
530 static int dot_lustre_unlink(const struct lu_env *env, struct md_object *pobj,
531                              struct md_object *cobj, const struct lu_name *lname,
532                              struct md_attr *ma)
533 {
534         return -EPERM;
535 }
536
537 static struct md_dir_operations mdd_dot_lustre_dir_ops = {
538         .mdo_lookup = dot_lustre_lookup,
539         .mdo_create = dot_lustre_create,
540         .mdo_rename = dot_lustre_rename,
541         .mdo_link   = dot_lustre_link,
542         .mdo_unlink = dot_lustre_unlink,
543 };
544
545 static int obf_attr_get(const struct lu_env *env, struct md_object *obj,
546                         struct md_attr *ma)
547 {
548         int rc = 0;
549
550         if (ma->ma_need & MA_INODE) {
551                 struct mdd_device *mdd = mdo2mdd(obj);
552
553                 /* "fid" is a virtual object and hence does not have any "real"
554                  * attributes. So we reuse attributes of .lustre for "fid" dir */
555                 ma->ma_need |= MA_INODE;
556                 rc = dot_lustre_attr_get(env, &mdd->mdd_dot_lustre->mod_obj, ma);
557                 if (rc)
558                         return rc;
559                 ma->ma_valid |= MA_INODE;
560         }
561
562         /* "fid" directory does not have any striping information. */
563         if (ma->ma_need & MA_LOV) {
564                 struct mdd_object *mdd_obj = md2mdd_obj(obj);
565
566                 if (ma->ma_valid & MA_LOV)
567                         return 0;
568
569                 if (!(S_ISREG(mdd_object_type(mdd_obj)) ||
570                       S_ISDIR(mdd_object_type(mdd_obj))))
571                         return 0;
572
573                 if (ma->ma_need & MA_LOV_DEF) {
574                         rc = mdd_get_default_md(mdd_obj, ma->ma_lmm,
575                                         &ma->ma_lmm_size);
576                         if (rc > 0) {
577                                 ma->ma_valid |= MA_LOV;
578                                 rc = 0;
579                         }
580                 }
581         }
582
583         return rc;
584 }
585
586 static int obf_attr_set(const struct lu_env *env, struct md_object *obj,
587                         const struct md_attr *ma)
588 {
589         return -EPERM;
590 }
591
592 static int obf_xattr_get(const struct lu_env *env,
593                          struct md_object *obj, struct lu_buf *buf,
594                          const char *name)
595 {
596         return 0;
597 }
598
599 static int obf_mdd_open(const struct lu_env *env, struct md_object *obj,
600                         int flags)
601 {
602         struct mdd_object *mdd_obj = md2mdd_obj(obj);
603
604         mdd_write_lock(env, mdd_obj, MOR_TGT_CHILD);
605         mdd_obj->mod_count++;
606         mdd_write_unlock(env, mdd_obj);
607
608         return 0;
609 }
610
611 static int obf_mdd_close(const struct lu_env *env, struct md_object *obj,
612                          struct md_attr *ma)
613 {
614         struct mdd_object *mdd_obj = md2mdd_obj(obj);
615
616         mdd_write_lock(env, mdd_obj, MOR_TGT_CHILD);
617         mdd_obj->mod_count--;
618         mdd_write_unlock(env, mdd_obj);
619
620         return 0;
621 }
622
623 /** Nothing to list in "fid" directory */
624 static int obf_mdd_readpage(const struct lu_env *env, struct md_object *obj,
625                             const struct lu_rdpg *rdpg)
626 {
627         return -EPERM;
628 }
629
630 static int obf_path(const struct lu_env *env, struct md_object *obj,
631                     char *path, int pathlen, __u64 *recno, int *linkno)
632 {
633         return -ENOSYS;
634 }
635
636 static struct md_object_operations mdd_obf_obj_ops = {
637         .moo_attr_get   = obf_attr_get,
638         .moo_attr_set   = obf_attr_set,
639         .moo_xattr_get  = obf_xattr_get,
640         .moo_open       = obf_mdd_open,
641         .moo_close      = obf_mdd_close,
642         .moo_readpage   = obf_mdd_readpage,
643         .moo_path       = obf_path
644 };
645
646 /**
647  * Lookup method for "fid" object. Only filenames with correct SEQ:OID format
648  * are valid. We also check if object with passed fid exists or not.
649  */
650 static int obf_lookup(const struct lu_env *env, struct md_object *p,
651                       const struct lu_name *lname, struct lu_fid *f,
652                       struct md_op_spec *spec)
653 {
654         char *name = (char *)lname->ln_name;
655         struct mdd_device *mdd = mdo2mdd(p);
656         struct mdd_object *child;
657         int rc = 0;
658
659         while (*name == '[')
660                 name++;
661
662         sscanf(name, SFID, &(f->f_seq), &(f->f_oid),
663                &(f->f_ver));
664         if (!fid_is_sane(f)) {
665                 CWARN("bad FID format [%s], should be "DFID"\n", lname->ln_name,
666                       (__u64)1, 2, 0);
667                 GOTO(out, rc = -EINVAL);
668         }
669
670         /* Check if object with this fid exists */
671         child = mdd_object_find(env, mdd, f);
672         if (child == NULL)
673                 GOTO(out, rc = 0);
674         if (IS_ERR(child))
675                 GOTO(out, rc = PTR_ERR(child));
676
677         if (mdd_object_exists(child) == 0)
678                 rc = -ENOENT;
679
680         mdd_object_put(env, child);
681
682 out:
683         return rc;
684 }
685
686 static int obf_create(const struct lu_env *env, struct md_object *pobj,
687                       const struct lu_name *lname, struct md_object *child,
688                       struct md_op_spec *spec, struct md_attr* ma)
689 {
690         return -EPERM;
691 }
692
693 static int obf_rename(const struct lu_env *env,
694                       struct md_object *src_pobj, struct md_object *tgt_pobj,
695                       const struct lu_fid *lf, const struct lu_name *lsname,
696                       struct md_object *tobj, const struct lu_name *ltname,
697                       struct md_attr *ma)
698 {
699         return -EPERM;
700 }
701
702 static int obf_link(const struct lu_env *env, struct md_object *tgt_obj,
703                     struct md_object *src_obj, const struct lu_name *lname,
704                     struct md_attr *ma)
705 {
706         return -EPERM;
707 }
708
709 static int obf_unlink(const struct lu_env *env, struct md_object *pobj,
710                       struct md_object *cobj, const struct lu_name *lname,
711                       struct md_attr *ma)
712 {
713         return -EPERM;
714 }
715
716 static struct md_dir_operations mdd_obf_dir_ops = {
717         .mdo_lookup = obf_lookup,
718         .mdo_create = obf_create,
719         .mdo_rename = obf_rename,
720         .mdo_link   = obf_link,
721         .mdo_unlink = obf_unlink
722 };
723
724 /**
725  * Create special in-memory "fid" object for open-by-fid.
726  */
727 static int mdd_obf_setup(const struct lu_env *env, struct mdd_device *m)
728 {
729         struct mdd_object *mdd_obf;
730         struct lu_object *obf_lu_obj;
731         int rc = 0;
732
733         m->mdd_dot_lustre_objs.mdd_obf = mdd_object_find(env, m,
734                                                          &LU_OBF_FID);
735         if (m->mdd_dot_lustre_objs.mdd_obf == NULL ||
736             IS_ERR(m->mdd_dot_lustre_objs.mdd_obf))
737                 GOTO(out, rc = -ENOENT);
738
739         mdd_obf = m->mdd_dot_lustre_objs.mdd_obf;
740         mdd_obf->mod_obj.mo_dir_ops = &mdd_obf_dir_ops;
741         mdd_obf->mod_obj.mo_ops = &mdd_obf_obj_ops;
742         /* Don't allow objects to be created in "fid" dir */
743         mdd_obf->mod_flags |= IMMUTE_OBJ;
744
745         obf_lu_obj = mdd2lu_obj(mdd_obf);
746         obf_lu_obj->lo_header->loh_attr |= (LOHA_EXISTS | S_IFDIR);
747
748 out:
749         return rc;
750 }
751
752 /** Setup ".lustre" directory object */
753 static int mdd_dot_lustre_setup(const struct lu_env *env, struct mdd_device *m)
754 {
755         struct dt_object *dt_dot_lustre;
756         struct lu_fid *fid = &mdd_env_info(env)->mti_fid;
757         int rc;
758
759         rc = create_dot_lustre_dir(env, m);
760         if (rc)
761                 return rc;
762
763         dt_dot_lustre = dt_store_open(env, m->mdd_child, mdd_root_dir_name,
764                                       mdd_dot_lustre_name, fid);
765         if (IS_ERR(dt_dot_lustre)) {
766                 rc = PTR_ERR(dt_dot_lustre);
767                 GOTO(out, rc);
768         }
769
770         /* references are released in mdd_device_shutdown() */
771         m->mdd_dot_lustre = lu2mdd_obj(lu_object_locate(dt_dot_lustre->do_lu.lo_header,
772                                                         &mdd_device_type));
773
774         m->mdd_dot_lustre->mod_obj.mo_dir_ops = &mdd_dot_lustre_dir_ops;
775         m->mdd_dot_lustre->mod_obj.mo_ops = &mdd_dot_lustre_obj_ops;
776
777         rc = mdd_obf_setup(env, m);
778         if (rc)
779                 CERROR("Error initializing \"fid\" object - %d.\n", rc);
780
781 out:
782         RETURN(rc);
783 }
784
785 static int mdd_process_config(const struct lu_env *env,
786                               struct lu_device *d, struct lustre_cfg *cfg)
787 {
788         struct mdd_device *m    = lu2mdd_dev(d);
789         struct dt_device  *dt   = m->mdd_child;
790         struct lu_device  *next = &dt->dd_lu_dev;
791         int rc;
792         ENTRY;
793
794         switch (cfg->lcfg_command) {
795         case LCFG_PARAM: {
796                 struct lprocfs_static_vars lvars;
797
798                 lprocfs_mdd_init_vars(&lvars);
799                 rc = class_process_proc_param(PARAM_MDD, lvars.obd_vars, cfg,m);
800                 if (rc > 0 || rc == -ENOSYS)
801                         /* we don't understand; pass it on */
802                         rc = next->ld_ops->ldo_process_config(env, next, cfg);
803                 break;
804         }
805         case LCFG_SETUP:
806                 rc = next->ld_ops->ldo_process_config(env, next, cfg);
807                 if (rc)
808                         GOTO(out, rc);
809                 dt->dd_ops->dt_conf_get(env, dt, &m->mdd_dt_conf);
810
811                 rc = mdd_init_obd(env, m, cfg);
812                 if (rc) {
813                         CERROR("lov init error %d \n", rc);
814                         GOTO(out, rc);
815                 }
816                 rc = mdd_txn_init_credits(env, m);
817                 if (rc)
818                         break;
819
820                 mdd_changelog_init(env, m);
821                 break;
822         case LCFG_CLEANUP:
823                 mdd_device_shutdown(env, m, cfg);
824         default:
825                 rc = next->ld_ops->ldo_process_config(env, next, cfg);
826                 break;
827         }
828 out:
829         RETURN(rc);
830 }
831
832 #if 0
833 static int mdd_lov_set_nextid(const struct lu_env *env,
834                               struct mdd_device *mdd)
835 {
836         struct mds_obd *mds = &mdd->mdd_obd_dev->u.mds;
837         int rc;
838         ENTRY;
839
840         LASSERT(mds->mds_lov_objids != NULL);
841         rc = obd_set_info_async(mds->mds_osc_exp, strlen(KEY_NEXT_ID),
842                                 KEY_NEXT_ID, mds->mds_lov_desc.ld_tgt_count,
843                                 mds->mds_lov_objids, NULL);
844
845         RETURN(rc);
846 }
847
848 static int mdd_cleanup_unlink_llog(const struct lu_env *env,
849                                    struct mdd_device *mdd)
850 {
851         /* XXX: to be implemented! */
852         return 0;
853 }
854 #endif
855
856 static int mdd_recovery_complete(const struct lu_env *env,
857                                  struct lu_device *d)
858 {
859         struct mdd_device *mdd = lu2mdd_dev(d);
860         struct lu_device *next = &mdd->mdd_child->dd_lu_dev;
861         struct obd_device *obd = mdd2obd_dev(mdd);
862         int rc;
863         ENTRY;
864
865         LASSERT(mdd != NULL);
866         LASSERT(obd != NULL);
867 #if 0
868         /* XXX: Do we need this in new stack? */
869         rc = mdd_lov_set_nextid(env, mdd);
870         if (rc) {
871                 CERROR("mdd_lov_set_nextid() failed %d\n",
872                        rc);
873                 RETURN(rc);
874         }
875
876         /* XXX: cleanup unlink. */
877         rc = mdd_cleanup_unlink_llog(env, mdd);
878         if (rc) {
879                 CERROR("mdd_cleanup_unlink_llog() failed %d\n",
880                        rc);
881                 RETURN(rc);
882         }
883 #endif
884         /* Call that with obd_recovering = 1 just to update objids */
885         obd_notify(obd->u.mds.mds_osc_obd, NULL, (obd->obd_async_recov ?
886                     OBD_NOTIFY_SYNC_NONBLOCK : OBD_NOTIFY_SYNC), NULL);
887
888         /* Drop obd_recovering to 0 and call o_postrecov to recover mds_lov */
889         obd->obd_recovering = 0;
890         obd->obd_type->typ_dt_ops->o_postrecov(obd);
891
892         /* XXX: orphans handling. */
893         __mdd_orphan_cleanup(env, mdd);
894         rc = next->ld_ops->ldo_recovery_complete(env, next);
895
896         RETURN(rc);
897 }
898
899 static int mdd_prepare(const struct lu_env *env,
900                        struct lu_device *pdev,
901                        struct lu_device *cdev)
902 {
903         struct mdd_device *mdd = lu2mdd_dev(cdev);
904         struct lu_device *next = &mdd->mdd_child->dd_lu_dev;
905         struct dt_object *root;
906         int rc;
907
908         ENTRY;
909         rc = next->ld_ops->ldo_prepare(env, cdev, next);
910         if (rc)
911                 GOTO(out, rc);
912
913         dt_txn_callback_add(mdd->mdd_child, &mdd->mdd_txn_cb);
914         root = dt_store_open(env, mdd->mdd_child, "", mdd_root_dir_name,
915                              &mdd->mdd_root_fid);
916         if (!IS_ERR(root)) {
917                 LASSERT(root != NULL);
918                 lu_object_put(env, &root->do_lu);
919                 rc = orph_index_init(env, mdd);
920         } else {
921                 rc = PTR_ERR(root);
922         }
923         if (rc)
924                 GOTO(out, rc);
925
926         rc = mdd_dot_lustre_setup(env, mdd);
927         if (rc) {
928                 CERROR("Error(%d) initializing .lustre objects\n", rc);
929                 GOTO(out, rc);
930         }
931
932 out:
933         RETURN(rc);
934 }
935
936 const struct lu_device_operations mdd_lu_ops = {
937         .ldo_object_alloc      = mdd_object_alloc,
938         .ldo_process_config    = mdd_process_config,
939         .ldo_recovery_complete = mdd_recovery_complete,
940         .ldo_prepare           = mdd_prepare,
941 };
942
943 /*
944  * No permission check is needed.
945  */
946 static int mdd_root_get(const struct lu_env *env,
947                         struct md_device *m, struct lu_fid *f)
948 {
949         struct mdd_device *mdd = lu2mdd_dev(&m->md_lu_dev);
950
951         ENTRY;
952         *f = mdd->mdd_root_fid;
953         RETURN(0);
954 }
955
956 /*
957  * No permission check is needed.
958  */
959 static int mdd_statfs(const struct lu_env *env, struct md_device *m,
960                       struct kstatfs *sfs)
961 {
962         struct mdd_device *mdd = lu2mdd_dev(&m->md_lu_dev);
963         int rc;
964
965         ENTRY;
966
967         rc = mdd_child_ops(mdd)->dt_statfs(env, mdd->mdd_child, sfs);
968
969         RETURN(rc);
970 }
971
972 /*
973  * No permission check is needed.
974  */
975 static int mdd_maxsize_get(const struct lu_env *env, struct md_device *m,
976                            int *md_size, int *cookie_size)
977 {
978         struct mdd_device *mdd = lu2mdd_dev(&m->md_lu_dev);
979         ENTRY;
980
981         *md_size = mdd_lov_mdsize(env, mdd);
982         *cookie_size = mdd_lov_cookiesize(env, mdd);
983
984         RETURN(0);
985 }
986
987 static int mdd_init_capa_ctxt(const struct lu_env *env, struct md_device *m,
988                               int mode, unsigned long timeout, __u32 alg,
989                               struct lustre_capa_key *keys)
990 {
991         struct mdd_device *mdd = lu2mdd_dev(&m->md_lu_dev);
992         struct mds_obd    *mds = &mdd2obd_dev(mdd)->u.mds;
993         int rc;
994         ENTRY;
995
996         mds->mds_capa_keys = keys;
997         rc = mdd_child_ops(mdd)->dt_init_capa_ctxt(env, mdd->mdd_child, mode,
998                                                    timeout, alg, keys);
999         RETURN(rc);
1000 }
1001
1002 static int mdd_update_capa_key(const struct lu_env *env,
1003                                struct md_device *m,
1004                                struct lustre_capa_key *key)
1005 {
1006         struct mdd_device *mdd = lu2mdd_dev(&m->md_lu_dev);
1007         struct obd_export *lov_exp = mdd2obd_dev(mdd)->u.mds.mds_osc_exp;
1008         int rc;
1009         ENTRY;
1010
1011         rc = obd_set_info_async(lov_exp, sizeof(KEY_CAPA_KEY), KEY_CAPA_KEY,
1012                                 sizeof(*key), key, NULL);
1013         RETURN(rc);
1014 }
1015
1016 static int mdd_llog_ctxt_get(const struct lu_env *env, struct md_device *m,
1017                              int idx, void **h)
1018 {
1019         struct mdd_device *mdd = lu2mdd_dev(&m->md_lu_dev);
1020
1021         *h = llog_group_get_ctxt(&mdd2obd_dev(mdd)->obd_olg, idx);
1022         return (*h == NULL ? -ENOENT : 0);
1023 }
1024
1025 static struct lu_device *mdd_device_alloc(const struct lu_env *env,
1026                                           struct lu_device_type *t,
1027                                           struct lustre_cfg *lcfg)
1028 {
1029         struct lu_device  *l;
1030         struct mdd_device *m;
1031
1032         OBD_ALLOC_PTR(m);
1033         if (m == NULL) {
1034                 l = ERR_PTR(-ENOMEM);
1035         } else {
1036                 md_device_init(&m->mdd_md_dev, t);
1037                 l = mdd2lu_dev(m);
1038                 l->ld_ops = &mdd_lu_ops;
1039                 m->mdd_md_dev.md_ops = &mdd_ops;
1040                 md_upcall_init(&m->mdd_md_dev, NULL);
1041         }
1042
1043         return l;
1044 }
1045
1046 static struct lu_device *mdd_device_free(const struct lu_env *env,
1047                                          struct lu_device *lu)
1048 {
1049         struct mdd_device *m = lu2mdd_dev(lu);
1050         struct lu_device  *next = &m->mdd_child->dd_lu_dev;
1051         ENTRY;
1052
1053         LASSERT(atomic_read(&lu->ld_ref) == 0);
1054         md_device_fini(&m->mdd_md_dev);
1055         OBD_FREE_PTR(m);
1056         RETURN(next);
1057 }
1058
1059 static struct obd_ops mdd_obd_device_ops = {
1060         .o_owner = THIS_MODULE
1061 };
1062
1063 /* context key constructor/destructor: mdd_ucred_key_init, mdd_ucred_key_fini */
1064 LU_KEY_INIT_FINI(mdd_ucred, struct md_ucred);
1065
1066 static struct lu_context_key mdd_ucred_key = {
1067         .lct_tags = LCT_SESSION,
1068         .lct_init = mdd_ucred_key_init,
1069         .lct_fini = mdd_ucred_key_fini
1070 };
1071
1072 struct md_ucred *md_ucred(const struct lu_env *env)
1073 {
1074         LASSERT(env->le_ses != NULL);
1075         return lu_context_key_get(env->le_ses, &mdd_ucred_key);
1076 }
1077 EXPORT_SYMBOL(md_ucred);
1078
1079 /*
1080  * context key constructor/destructor:
1081  * mdd_capainfo_key_init, mdd_capainfo_key_fini
1082  */
1083 LU_KEY_INIT_FINI(mdd_capainfo, struct md_capainfo);
1084
1085 struct lu_context_key mdd_capainfo_key = {
1086         .lct_tags = LCT_SESSION,
1087         .lct_init = mdd_capainfo_key_init,
1088         .lct_fini = mdd_capainfo_key_fini
1089 };
1090
1091 struct md_capainfo *md_capainfo(const struct lu_env *env)
1092 {
1093         /* NB, in mdt_init0 */
1094         if (env->le_ses == NULL)
1095                 return NULL;
1096         return lu_context_key_get(env->le_ses, &mdd_capainfo_key);
1097 }
1098 EXPORT_SYMBOL(md_capainfo);
1099
1100 static int mdd_changelog_user_register(struct mdd_device *mdd, int *id)
1101 {
1102         struct llog_ctxt *ctxt;
1103         struct llog_changelog_user_rec *rec;
1104         int rc;
1105         ENTRY;
1106
1107         ctxt = llog_get_context(mdd2obd_dev(mdd),LLOG_CHANGELOG_USER_ORIG_CTXT);
1108         if (ctxt == NULL)
1109                 RETURN(-ENXIO);
1110
1111         OBD_ALLOC_PTR(rec);
1112         if (rec == NULL) {
1113                 llog_ctxt_put(ctxt);
1114                 RETURN(-ENOMEM);
1115         }
1116
1117         /* Assume we want it on since somebody registered */
1118         rc = mdd_changelog_on(mdd, 1);
1119         if (rc)
1120                 GOTO(out, rc);
1121
1122         rec->cur_hdr.lrh_len = sizeof(*rec);
1123         rec->cur_hdr.lrh_type = CHANGELOG_USER_REC;
1124         spin_lock(&mdd->mdd_cl.mc_user_lock);
1125         if (mdd->mdd_cl.mc_lastuser == (unsigned int)(-1)) {
1126                 spin_unlock(&mdd->mdd_cl.mc_user_lock);
1127                 CERROR("Maximum number of changelog users exceeded!\n");
1128                 GOTO(out, rc = -EOVERFLOW);
1129         }
1130         *id = rec->cur_id = ++mdd->mdd_cl.mc_lastuser;
1131         rec->cur_endrec = mdd->mdd_cl.mc_index;
1132         spin_unlock(&mdd->mdd_cl.mc_user_lock);
1133
1134         rc = llog_add(ctxt, &rec->cur_hdr, NULL, NULL, 0);
1135
1136         CDEBUG(D_IOCTL, "Registered changelog user %d\n", *id);
1137 out:
1138         OBD_FREE_PTR(rec);
1139         llog_ctxt_put(ctxt);
1140         RETURN(rc);
1141 }
1142
1143 struct mdd_changelog_user_data {
1144         __u64 mcud_endrec; /**< purge record for this user */
1145         __u64 mcud_minrec; /**< lowest changelog recno still referenced */
1146         __u32 mcud_id;
1147         __u32 mcud_minid;  /**< user id with lowest rec reference */
1148         __u32 mcud_usercount;
1149         int   mcud_found:1;
1150 };
1151 #define MCUD_UNREGISTER -1LL
1152
1153 /** Two things:
1154  * 1. Find the smallest record everyone is willing to purge
1155  * 2. Update the last purgeable record for this user
1156  */
1157 static int mdd_changelog_user_purge_cb(struct llog_handle *llh,
1158                                        struct llog_rec_hdr *hdr, void *data)
1159 {
1160         struct llog_changelog_user_rec *rec;
1161         struct mdd_changelog_user_data *mcud =
1162                 (struct mdd_changelog_user_data *)data;
1163         int rc;
1164         ENTRY;
1165
1166         LASSERT(llh->lgh_hdr->llh_flags & LLOG_F_IS_PLAIN);
1167
1168         rec = (struct llog_changelog_user_rec *)hdr;
1169
1170         mcud->mcud_usercount++;
1171
1172         /* If we have a new endrec for this id, use it for the following
1173            min check instead of its old value */
1174         if (rec->cur_id == mcud->mcud_id)
1175                 rec->cur_endrec = max(rec->cur_endrec, mcud->mcud_endrec);
1176
1177         /* Track the minimum referenced record */
1178         if (mcud->mcud_minid == 0 || mcud->mcud_minrec > rec->cur_endrec) {
1179                 mcud->mcud_minid = rec->cur_id;
1180                 mcud->mcud_minrec = rec->cur_endrec;
1181         }
1182
1183         if (rec->cur_id != mcud->mcud_id)
1184                 RETURN(0);
1185
1186         /* Update this user's record */
1187         mcud->mcud_found = 1;
1188
1189         /* Special case: unregister this user */
1190         if (mcud->mcud_endrec == MCUD_UNREGISTER) {
1191                 struct llog_cookie cookie;
1192                 cookie.lgc_lgl = llh->lgh_id;
1193                 cookie.lgc_index = hdr->lrh_index;
1194                 rc = llog_cat_cancel_records(llh->u.phd.phd_cat_handle,
1195                                              1, &cookie);
1196                 if (rc == 0)
1197                         mcud->mcud_usercount--;
1198                 RETURN(rc);
1199         }
1200
1201         /* Update the endrec */
1202         CDEBUG(D_IOCTL, "Rewriting changelog user %d endrec to "LPU64"\n",
1203                mcud->mcud_id, rec->cur_endrec);
1204
1205         /* hdr+1 is loc of data */
1206         hdr->lrh_len -= sizeof(*hdr) + sizeof(struct llog_rec_tail);
1207         rc = llog_write_rec(llh, hdr, NULL, 0, (void *)(hdr + 1),
1208                             hdr->lrh_index);
1209
1210         RETURN(rc);
1211 }
1212
1213 static int mdd_changelog_user_purge(struct mdd_device *mdd, int id,
1214                                     long long endrec)
1215 {
1216         struct mdd_changelog_user_data data;
1217         struct llog_ctxt *ctxt;
1218         int rc;
1219         ENTRY;
1220
1221         CDEBUG(D_IOCTL, "Purge request: id=%d, endrec="LPD64"\n", id, endrec);
1222
1223         data.mcud_id = id;
1224         data.mcud_minid = 0;
1225         data.mcud_minrec = 0;
1226         data.mcud_usercount = 0;
1227         data.mcud_endrec = endrec;
1228         spin_lock(&mdd->mdd_cl.mc_lock);
1229         endrec = mdd->mdd_cl.mc_index;
1230         spin_unlock(&mdd->mdd_cl.mc_lock);
1231         if ((data.mcud_endrec == 0) ||
1232             ((data.mcud_endrec > endrec) &&
1233              (data.mcud_endrec != MCUD_UNREGISTER)))
1234                 data.mcud_endrec = endrec;
1235
1236         ctxt = llog_get_context(mdd2obd_dev(mdd),LLOG_CHANGELOG_USER_ORIG_CTXT);
1237         if (ctxt == NULL)
1238                 return -ENXIO;
1239         LASSERT(ctxt->loc_handle->lgh_hdr->llh_flags & LLOG_F_IS_CAT);
1240
1241         rc = llog_cat_process(ctxt->loc_handle, mdd_changelog_user_purge_cb,
1242                               (void *)&data, 0, 0);
1243         if ((rc >= 0) && (data.mcud_minrec > 0)) {
1244                 CDEBUG(D_IOCTL, "Purging changelog entries up to "LPD64
1245                        ", referenced by "CHANGELOG_USER_PREFIX"%d\n",
1246                        data.mcud_minrec, data.mcud_minid);
1247                 rc = mdd_changelog_llog_cancel(mdd, data.mcud_minrec);
1248         } else {
1249                 CWARN("Could not determine changelog records to purge; rc=%d\n",
1250                       rc);
1251         }
1252
1253         llog_ctxt_put(ctxt);
1254
1255         if (!data.mcud_found) {
1256                 CWARN("No entry for user %d.  Last changelog reference is "
1257                       LPD64" by changelog user %d\n", data.mcud_id,
1258                       data.mcud_minrec, data.mcud_minid);
1259                rc = -ENOENT;
1260         }
1261
1262         if (!rc && data.mcud_usercount == 0)
1263                 /* No more users; turn changelogs off */
1264                 rc = mdd_changelog_on(mdd, 0);
1265
1266         RETURN (rc);
1267 }
1268
1269 /** mdd_iocontrol
1270  * May be called remotely from mdt_iocontrol_handle or locally from
1271  * mdt_iocontrol. Data may be freeform - remote handling doesn't enforce or
1272  * swab an obd_ioctl_data format (but local ioctl handler does).
1273  * \param cmd - ioc
1274  * \param len - data len
1275  * \param karg - ioctl data, in kernel space
1276  */
1277 static int mdd_iocontrol(const struct lu_env *env, struct md_device *m,
1278                          unsigned int cmd, int len, void *karg)
1279 {
1280         struct mdd_device *mdd;
1281         struct obd_ioctl_data *data = karg;
1282         int rc;
1283         ENTRY;
1284
1285         mdd = lu2mdd_dev(&m->md_lu_dev);
1286
1287         /* Doesn't use obd_ioctl_data */
1288         if (cmd == OBD_IOC_CHANGELOG_CLEAR) {
1289                 struct changelog_setinfo *cs = karg;
1290                 if (len != sizeof(*cs)) {
1291                         CERROR("Bad changelog_clear ioctl size %d\n", len);
1292                         RETURN(-EINVAL);
1293                 }
1294                 rc = mdd_changelog_user_purge(mdd, cs->cs_id, cs->cs_recno);
1295                 RETURN(rc);
1296         }
1297
1298         /* Below ioctls use obd_ioctl_data */
1299         if (len != sizeof(*data)) {
1300                 CERROR("Bad ioctl size %d\n", len);
1301                 RETURN(-EINVAL);
1302         }
1303         if (data->ioc_version != OBD_IOCTL_VERSION) {
1304                 CERROR("Bad magic %x != %x\n", data->ioc_version,
1305                        OBD_IOCTL_VERSION);
1306                 RETURN(-EINVAL);
1307         }
1308
1309         switch (cmd) {
1310         case OBD_IOC_CHANGELOG_REG:
1311                 rc = mdd_changelog_user_register(mdd, &data->ioc_u32_1);
1312                 break;
1313         case OBD_IOC_CHANGELOG_DEREG:
1314                 rc = mdd_changelog_user_purge(mdd, data->ioc_u32_1,
1315                                               MCUD_UNREGISTER);
1316                 break;
1317         default:
1318                 rc = -EOPNOTSUPP;
1319         }
1320
1321         RETURN (rc);
1322 }
1323
1324 /* type constructor/destructor: mdd_type_init, mdd_type_fini */
1325 LU_TYPE_INIT_FINI(mdd, &mdd_thread_key, &mdd_ucred_key, &mdd_capainfo_key);
1326
1327 const struct md_device_operations mdd_ops = {
1328         .mdo_statfs         = mdd_statfs,
1329         .mdo_root_get       = mdd_root_get,
1330         .mdo_maxsize_get    = mdd_maxsize_get,
1331         .mdo_init_capa_ctxt = mdd_init_capa_ctxt,
1332         .mdo_update_capa_key= mdd_update_capa_key,
1333         .mdo_llog_ctxt_get  = mdd_llog_ctxt_get,
1334         .mdo_iocontrol      = mdd_iocontrol,
1335 #ifdef HAVE_QUOTA_SUPPORT
1336         .mdo_quota          = {
1337                 .mqo_notify      = mdd_quota_notify,
1338                 .mqo_setup       = mdd_quota_setup,
1339                 .mqo_cleanup     = mdd_quota_cleanup,
1340                 .mqo_recovery    = mdd_quota_recovery,
1341                 .mqo_check       = mdd_quota_check,
1342                 .mqo_on          = mdd_quota_on,
1343                 .mqo_off         = mdd_quota_off,
1344                 .mqo_setinfo     = mdd_quota_setinfo,
1345                 .mqo_getinfo     = mdd_quota_getinfo,
1346                 .mqo_setquota    = mdd_quota_setquota,
1347                 .mqo_getquota    = mdd_quota_getquota,
1348                 .mqo_getoinfo    = mdd_quota_getoinfo,
1349                 .mqo_getoquota   = mdd_quota_getoquota,
1350                 .mqo_invalidate  = mdd_quota_invalidate,
1351                 .mqo_finvalidate = mdd_quota_finvalidate
1352         }
1353 #endif
1354 };
1355
1356 static struct lu_device_type_operations mdd_device_type_ops = {
1357         .ldto_init = mdd_type_init,
1358         .ldto_fini = mdd_type_fini,
1359
1360         .ldto_start = mdd_type_start,
1361         .ldto_stop  = mdd_type_stop,
1362
1363         .ldto_device_alloc = mdd_device_alloc,
1364         .ldto_device_free  = mdd_device_free,
1365
1366         .ldto_device_init    = mdd_device_init,
1367         .ldto_device_fini    = mdd_device_fini
1368 };
1369
1370 static struct lu_device_type mdd_device_type = {
1371         .ldt_tags     = LU_DEVICE_MD,
1372         .ldt_name     = LUSTRE_MDD_NAME,
1373         .ldt_ops      = &mdd_device_type_ops,
1374         .ldt_ctx_tags = LCT_MD_THREAD
1375 };
1376
1377 /* context key constructor: mdd_key_init */
1378 LU_KEY_INIT(mdd, struct mdd_thread_info);
1379
1380 static void mdd_key_fini(const struct lu_context *ctx,
1381                          struct lu_context_key *key, void *data)
1382 {
1383         struct mdd_thread_info *info = data;
1384         if (info->mti_max_lmm != NULL)
1385                 OBD_FREE(info->mti_max_lmm, info->mti_max_lmm_size);
1386         if (info->mti_max_cookie != NULL)
1387                 OBD_FREE(info->mti_max_cookie, info->mti_max_cookie_size);
1388         mdd_buf_put(&info->mti_big_buf);
1389
1390         OBD_FREE_PTR(info);
1391 }
1392
1393 /* context key: mdd_thread_key */
1394 LU_CONTEXT_KEY_DEFINE(mdd, LCT_MD_THREAD);
1395
1396 static struct lu_local_obj_desc llod_capa_key = {
1397         .llod_name      = CAPA_KEYS,
1398         .llod_oid       = MDD_CAPA_KEYS_OID,
1399         .llod_is_index  = 0,
1400 };
1401
1402 static struct lu_local_obj_desc llod_mdd_orphan = {
1403         .llod_name      = orph_index_name,
1404         .llod_oid       = MDD_ORPHAN_OID,
1405         .llod_is_index  = 1,
1406         .llod_feat      = &dt_directory_features,
1407 };
1408
1409 static struct lu_local_obj_desc llod_mdd_root = {
1410         .llod_name      = mdd_root_dir_name,
1411         .llod_oid       = MDD_ROOT_INDEX_OID,
1412         .llod_is_index  = 1,
1413         .llod_feat      = &dt_directory_features,
1414 };
1415
1416 static int __init mdd_mod_init(void)
1417 {
1418         struct lprocfs_static_vars lvars;
1419         lprocfs_mdd_init_vars(&lvars);
1420
1421         llo_local_obj_register(&llod_capa_key);
1422         llo_local_obj_register(&llod_mdd_orphan);
1423         llo_local_obj_register(&llod_mdd_root);
1424
1425         return class_register_type(&mdd_obd_device_ops, NULL, lvars.module_vars,
1426                                    LUSTRE_MDD_NAME, &mdd_device_type);
1427 }
1428
1429 static void __exit mdd_mod_exit(void)
1430 {
1431         llo_local_obj_unregister(&llod_capa_key);
1432         llo_local_obj_unregister(&llod_mdd_orphan);
1433         llo_local_obj_unregister(&llod_mdd_root);
1434
1435         class_unregister_type(LUSTRE_MDD_NAME);
1436 }
1437
1438 MODULE_AUTHOR("Sun Microsystems, Inc. <http://www.lustre.org/>");
1439 MODULE_DESCRIPTION("Lustre Meta-data Device Prototype ("LUSTRE_MDD_NAME")");
1440 MODULE_LICENSE("GPL");
1441
1442 cfs_module(mdd, "0.1.0", mdd_mod_init, mdd_mod_exit);