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