Whamcloud - gitweb
c47a0b53b07cadac6891523a3bf0c7777eb98dd6
[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         if (!IS_ERR(mdo))
330                 lu_object_put(env, &mdo->mo_lu);
331
332         return 0;
333 }
334
335 static int dot_lustre_attr_get(const struct lu_env *env, struct md_object *obj,
336                                struct md_attr *ma)
337 {
338         struct mdd_object *mdd_obj = md2mdd_obj(obj);
339
340         return mdd_attr_get_internal_locked(env, mdd_obj, ma);
341 }
342
343 static int dot_lustre_attr_set(const struct lu_env *env, struct md_object *obj,
344                                const struct md_attr *ma)
345 {
346         return -EPERM;
347 }
348
349 static int dot_lustre_xattr_get(const struct lu_env *env,
350                                 struct md_object *obj, struct lu_buf *buf,
351                                 const char *name)
352 {
353         return 0;
354 }
355
356 static int dot_lustre_mdd_open(const struct lu_env *env, struct md_object *obj,
357                                int flags)
358 {
359         struct mdd_object *mdd_obj = md2mdd_obj(obj);
360
361         mdd_write_lock(env, mdd_obj, MOR_TGT_CHILD);
362         mdd_obj->mod_count++;
363         mdd_write_unlock(env, mdd_obj);
364
365         return 0;
366 }
367
368 static int dot_lustre_path(const struct lu_env *env, struct md_object *obj,
369                            char *path, int pathlen, __u64 recno, int *linkno)
370 {
371         return -ENOSYS;
372 }
373
374 static int dot_lustre_close(const struct lu_env *env, struct md_object *obj,
375                          struct md_attr *ma)
376 {
377         struct mdd_object *mdd_obj = md2mdd_obj(obj);
378
379         mdd_write_lock(env, mdd_obj, MOR_TGT_CHILD);
380         mdd_obj->mod_count--;
381         mdd_write_unlock(env, mdd_obj);
382
383         return 0;
384 }
385
386 static struct md_object_operations mdd_dot_lustre_obj_ops = {
387         .moo_attr_get   = dot_lustre_attr_get,
388         .moo_attr_set   = dot_lustre_attr_set,
389         .moo_xattr_get  = dot_lustre_xattr_get,
390         .moo_open       = dot_lustre_mdd_open,
391         .moo_close      = dot_lustre_close,
392         .moo_readpage   = mdd_readpage,
393         .moo_path       = dot_lustre_path
394 };
395
396 static int dot_lustre_lookup(const struct lu_env *env, struct md_object *p,
397                              const struct lu_name *lname, struct lu_fid *f,
398                              struct md_op_spec *spec)
399 {
400         if (strcmp(lname->ln_name, mdd_obf_dir_name) == 0)
401                 *f = LU_OBF_FID;
402         else
403                 return -ENOENT;
404
405         return 0;
406 }
407
408 static int dot_lustre_create(const struct lu_env *env, struct md_object *pobj,
409                              const struct lu_name *lname,
410                              struct md_object *child, struct md_op_spec *spec,
411                              struct md_attr* ma)
412 {
413         return -EPERM;
414 }
415
416 static int dot_lustre_rename(const struct lu_env *env,
417                              struct md_object *src_pobj,
418                              struct md_object *tgt_pobj,
419                              const struct lu_fid *lf,
420                              const struct lu_name *lsname,
421                              struct md_object *tobj,
422                              const struct lu_name *ltname, struct md_attr *ma)
423 {
424         return -EPERM;
425 }
426
427 static int dot_lustre_link(const struct lu_env *env, struct md_object *tgt_obj,
428                            struct md_object *src_obj,
429                            const struct lu_name *lname, struct md_attr *ma)
430 {
431         return -EPERM;
432 }
433
434 static int dot_lustre_unlink(const struct lu_env *env, struct md_object *pobj,
435                              struct md_object *cobj, const struct lu_name *lname,
436                              struct md_attr *ma)
437 {
438         return -EPERM;
439 }
440
441 static struct md_dir_operations mdd_dot_lustre_dir_ops = {
442         .mdo_lookup = dot_lustre_lookup,
443         .mdo_create = dot_lustre_create,
444         .mdo_rename = dot_lustre_rename,
445         .mdo_link   = dot_lustre_link,
446         .mdo_unlink = dot_lustre_unlink,
447 };
448
449 static int obf_attr_get(const struct lu_env *env, struct md_object *obj,
450                         struct md_attr *ma)
451 {
452         int rc = 0;
453
454         if (ma->ma_need & MA_INODE) {
455                 struct mdd_device *mdd = mdo2mdd(obj);
456
457                 /* "fid" is a virtual object and hence does not have any "real"
458                  * attributes. So we reuse attributes of .lustre for "fid" dir */
459                 ma->ma_need |= MA_INODE;
460                 rc = dot_lustre_attr_get(env, &mdd->mdd_dot_lustre->mod_obj, ma);
461                 if (rc)
462                         return rc;
463                 ma->ma_valid |= MA_INODE;
464         }
465
466         /* "fid" directory does not have any striping information. */
467         if (ma->ma_need & MA_LOV) {
468                 struct mdd_object *mdd_obj = md2mdd_obj(obj);
469
470                 if (ma->ma_valid & MA_LOV)
471                         return 0;
472
473                 if (!(S_ISREG(mdd_object_type(mdd_obj)) ||
474                       S_ISDIR(mdd_object_type(mdd_obj))))
475                         return 0;
476
477                 if (ma->ma_need & MA_LOV_DEF) {
478                         rc = mdd_get_default_md(mdd_obj, ma->ma_lmm,
479                                         &ma->ma_lmm_size);
480                         if (rc > 0) {
481                                 ma->ma_valid |= MA_LOV;
482                                 rc = 0;
483                         }
484                 }
485         }
486
487         return rc;
488 }
489
490 static int obf_attr_set(const struct lu_env *env, struct md_object *obj,
491                         const struct md_attr *ma)
492 {
493         return -EPERM;
494 }
495
496 static int obf_xattr_get(const struct lu_env *env,
497                          struct md_object *obj, struct lu_buf *buf,
498                          const char *name)
499 {
500         return 0;
501 }
502
503 static int obf_mdd_open(const struct lu_env *env, struct md_object *obj,
504                         int flags)
505 {
506         struct mdd_object *mdd_obj = md2mdd_obj(obj);
507
508         mdd_write_lock(env, mdd_obj, MOR_TGT_CHILD);
509         mdd_obj->mod_count++;
510         mdd_write_unlock(env, mdd_obj);
511
512         return 0;
513 }
514
515 static int obf_mdd_close(const struct lu_env *env, struct md_object *obj,
516                          struct md_attr *ma)
517 {
518         struct mdd_object *mdd_obj = md2mdd_obj(obj);
519
520         mdd_write_lock(env, mdd_obj, MOR_TGT_CHILD);
521         mdd_obj->mod_count--;
522         mdd_write_unlock(env, mdd_obj);
523
524         return 0;
525 }
526
527 /** Nothing to list in "fid" directory */
528 static int obf_mdd_readpage(const struct lu_env *env, struct md_object *obj,
529                             const struct lu_rdpg *rdpg)
530 {
531         return -EPERM;
532 }
533
534 static int obf_path(const struct lu_env *env, struct md_object *obj,
535                     char *path, int pathlen, __u64 recno, int *linkno)
536 {
537         return -ENOSYS;
538 }
539
540 static struct md_object_operations mdd_obf_obj_ops = {
541         .moo_attr_get   = obf_attr_get,
542         .moo_attr_set   = obf_attr_set,
543         .moo_xattr_get  = obf_xattr_get,
544         .moo_open       = obf_mdd_open,
545         .moo_close      = obf_mdd_close,
546         .moo_readpage   = obf_mdd_readpage,
547         .moo_path       = obf_path
548 };
549
550 /**
551  * Lookup method for "fid" object. Only filenames with correct SEQ:OID format
552  * are valid. We also check if object with passed fid exists or not.
553  */
554 static int obf_lookup(const struct lu_env *env, struct md_object *p,
555                       const struct lu_name *lname, struct lu_fid *f,
556                       struct md_op_spec *spec)
557 {
558         char *name = (char *)lname->ln_name;
559         struct mdd_device *mdd = mdo2mdd(p);
560         struct mdd_object *child;
561         int rc = 0;
562
563         while (*name == '[')
564                 name++;
565
566         sscanf(name, SFID, &(f->f_seq), &(f->f_oid),
567                &(f->f_ver));
568         if (!fid_is_sane(f)) {
569                 CWARN("bad FID format [%s], should be "DFID"\n", lname->ln_name,
570                       (__u64)1, 2, 0);
571                 GOTO(out, rc = -EINVAL);
572         }
573
574         /* Check if object with this fid exists */
575         child = mdd_object_find(env, mdd, f);
576         if (child == NULL)
577                 GOTO(out, rc = 0);
578         if (IS_ERR(child))
579                 GOTO(out, rc = PTR_ERR(child));
580
581         if (mdd_object_exists(child) == 0)
582                 rc = -ENOENT;
583
584         mdd_object_put(env, child);
585
586 out:
587         return rc;
588 }
589
590 static int obf_create(const struct lu_env *env, struct md_object *pobj,
591                       const struct lu_name *lname, struct md_object *child,
592                       struct md_op_spec *spec, struct md_attr* ma)
593 {
594         return -EPERM;
595 }
596
597 static int obf_rename(const struct lu_env *env,
598                       struct md_object *src_pobj, struct md_object *tgt_pobj,
599                       const struct lu_fid *lf, const struct lu_name *lsname,
600                       struct md_object *tobj, const struct lu_name *ltname,
601                       struct md_attr *ma)
602 {
603         return -EPERM;
604 }
605
606 static int obf_link(const struct lu_env *env, struct md_object *tgt_obj,
607                     struct md_object *src_obj, const struct lu_name *lname,
608                     struct md_attr *ma)
609 {
610         return -EPERM;
611 }
612
613 static int obf_unlink(const struct lu_env *env, struct md_object *pobj,
614                       struct md_object *cobj, const struct lu_name *lname,
615                       struct md_attr *ma)
616 {
617         return -EPERM;
618 }
619
620 static struct md_dir_operations mdd_obf_dir_ops = {
621         .mdo_lookup = obf_lookup,
622         .mdo_create = obf_create,
623         .mdo_rename = obf_rename,
624         .mdo_link   = obf_link,
625         .mdo_unlink = obf_unlink
626 };
627
628 /**
629  * Create special in-memory "fid" object for open-by-fid.
630  */
631 static int mdd_obf_setup(const struct lu_env *env, struct mdd_device *m)
632 {
633         struct mdd_object *mdd_obf;
634         struct lu_object *obf_lu_obj;
635         int rc = 0;
636
637         m->mdd_dot_lustre_objs.mdd_obf = mdd_object_find(env, m,
638                                                          &LU_OBF_FID);
639         if (m->mdd_dot_lustre_objs.mdd_obf == NULL ||
640             IS_ERR(m->mdd_dot_lustre_objs.mdd_obf))
641                 GOTO(out, rc = -ENOENT);
642
643         mdd_obf = m->mdd_dot_lustre_objs.mdd_obf;
644         mdd_obf->mod_obj.mo_dir_ops = &mdd_obf_dir_ops;
645         mdd_obf->mod_obj.mo_ops = &mdd_obf_obj_ops;
646         /* Don't allow objects to be created in "fid" dir */
647         mdd_obf->mod_flags |= IMMUTE_OBJ;
648
649         obf_lu_obj = mdd2lu_obj(mdd_obf);
650         obf_lu_obj->lo_header->loh_attr |= (LOHA_EXISTS | S_IFDIR);
651
652 out:
653         return rc;
654 }
655
656 /** Setup ".lustre" directory object */
657 static int mdd_dot_lustre_setup(const struct lu_env *env, struct mdd_device *m)
658 {
659         struct dt_object *dt_dot_lustre;
660         struct lu_fid *fid = &mdd_env_info(env)->mti_fid;
661         int rc;
662
663         rc = create_dot_lustre_dir(env, m);
664         if (rc)
665                 return rc;
666
667         dt_dot_lustre = dt_store_open(env, m->mdd_child, mdd_root_dir_name,
668                                       mdd_dot_lustre_name, fid);
669         if (IS_ERR(dt_dot_lustre)) {
670                 rc = PTR_ERR(dt_dot_lustre);
671                 GOTO(out, rc);
672         }
673
674         /* references are released in mdd_device_shutdown() */
675         m->mdd_dot_lustre = lu2mdd_obj(lu_object_locate(dt_dot_lustre->do_lu.lo_header,
676                                                         &mdd_device_type));
677
678         m->mdd_dot_lustre->mod_obj.mo_dir_ops = &mdd_dot_lustre_dir_ops;
679         m->mdd_dot_lustre->mod_obj.mo_ops = &mdd_dot_lustre_obj_ops;
680
681         rc = mdd_obf_setup(env, m);
682         if (rc)
683                 CERROR("Error initializing \"fid\" object - %d.\n", rc);
684
685 out:
686         RETURN(rc);
687 }
688
689 static int mdd_process_config(const struct lu_env *env,
690                               struct lu_device *d, struct lustre_cfg *cfg)
691 {
692         struct mdd_device *m    = lu2mdd_dev(d);
693         struct dt_device  *dt   = m->mdd_child;
694         struct lu_device  *next = &dt->dd_lu_dev;
695         int rc;
696         ENTRY;
697
698         switch (cfg->lcfg_command) {
699         case LCFG_PARAM: {
700                 struct lprocfs_static_vars lvars;
701
702                 lprocfs_mdd_init_vars(&lvars);
703                 rc = class_process_proc_param(PARAM_MDD, lvars.obd_vars, cfg,m);
704                 if (rc > 0 || rc == -ENOSYS)
705                         /* we don't understand; pass it on */
706                         rc = next->ld_ops->ldo_process_config(env, next, cfg);
707                 break;
708         }
709         case LCFG_SETUP:
710                 rc = next->ld_ops->ldo_process_config(env, next, cfg);
711                 if (rc)
712                         GOTO(out, rc);
713                 dt->dd_ops->dt_conf_get(env, dt, &m->mdd_dt_conf);
714
715                 rc = mdd_init_obd(env, m, cfg);
716                 if (rc) {
717                         CERROR("lov init error %d \n", rc);
718                         GOTO(out, rc);
719                 }
720                 rc = mdd_txn_init_credits(env, m);
721                 if (rc)
722                         break;
723
724                 mdd_changelog_init(env, m);
725                 break;
726         case LCFG_CLEANUP:
727                 mdd_device_shutdown(env, m, cfg);
728         default:
729                 rc = next->ld_ops->ldo_process_config(env, next, cfg);
730                 break;
731         }
732 out:
733         RETURN(rc);
734 }
735
736 #if 0
737 static int mdd_lov_set_nextid(const struct lu_env *env,
738                               struct mdd_device *mdd)
739 {
740         struct mds_obd *mds = &mdd->mdd_obd_dev->u.mds;
741         int rc;
742         ENTRY;
743
744         LASSERT(mds->mds_lov_objids != NULL);
745         rc = obd_set_info_async(mds->mds_osc_exp, strlen(KEY_NEXT_ID),
746                                 KEY_NEXT_ID, mds->mds_lov_desc.ld_tgt_count,
747                                 mds->mds_lov_objids, NULL);
748
749         RETURN(rc);
750 }
751
752 static int mdd_cleanup_unlink_llog(const struct lu_env *env,
753                                    struct mdd_device *mdd)
754 {
755         /* XXX: to be implemented! */
756         return 0;
757 }
758 #endif
759
760 static int mdd_recovery_complete(const struct lu_env *env,
761                                  struct lu_device *d)
762 {
763         struct mdd_device *mdd = lu2mdd_dev(d);
764         struct lu_device *next = &mdd->mdd_child->dd_lu_dev;
765         struct obd_device *obd = mdd2obd_dev(mdd);
766         int rc;
767         ENTRY;
768
769         LASSERT(mdd != NULL);
770         LASSERT(obd != NULL);
771 #if 0
772         /* XXX: Do we need this in new stack? */
773         rc = mdd_lov_set_nextid(env, mdd);
774         if (rc) {
775                 CERROR("mdd_lov_set_nextid() failed %d\n",
776                        rc);
777                 RETURN(rc);
778         }
779
780         /* XXX: cleanup unlink. */
781         rc = mdd_cleanup_unlink_llog(env, mdd);
782         if (rc) {
783                 CERROR("mdd_cleanup_unlink_llog() failed %d\n",
784                        rc);
785                 RETURN(rc);
786         }
787 #endif
788         /* Call that with obd_recovering = 1 just to update objids */
789         obd_notify(obd->u.mds.mds_osc_obd, NULL, (obd->obd_async_recov ?
790                     OBD_NOTIFY_SYNC_NONBLOCK : OBD_NOTIFY_SYNC), NULL);
791
792         /* Drop obd_recovering to 0 and call o_postrecov to recover mds_lov */
793         obd->obd_recovering = 0;
794         obd->obd_type->typ_dt_ops->o_postrecov(obd);
795
796         /* XXX: orphans handling. */
797         __mdd_orphan_cleanup(env, mdd);
798         rc = next->ld_ops->ldo_recovery_complete(env, next);
799
800         RETURN(rc);
801 }
802
803 static int mdd_prepare(const struct lu_env *env,
804                        struct lu_device *pdev,
805                        struct lu_device *cdev)
806 {
807         struct mdd_device *mdd = lu2mdd_dev(cdev);
808         struct lu_device *next = &mdd->mdd_child->dd_lu_dev;
809         struct dt_object *root;
810         int rc;
811
812         ENTRY;
813         rc = next->ld_ops->ldo_prepare(env, cdev, next);
814         if (rc)
815                 GOTO(out, rc);
816
817         dt_txn_callback_add(mdd->mdd_child, &mdd->mdd_txn_cb);
818         root = dt_store_open(env, mdd->mdd_child, "", mdd_root_dir_name,
819                              &mdd->mdd_root_fid);
820         if (!IS_ERR(root)) {
821                 LASSERT(root != NULL);
822                 lu_object_put(env, &root->do_lu);
823                 rc = orph_index_init(env, mdd);
824         } else {
825                 rc = PTR_ERR(root);
826         }
827         if (rc)
828                 GOTO(out, rc);
829
830         rc = mdd_dot_lustre_setup(env, mdd);
831         if (rc) {
832                 CERROR("Error(%d) initializing .lustre objects\n", rc);
833                 GOTO(out, rc);
834         }
835
836 out:
837         RETURN(rc);
838 }
839
840 const struct lu_device_operations mdd_lu_ops = {
841         .ldo_object_alloc      = mdd_object_alloc,
842         .ldo_process_config    = mdd_process_config,
843         .ldo_recovery_complete = mdd_recovery_complete,
844         .ldo_prepare           = mdd_prepare,
845 };
846
847 /*
848  * No permission check is needed.
849  */
850 static int mdd_root_get(const struct lu_env *env,
851                         struct md_device *m, struct lu_fid *f)
852 {
853         struct mdd_device *mdd = lu2mdd_dev(&m->md_lu_dev);
854
855         ENTRY;
856         *f = mdd->mdd_root_fid;
857         RETURN(0);
858 }
859
860 /*
861  * No permission check is needed.
862  */
863 static int mdd_statfs(const struct lu_env *env, struct md_device *m,
864                       struct kstatfs *sfs)
865 {
866         struct mdd_device *mdd = lu2mdd_dev(&m->md_lu_dev);
867         int rc;
868
869         ENTRY;
870
871         rc = mdd_child_ops(mdd)->dt_statfs(env, mdd->mdd_child, sfs);
872
873         RETURN(rc);
874 }
875
876 /*
877  * No permission check is needed.
878  */
879 static int mdd_maxsize_get(const struct lu_env *env, struct md_device *m,
880                            int *md_size, int *cookie_size)
881 {
882         struct mdd_device *mdd = lu2mdd_dev(&m->md_lu_dev);
883         ENTRY;
884
885         *md_size = mdd_lov_mdsize(env, mdd);
886         *cookie_size = mdd_lov_cookiesize(env, mdd);
887
888         RETURN(0);
889 }
890
891 static int mdd_init_capa_ctxt(const struct lu_env *env, struct md_device *m,
892                               int mode, unsigned long timeout, __u32 alg,
893                               struct lustre_capa_key *keys)
894 {
895         struct mdd_device *mdd = lu2mdd_dev(&m->md_lu_dev);
896         struct mds_obd    *mds = &mdd2obd_dev(mdd)->u.mds;
897         int rc;
898         ENTRY;
899
900         mds->mds_capa_keys = keys;
901         rc = mdd_child_ops(mdd)->dt_init_capa_ctxt(env, mdd->mdd_child, mode,
902                                                    timeout, alg, keys);
903         RETURN(rc);
904 }
905
906 static int mdd_update_capa_key(const struct lu_env *env,
907                                struct md_device *m,
908                                struct lustre_capa_key *key)
909 {
910         struct mdd_device *mdd = lu2mdd_dev(&m->md_lu_dev);
911         struct obd_export *lov_exp = mdd2obd_dev(mdd)->u.mds.mds_osc_exp;
912         int rc;
913         ENTRY;
914
915         rc = obd_set_info_async(lov_exp, sizeof(KEY_CAPA_KEY), KEY_CAPA_KEY,
916                                 sizeof(*key), key, NULL);
917         RETURN(rc);
918 }
919
920 static struct lu_device *mdd_device_alloc(const struct lu_env *env,
921                                           struct lu_device_type *t,
922                                           struct lustre_cfg *lcfg)
923 {
924         struct lu_device  *l;
925         struct mdd_device *m;
926
927         OBD_ALLOC_PTR(m);
928         if (m == NULL) {
929                 l = ERR_PTR(-ENOMEM);
930         } else {
931                 md_device_init(&m->mdd_md_dev, t);
932                 l = mdd2lu_dev(m);
933                 l->ld_ops = &mdd_lu_ops;
934                 m->mdd_md_dev.md_ops = &mdd_ops;
935                 md_upcall_init(&m->mdd_md_dev, NULL);
936         }
937
938         return l;
939 }
940
941 static struct lu_device *mdd_device_free(const struct lu_env *env,
942                                          struct lu_device *lu)
943 {
944         struct mdd_device *m = lu2mdd_dev(lu);
945         struct lu_device  *next = &m->mdd_child->dd_lu_dev;
946         ENTRY;
947
948         LASSERT(atomic_read(&lu->ld_ref) == 0);
949         md_device_fini(&m->mdd_md_dev);
950         OBD_FREE_PTR(m);
951         RETURN(next);
952 }
953
954 static struct obd_ops mdd_obd_device_ops = {
955         .o_owner = THIS_MODULE
956 };
957
958 /* context key constructor/destructor: mdd_ucred_key_init, mdd_ucred_key_fini */
959 LU_KEY_INIT_FINI(mdd_ucred, struct md_ucred);
960
961 static struct lu_context_key mdd_ucred_key = {
962         .lct_tags = LCT_SESSION,
963         .lct_init = mdd_ucred_key_init,
964         .lct_fini = mdd_ucred_key_fini
965 };
966
967 struct md_ucred *md_ucred(const struct lu_env *env)
968 {
969         LASSERT(env->le_ses != NULL);
970         return lu_context_key_get(env->le_ses, &mdd_ucred_key);
971 }
972 EXPORT_SYMBOL(md_ucred);
973
974 /*
975  * context key constructor/destructor:
976  * mdd_capainfo_key_init, mdd_capainfo_key_fini
977  */
978 LU_KEY_INIT_FINI(mdd_capainfo, struct md_capainfo);
979
980 struct lu_context_key mdd_capainfo_key = {
981         .lct_tags = LCT_SESSION,
982         .lct_init = mdd_capainfo_key_init,
983         .lct_fini = mdd_capainfo_key_fini
984 };
985
986 struct md_capainfo *md_capainfo(const struct lu_env *env)
987 {
988         /* NB, in mdt_init0 */
989         if (env->le_ses == NULL)
990                 return NULL;
991         return lu_context_key_get(env->le_ses, &mdd_capainfo_key);
992 }
993 EXPORT_SYMBOL(md_capainfo);
994
995 /* type constructor/destructor: mdd_type_init, mdd_type_fini */
996 LU_TYPE_INIT_FINI(mdd, &mdd_thread_key, &mdd_ucred_key, &mdd_capainfo_key);
997
998 const struct md_device_operations mdd_ops = {
999         .mdo_statfs         = mdd_statfs,
1000         .mdo_root_get       = mdd_root_get,
1001         .mdo_maxsize_get    = mdd_maxsize_get,
1002         .mdo_init_capa_ctxt = mdd_init_capa_ctxt,
1003         .mdo_update_capa_key= mdd_update_capa_key,
1004 #ifdef HAVE_QUOTA_SUPPORT
1005         .mdo_quota          = {
1006                 .mqo_notify      = mdd_quota_notify,
1007                 .mqo_setup       = mdd_quota_setup,
1008                 .mqo_cleanup     = mdd_quota_cleanup,
1009                 .mqo_recovery    = mdd_quota_recovery,
1010                 .mqo_check       = mdd_quota_check,
1011                 .mqo_on          = mdd_quota_on,
1012                 .mqo_off         = mdd_quota_off,
1013                 .mqo_setinfo     = mdd_quota_setinfo,
1014                 .mqo_getinfo     = mdd_quota_getinfo,
1015                 .mqo_setquota    = mdd_quota_setquota,
1016                 .mqo_getquota    = mdd_quota_getquota,
1017                 .mqo_getoinfo    = mdd_quota_getoinfo,
1018                 .mqo_getoquota   = mdd_quota_getoquota,
1019                 .mqo_invalidate  = mdd_quota_invalidate,
1020                 .mqo_finvalidate = mdd_quota_finvalidate
1021         }
1022 #endif
1023 };
1024
1025 static struct lu_device_type_operations mdd_device_type_ops = {
1026         .ldto_init = mdd_type_init,
1027         .ldto_fini = mdd_type_fini,
1028
1029         .ldto_start = mdd_type_start,
1030         .ldto_stop  = mdd_type_stop,
1031
1032         .ldto_device_alloc = mdd_device_alloc,
1033         .ldto_device_free  = mdd_device_free,
1034
1035         .ldto_device_init    = mdd_device_init,
1036         .ldto_device_fini    = mdd_device_fini
1037 };
1038
1039 static struct lu_device_type mdd_device_type = {
1040         .ldt_tags     = LU_DEVICE_MD,
1041         .ldt_name     = LUSTRE_MDD_NAME,
1042         .ldt_ops      = &mdd_device_type_ops,
1043         .ldt_ctx_tags = LCT_MD_THREAD
1044 };
1045
1046 /* context key constructor: mdd_key_init */
1047 LU_KEY_INIT(mdd, struct mdd_thread_info);
1048
1049 static void mdd_key_fini(const struct lu_context *ctx,
1050                          struct lu_context_key *key, void *data)
1051 {
1052         struct mdd_thread_info *info = data;
1053         if (info->mti_max_lmm != NULL)
1054                 OBD_FREE(info->mti_max_lmm, info->mti_max_lmm_size);
1055         if (info->mti_max_cookie != NULL)
1056                 OBD_FREE(info->mti_max_cookie, info->mti_max_cookie_size);
1057         mdd_buf_put(&info->mti_big_buf);
1058
1059         OBD_FREE_PTR(info);
1060 }
1061
1062 /* context key: mdd_thread_key */
1063 LU_CONTEXT_KEY_DEFINE(mdd, LCT_MD_THREAD);
1064
1065 static struct lu_local_obj_desc llod_capa_key = {
1066         .llod_name      = CAPA_KEYS,
1067         .llod_oid       = MDD_CAPA_KEYS_OID,
1068         .llod_is_index  = 0,
1069 };
1070
1071 static struct lu_local_obj_desc llod_mdd_orphan = {
1072         .llod_name      = orph_index_name,
1073         .llod_oid       = MDD_ORPHAN_OID,
1074         .llod_is_index  = 1,
1075         .llod_feat      = &dt_directory_features,
1076 };
1077
1078 static struct lu_local_obj_desc llod_mdd_root = {
1079         .llod_name      = mdd_root_dir_name,
1080         .llod_oid       = MDD_ROOT_INDEX_OID,
1081         .llod_is_index  = 1,
1082         .llod_feat      = &dt_directory_features,
1083 };
1084
1085 static int __init mdd_mod_init(void)
1086 {
1087         struct lprocfs_static_vars lvars;
1088         lprocfs_mdd_init_vars(&lvars);
1089
1090         llo_local_obj_register(&llod_capa_key);
1091         llo_local_obj_register(&llod_mdd_orphan);
1092         llo_local_obj_register(&llod_mdd_root);
1093
1094         return class_register_type(&mdd_obd_device_ops, NULL, lvars.module_vars,
1095                                    LUSTRE_MDD_NAME, &mdd_device_type);
1096 }
1097
1098 static void __exit mdd_mod_exit(void)
1099 {
1100         llo_local_obj_unregister(&llod_capa_key);
1101         llo_local_obj_unregister(&llod_mdd_orphan);
1102         llo_local_obj_unregister(&llod_mdd_root);
1103
1104         class_unregister_type(LUSTRE_MDD_NAME);
1105 }
1106
1107 MODULE_AUTHOR("Sun Microsystems, Inc. <http://www.lustre.org/>");
1108 MODULE_DESCRIPTION("Lustre Meta-data Device Prototype ("LUSTRE_MDD_NAME")");
1109 MODULE_LICENSE("GPL");
1110
1111 cfs_module(mdd, "0.1.0", mdd_mod_init, mdd_mod_exit);