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