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