Whamcloud - gitweb
b=18452
[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         if (!(llh->lgh_hdr->llh_flags & LLOG_F_IS_PLAIN)) {
136                 CERROR("log is not plain\n");
137                 RETURN(-EINVAL);
138         }
139         if (rec->cr_hdr.lrh_type != CHANGELOG_REC) {
140                 CERROR("Not a changelog rec? %d\n", rec->cr_hdr.lrh_type);
141                 RETURN(-EINVAL);
142         }
143
144         CDEBUG(D_INODE,
145                "seeing record at index %d/%d/"LPU64" t=%x %.*s in log "LPX64"\n",
146                hdr->lrh_index, rec->cr_hdr.lrh_index, rec->cr_index,
147                rec->cr_type, rec->cr_namelen, rec->cr_name,
148                llh->lgh_id.lgl_oid);
149
150         mdd->mdd_cl.mc_index = rec->cr_index;
151         RETURN(LLOG_PROC_BREAK);
152 }
153
154 static int mdd_changelog_llog_init(struct mdd_device *mdd)
155 {
156         struct obd_device *obd = mdd2obd_dev(mdd);
157         struct llog_ctxt *ctxt;
158         int rc;
159
160         ctxt = llog_get_context(obd, LLOG_CHANGELOG_ORIG_CTXT);
161         if (ctxt == NULL) {
162                 CERROR("no context\n");
163                 return -EINVAL;
164         }
165         if (!ctxt->loc_handle) {
166                 CERROR("no handle\n");
167                 return -EINVAL;
168         }
169         rc = llog_cat_reverse_process(ctxt->loc_handle, changelog_init_cb, mdd);
170         llog_ctxt_put(ctxt);
171
172         if (rc < 0)
173                 CERROR("changelog init failed: %d\n", rc);
174         else
175                 rc = 0; /* llog_proc_break is ok */
176
177         CDEBUG(D_INODE, "changelog_init index="LPU64"\n", mdd->mdd_cl.mc_index);
178
179         return rc;
180 }
181
182 static int mdd_changelog_init(const struct lu_env *env, struct mdd_device *mdd)
183 {
184         int rc;
185
186         mdd->mdd_cl.mc_index = 0;
187         spin_lock_init(&mdd->mdd_cl.mc_lock);
188         cfs_waitq_init(&mdd->mdd_cl.mc_waitq);
189
190         mdd->mdd_cl.mc_starttime = cfs_time_current_64();
191         mdd->mdd_cl.mc_flags = 0; /* off by default */
192         mdd->mdd_cl.mc_mask = CL_DEFMASK;
193         rc = mdd_changelog_llog_init(mdd);
194         if (rc) {
195                 CERROR("Changelog setup during init failed %d\n", rc);
196                 mdd->mdd_cl.mc_flags |= CLM_ERR;
197         }
198         return rc;
199 }
200
201 static void mdd_changelog_fini(const struct lu_env *env, struct mdd_device *mdd)
202 {
203         mdd->mdd_cl.mc_flags = 0;
204 }
205
206 /** Add a changelog entry \a rec to the changelog llog
207  * \param mdd
208  * \param rec
209  * \param handle - currently ignored since llogs start their own transaction;
210  *                 this will hopefully be fixed in llog rewrite
211  * \retval 0 ok
212  */
213 int mdd_changelog_llog_write(struct mdd_device         *mdd,
214                              struct llog_changelog_rec *rec,
215                              struct thandle            *handle)
216 {
217         struct obd_device *obd = mdd2obd_dev(mdd);
218         struct llog_ctxt *ctxt;
219         int rc;
220
221         if ((mdd->mdd_cl.mc_mask & (1 << rec->cr_type)) == 0)
222                 return 0;
223
224         rec->cr_hdr.lrh_len = llog_data_len(sizeof(*rec) + rec->cr_namelen);
225         /* llog_lvfs_write_rec sets the llog tail len */
226         rec->cr_hdr.lrh_type = CHANGELOG_REC;
227         rec->cr_time = cfs_time_current_64();
228         spin_lock(&mdd->mdd_cl.mc_lock);
229         /* NB: I suppose it's possible llog_add adds out of order wrt cr_index,
230            but as long as the MDD transactions are ordered correctly for e.g.
231            rename conflicts, I don't think this should matter. */
232         rec->cr_index = ++mdd->mdd_cl.mc_index;
233         spin_unlock(&mdd->mdd_cl.mc_lock);
234         ctxt = llog_get_context(obd, LLOG_CHANGELOG_ORIG_CTXT);
235         if (ctxt == NULL)
236                 return -ENXIO;
237
238         /* nested journal transaction */
239         rc = llog_add(ctxt, &rec->cr_hdr, NULL, NULL, 0);
240         llog_ctxt_put(ctxt);
241
242         cfs_waitq_signal(&mdd->mdd_cl.mc_waitq);
243
244         return rc;
245 }
246
247 /** Remove entries with indicies up to and including \a endrec from the
248  *  changelog
249  * \param mdd
250  * \param endrec
251  * \retval 0 ok
252  */
253 int mdd_changelog_llog_cancel(struct mdd_device *mdd, long long endrec)
254 {
255         struct obd_device *obd = mdd2obd_dev(mdd);
256         struct llog_ctxt *ctxt;
257         int rc;
258
259         ctxt = llog_get_context(obd, LLOG_CHANGELOG_ORIG_CTXT);
260         if (ctxt == NULL)
261                 return -ENXIO;
262
263         /* Some records purged; reset repeat-access time */
264         mdd->mdd_cl.mc_starttime = cfs_time_current_64();
265
266         rc = llog_cancel(ctxt, NULL, 1, (struct llog_cookie *)&endrec, 0);
267
268         llog_ctxt_put(ctxt);
269
270         return rc;
271 }
272
273 /** Add a CL_MARK record to the changelog
274  * \param mdd
275  * \param markerflags - CLM_*
276  * \retval 0 ok
277  */
278 int mdd_changelog_write_header(struct mdd_device *mdd, int markerflags)
279 {
280         struct obd_device *obd = mdd2obd_dev(mdd);
281         struct llog_changelog_rec *rec;
282         int reclen;
283         int len = strlen(obd->obd_name);
284         int rc;
285         ENTRY;
286
287         reclen = llog_data_len(sizeof(*rec) + len);
288         OBD_ALLOC(rec, reclen);
289         if (rec == NULL)
290                 RETURN(-ENOMEM);
291
292         rec->cr_flags = CLF_VERSION;
293         rec->cr_type = CL_MARK;
294         rec->cr_namelen = len;
295         memcpy(rec->cr_name, obd->obd_name, rec->cr_namelen);
296         /* Status and action flags */
297         rec->cr_markerflags = mdd->mdd_cl.mc_flags | markerflags;
298
299         rc = mdd_changelog_llog_write(mdd, rec, NULL);
300
301         /* assume on or off event; reset repeat-access time */
302         mdd->mdd_cl.mc_starttime = rec->cr_time;
303
304         OBD_FREE(rec, reclen);
305         RETURN(rc);
306 }
307
308 /**
309  * Create ".lustre" directory.
310  */
311 static int create_dot_lustre_dir(const struct lu_env *env, struct mdd_device *m)
312 {
313         struct lu_fid *fid = &mdd_env_info(env)->mti_fid;
314         struct md_object *mdo;
315         int rc;
316
317         memcpy(fid, &LU_DOT_LUSTRE_FID, sizeof(struct lu_fid));
318         mdo = llo_store_create_index(env, &m->mdd_md_dev, m->mdd_child,
319                                      mdd_root_dir_name, mdd_dot_lustre_name,
320                                      fid, &dt_directory_features);
321         /* .lustre dir may be already present */
322         if (IS_ERR(mdo) && PTR_ERR(mdo) != -EEXIST) {
323                 rc = PTR_ERR(mdo);
324                 CERROR("creating obj [%s] fid = "DFID" rc = %d\n",
325                         mdd_dot_lustre_name, PFID(fid), rc);
326                 RETURN(rc);
327         }
328
329         return 0;
330 }
331
332 static int dot_lustre_attr_get(const struct lu_env *env, struct md_object *obj,
333                                struct md_attr *ma)
334 {
335         struct mdd_object *mdd_obj = md2mdd_obj(obj);
336
337         return mdd_attr_get_internal_locked(env, mdd_obj, ma);
338 }
339
340 static int dot_lustre_attr_set(const struct lu_env *env, struct md_object *obj,
341                                const struct md_attr *ma)
342 {
343         return -EPERM;
344 }
345
346 static int dot_lustre_xattr_get(const struct lu_env *env,
347                                 struct md_object *obj, struct lu_buf *buf,
348                                 const char *name)
349 {
350         return 0;
351 }
352
353 static int dot_lustre_mdd_open(const struct lu_env *env, struct md_object *obj,
354                                int flags)
355 {
356         struct mdd_object *mdd_obj = md2mdd_obj(obj);
357
358         mdd_write_lock(env, mdd_obj, MOR_TGT_CHILD);
359         mdd_obj->mod_count++;
360         mdd_write_unlock(env, mdd_obj);
361
362         return 0;
363 }
364
365 static int dot_lustre_path(const struct lu_env *env, struct md_object *obj,
366                            char *path, int pathlen, __u64 recno, int *linkno)
367 {
368         return -ENOSYS;
369 }
370
371 static int dot_lustre_close(const struct lu_env *env, struct md_object *obj,
372                          struct md_attr *ma)
373 {
374         struct mdd_object *mdd_obj = md2mdd_obj(obj);
375
376         mdd_write_lock(env, mdd_obj, MOR_TGT_CHILD);
377         mdd_obj->mod_count--;
378         mdd_write_unlock(env, mdd_obj);
379
380         return 0;
381 }
382
383 static struct md_object_operations mdd_dot_lustre_obj_ops = {
384         .moo_attr_get   = dot_lustre_attr_get,
385         .moo_attr_set   = dot_lustre_attr_set,
386         .moo_xattr_get  = dot_lustre_xattr_get,
387         .moo_open       = dot_lustre_mdd_open,
388         .moo_close      = dot_lustre_close,
389         .moo_readpage   = mdd_readpage,
390         .moo_path       = dot_lustre_path
391 };
392
393 static int dot_lustre_lookup(const struct lu_env *env, struct md_object *p,
394                              const struct lu_name *lname, struct lu_fid *f,
395                              struct md_op_spec *spec)
396 {
397         if (strcmp(lname->ln_name, mdd_obf_dir_name) == 0)
398                 *f = LU_OBF_FID;
399         else
400                 return -ENOENT;
401
402         return 0;
403 }
404
405 static int dot_lustre_create(const struct lu_env *env, struct md_object *pobj,
406                              const struct lu_name *lname,
407                              struct md_object *child, struct md_op_spec *spec,
408                              struct md_attr* ma)
409 {
410         return -EPERM;
411 }
412
413 static int dot_lustre_rename(const struct lu_env *env,
414                              struct md_object *src_pobj,
415                              struct md_object *tgt_pobj,
416                              const struct lu_fid *lf,
417                              const struct lu_name *lsname,
418                              struct md_object *tobj,
419                              const struct lu_name *ltname, struct md_attr *ma)
420 {
421         return -EPERM;
422 }
423
424 static int dot_lustre_link(const struct lu_env *env, struct md_object *tgt_obj,
425                            struct md_object *src_obj,
426                            const struct lu_name *lname, struct md_attr *ma)
427 {
428         return -EPERM;
429 }
430
431 static int dot_lustre_unlink(const struct lu_env *env, struct md_object *pobj,
432                              struct md_object *cobj, const struct lu_name *lname,
433                              struct md_attr *ma)
434 {
435         return -EPERM;
436 }
437
438 static struct md_dir_operations mdd_dot_lustre_dir_ops = {
439         .mdo_lookup = dot_lustre_lookup,
440         .mdo_create = dot_lustre_create,
441         .mdo_rename = dot_lustre_rename,
442         .mdo_link   = dot_lustre_link,
443         .mdo_unlink = dot_lustre_unlink,
444 };
445
446 static int obf_attr_get(const struct lu_env *env, struct md_object *obj,
447                         struct md_attr *ma)
448 {
449         int rc = 0;
450
451         if (ma->ma_need & MA_INODE) {
452                 struct mdd_device *mdd = mdo2mdd(obj);
453
454                 /* "fid" is a virtual object and hence does not have any "real"
455                  * attributes. So we reuse attributes of .lustre for "fid" dir */
456                 ma->ma_need |= MA_INODE;
457                 rc = dot_lustre_attr_get(env, &mdd->mdd_dot_lustre->mod_obj, ma);
458                 if (rc)
459                         return rc;
460                 ma->ma_valid |= MA_INODE;
461         }
462
463         /* "fid" directory does not have any striping information. */
464         if (ma->ma_need & MA_LOV) {
465                 struct mdd_object *mdd_obj = md2mdd_obj(obj);
466
467                 if (ma->ma_valid & MA_LOV)
468                         return 0;
469
470                 if (!(S_ISREG(mdd_object_type(mdd_obj)) ||
471                       S_ISDIR(mdd_object_type(mdd_obj))))
472                         return 0;
473
474                 if (ma->ma_need & MA_LOV_DEF) {
475                         rc = mdd_get_default_md(mdd_obj, ma->ma_lmm,
476                                         &ma->ma_lmm_size);
477                         if (rc > 0) {
478                                 ma->ma_valid |= MA_LOV;
479                                 rc = 0;
480                         }
481                 }
482         }
483
484         return rc;
485 }
486
487 static int obf_attr_set(const struct lu_env *env, struct md_object *obj,
488                         const struct md_attr *ma)
489 {
490         return -EPERM;
491 }
492
493 static int obf_xattr_get(const struct lu_env *env,
494                          struct md_object *obj, struct lu_buf *buf,
495                          const char *name)
496 {
497         return 0;
498 }
499
500 static int obf_mdd_open(const struct lu_env *env, struct md_object *obj,
501                         int flags)
502 {
503         struct mdd_object *mdd_obj = md2mdd_obj(obj);
504
505         mdd_write_lock(env, mdd_obj, MOR_TGT_CHILD);
506         mdd_obj->mod_count++;
507         mdd_write_unlock(env, mdd_obj);
508
509         return 0;
510 }
511
512 static int obf_mdd_close(const struct lu_env *env, struct md_object *obj,
513                          struct md_attr *ma)
514 {
515         struct mdd_object *mdd_obj = md2mdd_obj(obj);
516
517         mdd_write_lock(env, mdd_obj, MOR_TGT_CHILD);
518         mdd_obj->mod_count--;
519         mdd_write_unlock(env, mdd_obj);
520
521         return 0;
522 }
523
524 /** Nothing to list in "fid" directory */
525 static int obf_mdd_readpage(const struct lu_env *env, struct md_object *obj,
526                             const struct lu_rdpg *rdpg)
527 {
528         return -EPERM;
529 }
530
531 static int obf_path(const struct lu_env *env, struct md_object *obj,
532                     char *path, int pathlen, __u64 recno, int *linkno)
533 {
534         return -ENOSYS;
535 }
536
537 static struct md_object_operations mdd_obf_obj_ops = {
538         .moo_attr_get   = obf_attr_get,
539         .moo_attr_set   = obf_attr_set,
540         .moo_xattr_get  = obf_xattr_get,
541         .moo_open       = obf_mdd_open,
542         .moo_close      = obf_mdd_close,
543         .moo_readpage   = obf_mdd_readpage,
544         .moo_path       = obf_path
545 };
546
547 /**
548  * Lookup method for "fid" object. Only filenames with correct SEQ:OID format
549  * are valid. We also check if object with passed fid exists or not.
550  */
551 static int obf_lookup(const struct lu_env *env, struct md_object *p,
552                       const struct lu_name *lname, struct lu_fid *f,
553                       struct md_op_spec *spec)
554 {
555         char *name = (char *)lname->ln_name;
556         struct mdd_device *mdd = mdo2mdd(p);
557         struct mdd_object *child;
558         int rc = 0;
559
560         while (*name == '[')
561                 name++;
562
563         sscanf(name, SFID, &(f->f_seq), &(f->f_oid),
564                &(f->f_ver));
565         if (!fid_is_sane(f)) {
566                 CWARN("bad FID format [%s], should be "DFID"\n", lname->ln_name,
567                       (__u64)1, 2, 0);
568                 GOTO(out, rc = -EINVAL);
569         }
570
571         /* Check if object with this fid exists */
572         child = mdd_object_find(env, mdd, f);
573         if (child == NULL)
574                 GOTO(out, rc = 0);
575         if (IS_ERR(child))
576                 GOTO(out, rc = PTR_ERR(child));
577
578         if (mdd_object_exists(child) == 0)
579                 rc = -ENOENT;
580
581         mdd_object_put(env, child);
582
583 out:
584         return rc;
585 }
586
587 static int obf_create(const struct lu_env *env, struct md_object *pobj,
588                       const struct lu_name *lname, struct md_object *child,
589                       struct md_op_spec *spec, struct md_attr* ma)
590 {
591         return -EPERM;
592 }
593
594 static int obf_rename(const struct lu_env *env,
595                       struct md_object *src_pobj, struct md_object *tgt_pobj,
596                       const struct lu_fid *lf, const struct lu_name *lsname,
597                       struct md_object *tobj, const struct lu_name *ltname,
598                       struct md_attr *ma)
599 {
600         return -EPERM;
601 }
602
603 static int obf_link(const struct lu_env *env, struct md_object *tgt_obj,
604                     struct md_object *src_obj, const struct lu_name *lname,
605                     struct md_attr *ma)
606 {
607         return -EPERM;
608 }
609
610 static int obf_unlink(const struct lu_env *env, struct md_object *pobj,
611                       struct md_object *cobj, const struct lu_name *lname,
612                       struct md_attr *ma)
613 {
614         return -EPERM;
615 }
616
617 static struct md_dir_operations mdd_obf_dir_ops = {
618         .mdo_lookup = obf_lookup,
619         .mdo_create = obf_create,
620         .mdo_rename = obf_rename,
621         .mdo_link   = obf_link,
622         .mdo_unlink = obf_unlink
623 };
624
625 /**
626  * Create special in-memory "fid" object for open-by-fid.
627  */
628 static int mdd_obf_setup(const struct lu_env *env, struct mdd_device *m)
629 {
630         struct mdd_object *mdd_obf;
631         struct lu_object *obf_lu_obj;
632         int rc = 0;
633
634         m->mdd_dot_lustre_objs.mdd_obf = mdd_object_find(env, m,
635                                                          &LU_OBF_FID);
636         if (m->mdd_dot_lustre_objs.mdd_obf == NULL ||
637             IS_ERR(m->mdd_dot_lustre_objs.mdd_obf))
638                 GOTO(out, rc = -ENOENT);
639
640         mdd_obf = m->mdd_dot_lustre_objs.mdd_obf;
641         mdd_obf->mod_obj.mo_dir_ops = &mdd_obf_dir_ops;
642         mdd_obf->mod_obj.mo_ops = &mdd_obf_obj_ops;
643         /* Don't allow objects to be created in "fid" dir */
644         mdd_obf->mod_flags |= IMMUTE_OBJ;
645
646         obf_lu_obj = mdd2lu_obj(mdd_obf);
647         obf_lu_obj->lo_header->loh_attr |= (LOHA_EXISTS | S_IFDIR);
648
649 out:
650         return rc;
651 }
652
653 /** Setup ".lustre" directory object */
654 static int mdd_dot_lustre_setup(const struct lu_env *env, struct mdd_device *m)
655 {
656         struct dt_object *dt_dot_lustre;
657         struct lu_fid *fid = &mdd_env_info(env)->mti_fid;
658         int rc;
659
660         rc = create_dot_lustre_dir(env, m);
661         if (rc)
662                 return rc;
663
664         dt_dot_lustre = dt_store_open(env, m->mdd_child, mdd_root_dir_name,
665                                       mdd_dot_lustre_name, fid);
666         if (IS_ERR(dt_dot_lustre)) {
667                 rc = PTR_ERR(dt_dot_lustre);
668                 GOTO(out, rc);
669         }
670
671         /* references are released in mdd_device_shutdown() */
672         m->mdd_dot_lustre = lu2mdd_obj(lu_object_locate(dt_dot_lustre->do_lu.lo_header,
673                                                         &mdd_device_type));
674
675         lu_object_put(env, &dt_dot_lustre->do_lu);
676
677         m->mdd_dot_lustre->mod_obj.mo_dir_ops = &mdd_dot_lustre_dir_ops;
678         m->mdd_dot_lustre->mod_obj.mo_ops = &mdd_dot_lustre_obj_ops;
679
680         rc = mdd_obf_setup(env, m);
681         if (rc)
682                 CERROR("Error initializing \"fid\" object - %d.\n", rc);
683
684 out:
685         RETURN(rc);
686 }
687
688 static int mdd_process_config(const struct lu_env *env,
689                               struct lu_device *d, struct lustre_cfg *cfg)
690 {
691         struct mdd_device *m    = lu2mdd_dev(d);
692         struct dt_device  *dt   = m->mdd_child;
693         struct lu_device  *next = &dt->dd_lu_dev;
694         int rc;
695         ENTRY;
696
697         switch (cfg->lcfg_command) {
698         case LCFG_PARAM: {
699                 struct lprocfs_static_vars lvars;
700
701                 lprocfs_mdd_init_vars(&lvars);
702                 rc = class_process_proc_param(PARAM_MDD, lvars.obd_vars, cfg,m);
703                 if (rc > 0 || rc == -ENOSYS)
704                         /* we don't understand; pass it on */
705                         rc = next->ld_ops->ldo_process_config(env, next, cfg);
706                 break;
707         }
708         case LCFG_SETUP:
709                 rc = next->ld_ops->ldo_process_config(env, next, cfg);
710                 if (rc)
711                         GOTO(out, rc);
712                 dt->dd_ops->dt_conf_get(env, dt, &m->mdd_dt_conf);
713
714                 rc = mdd_init_obd(env, m, cfg);
715                 if (rc) {
716                         CERROR("lov init error %d \n", rc);
717                         GOTO(out, rc);
718                 }
719                 rc = mdd_txn_init_credits(env, m);
720                 if (rc)
721                         break;
722
723                 mdd_changelog_init(env, m);
724                 break;
725         case LCFG_CLEANUP:
726                 mdd_device_shutdown(env, m, cfg);
727         default:
728                 rc = next->ld_ops->ldo_process_config(env, next, cfg);
729                 break;
730         }
731 out:
732         RETURN(rc);
733 }
734
735 #if 0
736 static int mdd_lov_set_nextid(const struct lu_env *env,
737                               struct mdd_device *mdd)
738 {
739         struct mds_obd *mds = &mdd->mdd_obd_dev->u.mds;
740         int rc;
741         ENTRY;
742
743         LASSERT(mds->mds_lov_objids != NULL);
744         rc = obd_set_info_async(mds->mds_osc_exp, strlen(KEY_NEXT_ID),
745                                 KEY_NEXT_ID, mds->mds_lov_desc.ld_tgt_count,
746                                 mds->mds_lov_objids, NULL);
747
748         RETURN(rc);
749 }
750
751 static int mdd_cleanup_unlink_llog(const struct lu_env *env,
752                                    struct mdd_device *mdd)
753 {
754         /* XXX: to be implemented! */
755         return 0;
756 }
757 #endif
758
759 static int mdd_recovery_complete(const struct lu_env *env,
760                                  struct lu_device *d)
761 {
762         struct mdd_device *mdd = lu2mdd_dev(d);
763         struct lu_device *next = &mdd->mdd_child->dd_lu_dev;
764         struct obd_device *obd = mdd2obd_dev(mdd);
765         int rc;
766         ENTRY;
767
768         LASSERT(mdd != NULL);
769         LASSERT(obd != NULL);
770 #if 0
771         /* XXX: Do we need this in new stack? */
772         rc = mdd_lov_set_nextid(env, mdd);
773         if (rc) {
774                 CERROR("mdd_lov_set_nextid() failed %d\n",
775                        rc);
776                 RETURN(rc);
777         }
778
779         /* XXX: cleanup unlink. */
780         rc = mdd_cleanup_unlink_llog(env, mdd);
781         if (rc) {
782                 CERROR("mdd_cleanup_unlink_llog() failed %d\n",
783                        rc);
784                 RETURN(rc);
785         }
786 #endif
787         /* Call that with obd_recovering = 1 just to update objids */
788         obd_notify(obd->u.mds.mds_osc_obd, NULL, (obd->obd_async_recov ?
789                     OBD_NOTIFY_SYNC_NONBLOCK : OBD_NOTIFY_SYNC), NULL);
790
791         /* Drop obd_recovering to 0 and call o_postrecov to recover mds_lov */
792         obd->obd_recovering = 0;
793         obd->obd_type->typ_dt_ops->o_postrecov(obd);
794
795         /* XXX: orphans handling. */
796         __mdd_orphan_cleanup(env, mdd);
797         rc = next->ld_ops->ldo_recovery_complete(env, next);
798
799         RETURN(rc);
800 }
801
802 static int mdd_prepare(const struct lu_env *env,
803                        struct lu_device *pdev,
804                        struct lu_device *cdev)
805 {
806         struct mdd_device *mdd = lu2mdd_dev(cdev);
807         struct lu_device *next = &mdd->mdd_child->dd_lu_dev;
808         struct dt_object *root;
809         int rc;
810
811         ENTRY;
812         rc = next->ld_ops->ldo_prepare(env, cdev, next);
813         if (rc)
814                 GOTO(out, rc);
815
816         dt_txn_callback_add(mdd->mdd_child, &mdd->mdd_txn_cb);
817         root = dt_store_open(env, mdd->mdd_child, "", mdd_root_dir_name,
818                              &mdd->mdd_root_fid);
819         if (!IS_ERR(root)) {
820                 LASSERT(root != NULL);
821                 lu_object_put(env, &root->do_lu);
822                 rc = orph_index_init(env, mdd);
823         } else {
824                 rc = PTR_ERR(root);
825         }
826         if (rc)
827                 GOTO(out, rc);
828
829         rc = mdd_dot_lustre_setup(env, mdd);
830         if (rc) {
831                 CERROR("Error(%d) initializing .lustre objects\n", rc);
832                 GOTO(out, rc);
833         }
834
835 out:
836         RETURN(rc);
837 }
838
839 const struct lu_device_operations mdd_lu_ops = {
840         .ldo_object_alloc      = mdd_object_alloc,
841         .ldo_process_config    = mdd_process_config,
842         .ldo_recovery_complete = mdd_recovery_complete,
843         .ldo_prepare           = mdd_prepare,
844 };
845
846 /*
847  * No permission check is needed.
848  */
849 static int mdd_root_get(const struct lu_env *env,
850                         struct md_device *m, struct lu_fid *f)
851 {
852         struct mdd_device *mdd = lu2mdd_dev(&m->md_lu_dev);
853
854         ENTRY;
855         *f = mdd->mdd_root_fid;
856         RETURN(0);
857 }
858
859 /*
860  * No permission check is needed.
861  */
862 static int mdd_statfs(const struct lu_env *env, struct md_device *m,
863                       struct kstatfs *sfs)
864 {
865         struct mdd_device *mdd = lu2mdd_dev(&m->md_lu_dev);
866         int rc;
867
868         ENTRY;
869
870         rc = mdd_child_ops(mdd)->dt_statfs(env, mdd->mdd_child, sfs);
871
872         RETURN(rc);
873 }
874
875 /*
876  * No permission check is needed.
877  */
878 static int mdd_maxsize_get(const struct lu_env *env, struct md_device *m,
879                            int *md_size, int *cookie_size)
880 {
881         struct mdd_device *mdd = lu2mdd_dev(&m->md_lu_dev);
882         ENTRY;
883
884         *md_size = mdd_lov_mdsize(env, mdd);
885         *cookie_size = mdd_lov_cookiesize(env, mdd);
886
887         RETURN(0);
888 }
889
890 static int mdd_init_capa_ctxt(const struct lu_env *env, struct md_device *m,
891                               int mode, unsigned long timeout, __u32 alg,
892                               struct lustre_capa_key *keys)
893 {
894         struct mdd_device *mdd = lu2mdd_dev(&m->md_lu_dev);
895         struct mds_obd    *mds = &mdd2obd_dev(mdd)->u.mds;
896         int rc;
897         ENTRY;
898
899         mds->mds_capa_keys = keys;
900         rc = mdd_child_ops(mdd)->dt_init_capa_ctxt(env, mdd->mdd_child, mode,
901                                                    timeout, alg, keys);
902         RETURN(rc);
903 }
904
905 static int mdd_update_capa_key(const struct lu_env *env,
906                                struct md_device *m,
907                                struct lustre_capa_key *key)
908 {
909         struct mdd_device *mdd = lu2mdd_dev(&m->md_lu_dev);
910         struct obd_export *lov_exp = mdd2obd_dev(mdd)->u.mds.mds_osc_exp;
911         int rc;
912         ENTRY;
913
914         rc = obd_set_info_async(lov_exp, sizeof(KEY_CAPA_KEY), KEY_CAPA_KEY,
915                                 sizeof(*key), key, NULL);
916         RETURN(rc);
917 }
918
919 static struct lu_device *mdd_device_alloc(const struct lu_env *env,
920                                           struct lu_device_type *t,
921                                           struct lustre_cfg *lcfg)
922 {
923         struct lu_device  *l;
924         struct mdd_device *m;
925
926         OBD_ALLOC_PTR(m);
927         if (m == NULL) {
928                 l = ERR_PTR(-ENOMEM);
929         } else {
930                 md_device_init(&m->mdd_md_dev, t);
931                 l = mdd2lu_dev(m);
932                 l->ld_ops = &mdd_lu_ops;
933                 m->mdd_md_dev.md_ops = &mdd_ops;
934                 md_upcall_init(&m->mdd_md_dev, NULL);
935         }
936
937         return l;
938 }
939
940 static struct lu_device *mdd_device_free(const struct lu_env *env,
941                                          struct lu_device *lu)
942 {
943         struct mdd_device *m = lu2mdd_dev(lu);
944         struct lu_device  *next = &m->mdd_child->dd_lu_dev;
945         ENTRY;
946
947         LASSERT(atomic_read(&lu->ld_ref) == 0);
948         md_device_fini(&m->mdd_md_dev);
949         OBD_FREE_PTR(m);
950         RETURN(next);
951 }
952
953 static struct obd_ops mdd_obd_device_ops = {
954         .o_owner = THIS_MODULE
955 };
956
957 /* context key constructor/destructor: mdd_ucred_key_init, mdd_ucred_key_fini */
958 LU_KEY_INIT_FINI(mdd_ucred, struct md_ucred);
959
960 static struct lu_context_key mdd_ucred_key = {
961         .lct_tags = LCT_SESSION,
962         .lct_init = mdd_ucred_key_init,
963         .lct_fini = mdd_ucred_key_fini
964 };
965
966 struct md_ucred *md_ucred(const struct lu_env *env)
967 {
968         LASSERT(env->le_ses != NULL);
969         return lu_context_key_get(env->le_ses, &mdd_ucred_key);
970 }
971 EXPORT_SYMBOL(md_ucred);
972
973 /*
974  * context key constructor/destructor:
975  * mdd_capainfo_key_init, mdd_capainfo_key_fini
976  */
977 LU_KEY_INIT_FINI(mdd_capainfo, struct md_capainfo);
978
979 struct lu_context_key mdd_capainfo_key = {
980         .lct_tags = LCT_SESSION,
981         .lct_init = mdd_capainfo_key_init,
982         .lct_fini = mdd_capainfo_key_fini
983 };
984
985 struct md_capainfo *md_capainfo(const struct lu_env *env)
986 {
987         /* NB, in mdt_init0 */
988         if (env->le_ses == NULL)
989                 return NULL;
990         return lu_context_key_get(env->le_ses, &mdd_capainfo_key);
991 }
992 EXPORT_SYMBOL(md_capainfo);
993
994 /* type constructor/destructor: mdd_type_init, mdd_type_fini */
995 LU_TYPE_INIT_FINI(mdd, &mdd_thread_key, &mdd_ucred_key, &mdd_capainfo_key);
996
997 const struct md_device_operations mdd_ops = {
998         .mdo_statfs         = mdd_statfs,
999         .mdo_root_get       = mdd_root_get,
1000         .mdo_maxsize_get    = mdd_maxsize_get,
1001         .mdo_init_capa_ctxt = mdd_init_capa_ctxt,
1002         .mdo_update_capa_key= mdd_update_capa_key,
1003 #ifdef HAVE_QUOTA_SUPPORT
1004         .mdo_quota          = {
1005                 .mqo_notify      = mdd_quota_notify,
1006                 .mqo_setup       = mdd_quota_setup,
1007                 .mqo_cleanup     = mdd_quota_cleanup,
1008                 .mqo_recovery    = mdd_quota_recovery,
1009                 .mqo_check       = mdd_quota_check,
1010                 .mqo_on          = mdd_quota_on,
1011                 .mqo_off         = mdd_quota_off,
1012                 .mqo_setinfo     = mdd_quota_setinfo,
1013                 .mqo_getinfo     = mdd_quota_getinfo,
1014                 .mqo_setquota    = mdd_quota_setquota,
1015                 .mqo_getquota    = mdd_quota_getquota,
1016                 .mqo_getoinfo    = mdd_quota_getoinfo,
1017                 .mqo_getoquota   = mdd_quota_getoquota,
1018                 .mqo_invalidate  = mdd_quota_invalidate,
1019                 .mqo_finvalidate = mdd_quota_finvalidate
1020         }
1021 #endif
1022 };
1023
1024 static struct lu_device_type_operations mdd_device_type_ops = {
1025         .ldto_init = mdd_type_init,
1026         .ldto_fini = mdd_type_fini,
1027
1028         .ldto_start = mdd_type_start,
1029         .ldto_stop  = mdd_type_stop,
1030
1031         .ldto_device_alloc = mdd_device_alloc,
1032         .ldto_device_free  = mdd_device_free,
1033
1034         .ldto_device_init    = mdd_device_init,
1035         .ldto_device_fini    = mdd_device_fini
1036 };
1037
1038 static struct lu_device_type mdd_device_type = {
1039         .ldt_tags     = LU_DEVICE_MD,
1040         .ldt_name     = LUSTRE_MDD_NAME,
1041         .ldt_ops      = &mdd_device_type_ops,
1042         .ldt_ctx_tags = LCT_MD_THREAD
1043 };
1044
1045 /* context key constructor: mdd_key_init */
1046 LU_KEY_INIT(mdd, struct mdd_thread_info);
1047
1048 static void mdd_key_fini(const struct lu_context *ctx,
1049                          struct lu_context_key *key, void *data)
1050 {
1051         struct mdd_thread_info *info = data;
1052         if (info->mti_max_lmm != NULL)
1053                 OBD_FREE(info->mti_max_lmm, info->mti_max_lmm_size);
1054         if (info->mti_max_cookie != NULL)
1055                 OBD_FREE(info->mti_max_cookie, info->mti_max_cookie_size);
1056         mdd_buf_put(&info->mti_big_buf);
1057
1058         OBD_FREE_PTR(info);
1059 }
1060
1061 /* context key: mdd_thread_key */
1062 LU_CONTEXT_KEY_DEFINE(mdd, LCT_MD_THREAD);
1063
1064 static struct lu_local_obj_desc llod_capa_key = {
1065         .llod_name      = CAPA_KEYS,
1066         .llod_oid       = MDD_CAPA_KEYS_OID,
1067         .llod_is_index  = 0,
1068 };
1069
1070 static struct lu_local_obj_desc llod_mdd_orphan = {
1071         .llod_name      = orph_index_name,
1072         .llod_oid       = MDD_ORPHAN_OID,
1073         .llod_is_index  = 1,
1074         .llod_feat      = &dt_directory_features,
1075 };
1076
1077 static struct lu_local_obj_desc llod_mdd_root = {
1078         .llod_name      = mdd_root_dir_name,
1079         .llod_oid       = MDD_ROOT_INDEX_OID,
1080         .llod_is_index  = 1,
1081         .llod_feat      = &dt_directory_features,
1082 };
1083
1084 static int __init mdd_mod_init(void)
1085 {
1086         struct lprocfs_static_vars lvars;
1087         lprocfs_mdd_init_vars(&lvars);
1088
1089         llo_local_obj_register(&llod_capa_key);
1090         llo_local_obj_register(&llod_mdd_orphan);
1091         llo_local_obj_register(&llod_mdd_root);
1092
1093         return class_register_type(&mdd_obd_device_ops, NULL, lvars.module_vars,
1094                                    LUSTRE_MDD_NAME, &mdd_device_type);
1095 }
1096
1097 static void __exit mdd_mod_exit(void)
1098 {
1099         llo_local_obj_unregister(&llod_capa_key);
1100         llo_local_obj_unregister(&llod_mdd_orphan);
1101         llo_local_obj_unregister(&llod_mdd_root);
1102
1103         class_unregister_type(LUSTRE_MDD_NAME);
1104 }
1105
1106 MODULE_AUTHOR("Sun Microsystems, Inc. <http://www.lustre.org/>");
1107 MODULE_DESCRIPTION("Lustre Meta-data Device Prototype ("LUSTRE_MDD_NAME")");
1108 MODULE_LICENSE("GPL");
1109
1110 cfs_module(mdd, "0.1.0", mdd_mod_init, mdd_mod_exit);