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