Whamcloud - gitweb
LU-1302 llog: pass lu_env to the llog callback
[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(const struct lu_env *env, struct llog_handle *llh,
135                              struct llog_rec_hdr *hdr, 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(const struct lu_env *env,
155                                   struct llog_handle *llh,
156                                   struct llog_rec_hdr *hdr, void *data)
157 {
158         struct mdd_device *mdd = (struct mdd_device *)data;
159         struct llog_changelog_user_rec *rec =
160                 (struct llog_changelog_user_rec *)hdr;
161         ENTRY;
162
163         LASSERT(llh->lgh_hdr->llh_flags & LLOG_F_IS_PLAIN);
164         LASSERT(rec->cur_hdr.lrh_type == CHANGELOG_USER_REC);
165
166         CDEBUG(D_INFO, "seeing user at index %d/%d id=%d endrec="LPU64
167                " in log "LPX64"\n", hdr->lrh_index, rec->cur_hdr.lrh_index,
168                rec->cur_id, rec->cur_endrec, llh->lgh_id.lgl_oid);
169
170         cfs_spin_lock(&mdd->mdd_cl.mc_user_lock);
171         mdd->mdd_cl.mc_lastuser = rec->cur_id;
172         cfs_spin_unlock(&mdd->mdd_cl.mc_user_lock);
173
174         RETURN(LLOG_PROC_BREAK);
175 }
176
177
178 static int mdd_changelog_llog_init(struct mdd_device *mdd)
179 {
180         struct obd_device *obd = mdd2obd_dev(mdd);
181         struct llog_ctxt *ctxt;
182         int rc;
183
184         /* Find last changelog entry number */
185         ctxt = llog_get_context(obd, LLOG_CHANGELOG_ORIG_CTXT);
186         if (ctxt == NULL) {
187                 CERROR("no changelog context\n");
188                 return -EINVAL;
189         }
190         if (!ctxt->loc_handle) {
191                 llog_ctxt_put(ctxt);
192                 return -EINVAL;
193         }
194
195         rc = llog_cat_reverse_process(NULL, ctxt->loc_handle,
196                                       changelog_init_cb, mdd);
197         llog_ctxt_put(ctxt);
198
199         if (rc < 0) {
200                 CERROR("changelog init failed: %d\n", rc);
201                 return rc;
202         }
203         CDEBUG(D_IOCTL, "changelog starting index="LPU64"\n",
204                mdd->mdd_cl.mc_index);
205
206         /* Find last changelog user id */
207         ctxt = llog_get_context(obd, LLOG_CHANGELOG_USER_ORIG_CTXT);
208         if (ctxt == NULL) {
209                 CERROR("no changelog user context\n");
210                 return -EINVAL;
211         }
212         if (!ctxt->loc_handle) {
213                 llog_ctxt_put(ctxt);
214                 return -EINVAL;
215         }
216
217         rc = llog_cat_reverse_process(NULL, ctxt->loc_handle,
218                                       changelog_user_init_cb, mdd);
219         llog_ctxt_put(ctxt);
220
221         if (rc < 0) {
222                 CERROR("changelog user init failed: %d\n", rc);
223                 return rc;
224         }
225
226         /* If we have registered users, assume we want changelogs on */
227         if (mdd->mdd_cl.mc_lastuser > 0)
228                 rc = mdd_changelog_on(mdd, 1);
229
230         return rc;
231 }
232
233 static int mdd_changelog_init(const struct lu_env *env, struct mdd_device *mdd)
234 {
235         int rc;
236
237         mdd->mdd_cl.mc_index = 0;
238         cfs_spin_lock_init(&mdd->mdd_cl.mc_lock);
239         mdd->mdd_cl.mc_starttime = cfs_time_current_64();
240         mdd->mdd_cl.mc_flags = 0; /* off by default */
241         mdd->mdd_cl.mc_mask = CHANGELOG_DEFMASK;
242         cfs_spin_lock_init(&mdd->mdd_cl.mc_user_lock);
243         mdd->mdd_cl.mc_lastuser = 0;
244
245         rc = mdd_changelog_llog_init(mdd);
246         if (rc) {
247                 CERROR("Changelog setup during init failed %d\n", rc);
248                 mdd->mdd_cl.mc_flags |= CLM_ERR;
249         }
250
251         return rc;
252 }
253
254 static void mdd_changelog_fini(const struct lu_env *env, struct mdd_device *mdd)
255 {
256         mdd->mdd_cl.mc_flags = 0;
257 }
258
259 /* Start / stop recording */
260 int mdd_changelog_on(struct mdd_device *mdd, int on)
261 {
262         int rc = 0;
263
264         if ((on == 1) && ((mdd->mdd_cl.mc_flags & CLM_ON) == 0)) {
265                 LCONSOLE_INFO("%s: changelog on\n", mdd2obd_dev(mdd)->obd_name);
266                 if (mdd->mdd_cl.mc_flags & CLM_ERR) {
267                         CERROR("Changelogs cannot be enabled due to error "
268                                "condition (see %s log).\n",
269                                mdd2obd_dev(mdd)->obd_name);
270                         rc = -ESRCH;
271                 } else {
272                         cfs_spin_lock(&mdd->mdd_cl.mc_lock);
273                         mdd->mdd_cl.mc_flags |= CLM_ON;
274                         cfs_spin_unlock(&mdd->mdd_cl.mc_lock);
275                         rc = mdd_changelog_write_header(mdd, CLM_START);
276                 }
277         } else if ((on == 0) && ((mdd->mdd_cl.mc_flags & CLM_ON) == CLM_ON)) {
278                 LCONSOLE_INFO("%s: changelog off\n",mdd2obd_dev(mdd)->obd_name);
279                 rc = mdd_changelog_write_header(mdd, CLM_FINI);
280                 cfs_spin_lock(&mdd->mdd_cl.mc_lock);
281                 mdd->mdd_cl.mc_flags &= ~CLM_ON;
282                 cfs_spin_unlock(&mdd->mdd_cl.mc_lock);
283         }
284         return rc;
285 }
286
287 static __u64 cl_time(void) {
288         cfs_fs_time_t time;
289
290         cfs_fs_time_current(&time);
291         return (((__u64)time.tv_sec) << 30) + time.tv_nsec;
292 }
293
294 /** Add a changelog entry \a rec to the changelog llog
295  * \param mdd
296  * \param rec
297  * \param handle - currently ignored since llogs start their own transaction;
298  *                 this will hopefully be fixed in llog rewrite
299  * \retval 0 ok
300  */
301 int mdd_changelog_llog_write(struct mdd_device         *mdd,
302                              struct llog_changelog_rec *rec,
303                              struct thandle            *handle)
304 {
305         struct obd_device *obd = mdd2obd_dev(mdd);
306         struct llog_ctxt *ctxt;
307         int rc;
308
309         rec->cr_hdr.lrh_len = llog_data_len(sizeof(*rec) + rec->cr.cr_namelen);
310         /* llog_lvfs_write_rec sets the llog tail len */
311         rec->cr_hdr.lrh_type = CHANGELOG_REC;
312         rec->cr.cr_time = cl_time();
313         cfs_spin_lock(&mdd->mdd_cl.mc_lock);
314         /* NB: I suppose it's possible llog_add adds out of order wrt cr_index,
315            but as long as the MDD transactions are ordered correctly for e.g.
316            rename conflicts, I don't think this should matter. */
317         rec->cr.cr_index = ++mdd->mdd_cl.mc_index;
318         cfs_spin_unlock(&mdd->mdd_cl.mc_lock);
319         ctxt = llog_get_context(obd, LLOG_CHANGELOG_ORIG_CTXT);
320         if (ctxt == NULL)
321                 return -ENXIO;
322
323         /* nested journal transaction */
324         rc = llog_add(ctxt, &rec->cr_hdr, NULL, NULL, 0);
325         llog_ctxt_put(ctxt);
326
327         return rc;
328 }
329
330 /** Add a changelog_ext entry \a rec to the changelog llog
331  * \param mdd
332  * \param rec
333  * \param handle - currently ignored since llogs start their own transaction;
334  *              this will hopefully be fixed in llog rewrite
335  * \retval 0 ok
336  */
337 int mdd_changelog_ext_llog_write(struct mdd_device *mdd,
338                                  struct llog_changelog_ext_rec *rec,
339                                  struct thandle *handle)
340 {
341         struct obd_device *obd = mdd2obd_dev(mdd);
342         struct llog_ctxt *ctxt;
343         int rc;
344
345         rec->cr_hdr.lrh_len = llog_data_len(sizeof(*rec) + rec->cr.cr_namelen);
346         /* llog_lvfs_write_rec sets the llog tail len */
347         rec->cr_hdr.lrh_type = CHANGELOG_REC;
348         rec->cr.cr_time = cl_time();
349         cfs_spin_lock(&mdd->mdd_cl.mc_lock);
350         /* NB: I suppose it's possible llog_add adds out of order wrt cr_index,
351          * but as long as the MDD transactions are ordered correctly for e.g.
352          * rename conflicts, I don't think this should matter. */
353         rec->cr.cr_index = ++mdd->mdd_cl.mc_index;
354         cfs_spin_unlock(&mdd->mdd_cl.mc_lock);
355         ctxt = llog_get_context(obd, LLOG_CHANGELOG_ORIG_CTXT);
356         if (ctxt == NULL)
357                 return -ENXIO;
358
359         /* nested journal transaction */
360         rc = llog_add(ctxt, &rec->cr_hdr, NULL, NULL, 0);
361         llog_ctxt_put(ctxt);
362
363         return rc;
364 }
365
366 /** Remove entries with indicies up to and including \a endrec from the
367  *  changelog
368  * \param mdd
369  * \param endrec
370  * \retval 0 ok
371  */
372 int mdd_changelog_llog_cancel(struct mdd_device *mdd, long long endrec)
373 {
374         struct obd_device *obd = mdd2obd_dev(mdd);
375         struct llog_ctxt *ctxt;
376         long long unsigned cur;
377         int rc;
378
379         ctxt = llog_get_context(obd, LLOG_CHANGELOG_ORIG_CTXT);
380         if (ctxt == NULL)
381                 return -ENXIO;
382
383         cfs_spin_lock(&mdd->mdd_cl.mc_lock);
384         cur = (long long)mdd->mdd_cl.mc_index;
385         cfs_spin_unlock(&mdd->mdd_cl.mc_lock);
386         if (endrec > cur)
387                 endrec = cur;
388
389         /* purge to "0" is shorthand for everything */
390         if (endrec == 0)
391                 endrec = cur;
392
393         /* If purging all records, write a header entry so we don't have an
394            empty catalog and we're sure to have a valid starting index next
395            time.  In case of crash, we just restart with old log so we're
396            allright. */
397         if (endrec == cur) {
398                 /* XXX: transaction is started by llog itself */
399                 rc = mdd_changelog_write_header(mdd, CLM_PURGE);
400                 if (rc)
401                       goto out;
402         }
403
404         /* Some records were purged, so reset repeat-access time (so we
405            record new mtime update records, so users can see a file has been
406            changed since the last purge) */
407         mdd->mdd_cl.mc_starttime = cfs_time_current_64();
408
409         /* XXX: transaction is started by llog itself */
410         rc = llog_cancel(ctxt, NULL, 1, (struct llog_cookie *)&endrec, 0);
411 out:
412         llog_ctxt_put(ctxt);
413         return rc;
414 }
415
416 /** Add a CL_MARK record to the changelog
417  * \param mdd
418  * \param markerflags - CLM_*
419  * \retval 0 ok
420  */
421 int mdd_changelog_write_header(struct mdd_device *mdd, int markerflags)
422 {
423         struct obd_device *obd = mdd2obd_dev(mdd);
424         struct llog_changelog_rec *rec;
425         int reclen;
426         int len = strlen(obd->obd_name);
427         int rc;
428         ENTRY;
429
430         reclen = llog_data_len(sizeof(*rec) + len);
431         OBD_ALLOC(rec, reclen);
432         if (rec == NULL)
433                 RETURN(-ENOMEM);
434
435         rec->cr.cr_flags = CLF_VERSION;
436         rec->cr.cr_type = CL_MARK;
437         rec->cr.cr_namelen = len;
438         memcpy(rec->cr.cr_name, obd->obd_name, rec->cr.cr_namelen);
439         /* Status and action flags */
440         rec->cr.cr_markerflags = mdd->mdd_cl.mc_flags | markerflags;
441
442         /* XXX: transaction is started by llog itself */
443         rc = (mdd->mdd_cl.mc_mask & (1 << CL_MARK)) ?
444                 mdd_changelog_llog_write(mdd, rec, NULL) : 0;
445
446         /* assume on or off event; reset repeat-access time */
447         mdd->mdd_cl.mc_starttime = cfs_time_current_64();
448
449         OBD_FREE(rec, reclen);
450         RETURN(rc);
451 }
452
453 /**
454  * Create ".lustre" directory.
455  */
456 static int create_dot_lustre_dir(const struct lu_env *env, struct mdd_device *m)
457 {
458         struct lu_fid *fid = &mdd_env_info(env)->mti_fid;
459         struct md_object *mdo;
460         int rc;
461
462         memcpy(fid, &LU_DOT_LUSTRE_FID, sizeof(struct lu_fid));
463         mdo = llo_store_create_index(env, &m->mdd_md_dev, m->mdd_child,
464                                      mdd_root_dir_name, dot_lustre_name,
465                                      fid, &dt_directory_features);
466         /* .lustre dir may be already present */
467         if (IS_ERR(mdo) && PTR_ERR(mdo) != -EEXIST) {
468                 rc = PTR_ERR(mdo);
469                 CERROR("creating obj [%s] fid = "DFID" rc = %d\n",
470                         dot_lustre_name, PFID(fid), rc);
471                 return rc;
472         }
473
474         if (!IS_ERR(mdo))
475                 lu_object_put(env, &mdo->mo_lu);
476
477         return 0;
478 }
479
480
481 static int dot_lustre_mdd_permission(const struct lu_env *env,
482                                      struct md_object *pobj,
483                                      struct md_object *cobj,
484                                      struct md_attr *attr, int mask)
485 {
486         if (mask & ~(MAY_READ | MAY_EXEC))
487                 return -EPERM;
488         else
489                 return 0;
490 }
491
492 static int dot_lustre_mdd_xattr_get(const struct lu_env *env,
493                                     struct md_object *obj, struct lu_buf *buf,
494                                     const char *name)
495 {
496         return 0;
497 }
498
499 static int dot_lustre_mdd_xattr_list(const struct lu_env *env,
500                                      struct md_object *obj, struct lu_buf *buf)
501 {
502         return 0;
503 }
504
505 static int dot_lustre_mdd_xattr_set(const struct lu_env *env,
506                                     struct md_object *obj,
507                                     const struct lu_buf *buf, const char *name,
508                                     int fl)
509 {
510         return -EPERM;
511 }
512
513 static int dot_lustre_mdd_xattr_del(const struct lu_env *env,
514                                     struct md_object *obj,
515                                     const char *name)
516 {
517         return -EPERM;
518 }
519
520 static int dot_lustre_mdd_readlink(const struct lu_env *env,
521                                    struct md_object *obj, struct lu_buf *buf)
522 {
523         return 0;
524 }
525
526 static int dot_lustre_mdd_object_create(const struct lu_env *env,
527                                         struct md_object *obj,
528                                         const struct md_op_spec *spec,
529                                         struct md_attr *ma)
530 {
531         return -EPERM;
532 }
533
534 static int dot_lustre_mdd_ref_add(const struct lu_env *env,
535                                   struct md_object *obj,
536                                   const struct md_attr *ma)
537 {
538         return -EPERM;
539 }
540
541 static int dot_lustre_mdd_ref_del(const struct lu_env *env,
542                                   struct md_object *obj,
543                                   struct md_attr *ma)
544 {
545         return -EPERM;
546 }
547
548 static int dot_lustre_mdd_open(const struct lu_env *env, struct md_object *obj,
549                                int flags)
550 {
551         struct mdd_object *mdd_obj = md2mdd_obj(obj);
552
553         mdd_write_lock(env, mdd_obj, MOR_TGT_CHILD);
554         mdd_obj->mod_count++;
555         mdd_write_unlock(env, mdd_obj);
556
557         return 0;
558 }
559
560 static int dot_lustre_mdd_close(const struct lu_env *env, struct md_object *obj,
561                                 struct md_attr *ma, int mode)
562 {
563         struct mdd_object *mdd_obj = md2mdd_obj(obj);
564
565         mdd_write_lock(env, mdd_obj, MOR_TGT_CHILD);
566         mdd_obj->mod_count--;
567         mdd_write_unlock(env, mdd_obj);
568
569         return 0;
570 }
571
572 static int dot_lustre_mdd_object_sync(const struct lu_env *env,
573                                       struct md_object *obj)
574 {
575         return -ENOSYS;
576 }
577
578 static int dot_lustre_mdd_path(const struct lu_env *env, struct md_object *obj,
579                            char *path, int pathlen, __u64 *recno, int *linkno)
580 {
581         return -ENOSYS;
582 }
583
584 static int dot_file_lock(const struct lu_env *env, struct md_object *obj,
585                          struct lov_mds_md *lmm, struct ldlm_extent *extent,
586                          struct lustre_handle *lockh)
587 {
588         return -ENOSYS;
589 }
590
591 static int dot_file_unlock(const struct lu_env *env, struct md_object *obj,
592                            struct lov_mds_md *lmm, struct lustre_handle *lockh)
593 {
594         return -ENOSYS;
595 }
596
597 static struct md_object_operations mdd_dot_lustre_obj_ops = {
598         .moo_permission    = dot_lustre_mdd_permission,
599         .moo_attr_get      = mdd_attr_get,
600         .moo_attr_set      = mdd_attr_set,
601         .moo_xattr_get     = dot_lustre_mdd_xattr_get,
602         .moo_xattr_list    = dot_lustre_mdd_xattr_list,
603         .moo_xattr_set     = dot_lustre_mdd_xattr_set,
604         .moo_xattr_del     = dot_lustre_mdd_xattr_del,
605         .moo_readpage      = mdd_readpage,
606         .moo_readlink      = dot_lustre_mdd_readlink,
607         .moo_object_create = dot_lustre_mdd_object_create,
608         .moo_ref_add       = dot_lustre_mdd_ref_add,
609         .moo_ref_del       = dot_lustre_mdd_ref_del,
610         .moo_open          = dot_lustre_mdd_open,
611         .moo_close         = dot_lustre_mdd_close,
612         .moo_capa_get      = mdd_capa_get,
613         .moo_object_sync   = dot_lustre_mdd_object_sync,
614         .moo_path          = dot_lustre_mdd_path,
615         .moo_file_lock     = dot_file_lock,
616         .moo_file_unlock   = dot_file_unlock,
617 };
618
619
620 static int dot_lustre_mdd_lookup(const struct lu_env *env, struct md_object *p,
621                                  const struct lu_name *lname, struct lu_fid *f,
622                                  struct md_op_spec *spec)
623 {
624         if (strcmp(lname->ln_name, mdd_obf_dir_name) == 0)
625                 *f = LU_OBF_FID;
626         else
627                 return -ENOENT;
628
629         return 0;
630 }
631
632 static mdl_mode_t dot_lustre_mdd_lock_mode(const struct lu_env *env,
633                                            struct md_object *obj,
634                                            mdl_mode_t mode)
635 {
636         return MDL_MINMODE;
637 }
638
639 static int dot_lustre_mdd_create(const struct lu_env *env,
640                                  struct md_object *pobj,
641                                  const struct lu_name *lname,
642                                  struct md_object *child,
643                                  struct md_op_spec *spec,
644                                  struct md_attr* ma)
645 {
646         return -EPERM;
647 }
648
649 static int dot_lustre_mdd_create_data(const struct lu_env *env,
650                                       struct md_object *p,
651                                       struct md_object *o,
652                                       const struct md_op_spec *spec,
653                                       struct md_attr *ma)
654 {
655         return -EPERM;
656 }
657
658 static int dot_lustre_mdd_rename(const struct lu_env *env,
659                                  struct md_object *src_pobj,
660                                  struct md_object *tgt_pobj,
661                                  const struct lu_fid *lf,
662                                  const struct lu_name *lsname,
663                                  struct md_object *tobj,
664                                  const struct lu_name *ltname,
665                                  struct md_attr *ma)
666 {
667         return -EPERM;
668 }
669
670 static int dot_lustre_mdd_link(const struct lu_env *env,
671                                struct md_object *tgt_obj,
672                                struct md_object *src_obj,
673                                const struct lu_name *lname,
674                                struct md_attr *ma)
675 {
676         return -EPERM;
677 }
678
679 static int dot_lustre_mdd_unlink(const struct lu_env *env,
680                                  struct md_object *pobj,
681                                  struct md_object *cobj,
682                                  const struct lu_name *lname,
683                                  struct md_attr *ma)
684 {
685         return -EPERM;
686 }
687
688 static int dot_lustre_mdd_name_insert(const struct lu_env *env,
689                                       struct md_object *obj,
690                                       const struct lu_name *lname,
691                                       const struct lu_fid *fid,
692                                       const struct md_attr *ma)
693 {
694         return -EPERM;
695 }
696
697 static int dot_lustre_mdd_name_remove(const struct lu_env *env,
698                                       struct md_object *obj,
699                                       const struct lu_name *lname,
700                                       const struct md_attr *ma)
701 {
702         return -EPERM;
703 }
704
705 static int dot_lustre_mdd_rename_tgt(const struct lu_env *env,
706                                      struct md_object *pobj,
707                                      struct md_object *tobj,
708                                      const struct lu_fid *fid,
709                                      const struct lu_name *lname,
710                                      struct md_attr *ma)
711 {
712         return -EPERM;
713 }
714
715
716 static struct md_dir_operations mdd_dot_lustre_dir_ops = {
717         .mdo_is_subdir   = mdd_is_subdir,
718         .mdo_lookup      = dot_lustre_mdd_lookup,
719         .mdo_lock_mode   = dot_lustre_mdd_lock_mode,
720         .mdo_create      = dot_lustre_mdd_create,
721         .mdo_create_data = dot_lustre_mdd_create_data,
722         .mdo_rename      = dot_lustre_mdd_rename,
723         .mdo_link        = dot_lustre_mdd_link,
724         .mdo_unlink      = dot_lustre_mdd_unlink,
725         .mdo_name_insert = dot_lustre_mdd_name_insert,
726         .mdo_name_remove = dot_lustre_mdd_name_remove,
727         .mdo_rename_tgt  = dot_lustre_mdd_rename_tgt,
728 };
729
730 static int obf_attr_get(const struct lu_env *env, struct md_object *obj,
731                         struct md_attr *ma)
732 {
733         int rc = 0;
734
735         if (ma->ma_need & MA_INODE) {
736                 struct mdd_device *mdd = mdo2mdd(obj);
737
738                 /* "fid" is a virtual object and hence does not have any "real"
739                  * attributes. So we reuse attributes of .lustre for "fid" dir */
740                 ma->ma_need |= MA_INODE;
741                 rc = mdd_attr_get(env, &mdd->mdd_dot_lustre->mod_obj, ma);
742                 if (rc)
743                         return rc;
744                 ma->ma_valid |= MA_INODE;
745         }
746
747         /* "fid" directory does not have any striping information. */
748         if (ma->ma_need & MA_LOV) {
749                 struct mdd_object *mdd_obj = md2mdd_obj(obj);
750
751                 if (ma->ma_valid & MA_LOV)
752                         return 0;
753
754                 if (!(S_ISREG(mdd_object_type(mdd_obj)) ||
755                       S_ISDIR(mdd_object_type(mdd_obj))))
756                         return 0;
757
758                 if (ma->ma_need & MA_LOV_DEF) {
759                         rc = mdd_get_default_md(mdd_obj, ma->ma_lmm);
760                         if (rc > 0) {
761                                 ma->ma_lmm_size = rc;
762                                 ma->ma_valid |= MA_LOV;
763                                 rc = 0;
764                         }
765                 }
766         }
767
768         return rc;
769 }
770
771 static int obf_attr_set(const struct lu_env *env, struct md_object *obj,
772                         const struct md_attr *ma)
773 {
774         return -EPERM;
775 }
776
777 static int obf_xattr_list(const struct lu_env *env,
778                           struct md_object *obj, struct lu_buf *buf)
779 {
780         return 0;
781 }
782
783 static int obf_xattr_get(const struct lu_env *env,
784                          struct md_object *obj, struct lu_buf *buf,
785                          const char *name)
786 {
787         return 0;
788 }
789
790 static int obf_xattr_set(const struct lu_env *env,
791                          struct md_object *obj,
792                          const struct lu_buf *buf, const char *name,
793                          int fl)
794 {
795         return -EPERM;
796 }
797
798 static int obf_xattr_del(const struct lu_env *env,
799                          struct md_object *obj,
800                          const char *name)
801 {
802         return -EPERM;
803 }
804
805 static int obf_mdd_open(const struct lu_env *env, struct md_object *obj,
806                         int flags)
807 {
808         struct mdd_object *mdd_obj = md2mdd_obj(obj);
809
810         mdd_write_lock(env, mdd_obj, MOR_TGT_CHILD);
811         mdd_obj->mod_count++;
812         mdd_write_unlock(env, mdd_obj);
813
814         return 0;
815 }
816
817 static int obf_mdd_close(const struct lu_env *env, struct md_object *obj,
818                          struct md_attr *ma, int mode)
819 {
820         struct mdd_object *mdd_obj = md2mdd_obj(obj);
821
822         mdd_write_lock(env, mdd_obj, MOR_TGT_CHILD);
823         mdd_obj->mod_count--;
824         mdd_write_unlock(env, mdd_obj);
825
826         return 0;
827 }
828
829 /** Nothing to list in "fid" directory */
830 static int obf_mdd_readpage(const struct lu_env *env, struct md_object *obj,
831                             const struct lu_rdpg *rdpg)
832 {
833         return -EPERM;
834 }
835
836 static int obf_path(const struct lu_env *env, struct md_object *obj,
837                     char *path, int pathlen, __u64 *recno, int *linkno)
838 {
839         return -ENOSYS;
840 }
841
842 static struct md_object_operations mdd_obf_obj_ops = {
843         .moo_attr_get    = obf_attr_get,
844         .moo_attr_set    = obf_attr_set,
845         .moo_xattr_list  = obf_xattr_list,
846         .moo_xattr_get   = obf_xattr_get,
847         .moo_xattr_set   = obf_xattr_set,
848         .moo_xattr_del   = obf_xattr_del,
849         .moo_open        = obf_mdd_open,
850         .moo_close       = obf_mdd_close,
851         .moo_readpage    = obf_mdd_readpage,
852         .moo_path        = obf_path
853 };
854
855 /**
856  * Lookup method for "fid" object. Only filenames with correct SEQ:OID format
857  * are valid. We also check if object with passed fid exists or not.
858  */
859 static int obf_lookup(const struct lu_env *env, struct md_object *p,
860                       const struct lu_name *lname, struct lu_fid *f,
861                       struct md_op_spec *spec)
862 {
863         char *name = (char *)lname->ln_name;
864         struct mdd_device *mdd = mdo2mdd(p);
865         struct mdd_object *child;
866         int rc = 0;
867
868         while (*name == '[')
869                 name++;
870
871         sscanf(name, SFID, RFID(f));
872         if (!fid_is_sane(f)) {
873                 CWARN("%s: bad FID format [%s], should be "DFID"\n",
874                       mdd->mdd_obd_dev->obd_name, lname->ln_name,
875                       (__u64)FID_SEQ_NORMAL, 1, 0);
876                 GOTO(out, rc = -EINVAL);
877         }
878
879         if (!fid_is_norm(f)) {
880                 CWARN("%s: "DFID" is invalid, sequence should be "
881                       ">= "LPX64"\n", mdd->mdd_obd_dev->obd_name, PFID(f),
882                       (__u64)FID_SEQ_NORMAL);
883                 GOTO(out, rc = -EINVAL);
884         }
885
886         /* Check if object with this fid exists */
887         child = mdd_object_find(env, mdd, f);
888         if (child == NULL)
889                 GOTO(out, rc = 0);
890         if (IS_ERR(child))
891                 GOTO(out, rc = PTR_ERR(child));
892
893         if (mdd_object_exists(child) == 0)
894                 rc = -ENOENT;
895
896         mdd_object_put(env, child);
897
898 out:
899         return rc;
900 }
901
902 static int obf_create(const struct lu_env *env, struct md_object *pobj,
903                       const struct lu_name *lname, struct md_object *child,
904                       struct md_op_spec *spec, struct md_attr* ma)
905 {
906         return -EPERM;
907 }
908
909 static int obf_rename(const struct lu_env *env,
910                       struct md_object *src_pobj, struct md_object *tgt_pobj,
911                       const struct lu_fid *lf, const struct lu_name *lsname,
912                       struct md_object *tobj, const struct lu_name *ltname,
913                       struct md_attr *ma)
914 {
915         return -EPERM;
916 }
917
918 static int obf_link(const struct lu_env *env, struct md_object *tgt_obj,
919                     struct md_object *src_obj, const struct lu_name *lname,
920                     struct md_attr *ma)
921 {
922         return -EPERM;
923 }
924
925 static int obf_unlink(const struct lu_env *env, struct md_object *pobj,
926                       struct md_object *cobj, const struct lu_name *lname,
927                       struct md_attr *ma)
928 {
929         return -EPERM;
930 }
931
932 static struct md_dir_operations mdd_obf_dir_ops = {
933         .mdo_lookup = obf_lookup,
934         .mdo_create = obf_create,
935         .mdo_rename = obf_rename,
936         .mdo_link   = obf_link,
937         .mdo_unlink = obf_unlink
938 };
939
940 /**
941  * Create special in-memory "fid" object for open-by-fid.
942  */
943 static int mdd_obf_setup(const struct lu_env *env, struct mdd_device *m)
944 {
945         struct mdd_object *mdd_obf;
946         struct lu_object *obf_lu_obj;
947         int rc = 0;
948
949         m->mdd_dot_lustre_objs.mdd_obf = mdd_object_find(env, m,
950                                                          &LU_OBF_FID);
951         if (m->mdd_dot_lustre_objs.mdd_obf == NULL ||
952             IS_ERR(m->mdd_dot_lustre_objs.mdd_obf))
953                 GOTO(out, rc = -ENOENT);
954
955         mdd_obf = m->mdd_dot_lustre_objs.mdd_obf;
956         mdd_obf->mod_obj.mo_dir_ops = &mdd_obf_dir_ops;
957         mdd_obf->mod_obj.mo_ops = &mdd_obf_obj_ops;
958         /* Don't allow objects to be created in "fid" dir */
959         mdd_obf->mod_flags |= IMMUTE_OBJ;
960
961         obf_lu_obj = mdd2lu_obj(mdd_obf);
962         obf_lu_obj->lo_header->loh_attr |= (LOHA_EXISTS | S_IFDIR);
963
964 out:
965         return rc;
966 }
967
968 /** Setup ".lustre" directory object */
969 static int mdd_dot_lustre_setup(const struct lu_env *env, struct mdd_device *m)
970 {
971         struct dt_object *dt_dot_lustre;
972         struct lu_fid *fid = &mdd_env_info(env)->mti_fid;
973         int rc;
974
975         rc = create_dot_lustre_dir(env, m);
976         if (rc)
977                 return rc;
978
979         dt_dot_lustre = dt_store_open(env, m->mdd_child, mdd_root_dir_name,
980                                       dot_lustre_name, fid);
981         if (IS_ERR(dt_dot_lustre)) {
982                 rc = PTR_ERR(dt_dot_lustre);
983                 GOTO(out, rc);
984         }
985
986         /* references are released in mdd_device_shutdown() */
987         m->mdd_dot_lustre = lu2mdd_obj(lu_object_locate(dt_dot_lustre->do_lu.lo_header,
988                                                         &mdd_device_type));
989
990         m->mdd_dot_lustre->mod_obj.mo_dir_ops = &mdd_dot_lustre_dir_ops;
991         m->mdd_dot_lustre->mod_obj.mo_ops = &mdd_dot_lustre_obj_ops;
992
993         rc = mdd_obf_setup(env, m);
994         if (rc)
995                 CERROR("Error initializing \"fid\" object - %d.\n", rc);
996
997 out:
998         RETURN(rc);
999 }
1000
1001 static int mdd_process_config(const struct lu_env *env,
1002                               struct lu_device *d, struct lustre_cfg *cfg)
1003 {
1004         struct mdd_device *m    = lu2mdd_dev(d);
1005         struct dt_device  *dt   = m->mdd_child;
1006         struct lu_device  *next = &dt->dd_lu_dev;
1007         int rc;
1008         ENTRY;
1009
1010         switch (cfg->lcfg_command) {
1011         case LCFG_PARAM: {
1012                 struct lprocfs_static_vars lvars;
1013
1014                 lprocfs_mdd_init_vars(&lvars);
1015                 rc = class_process_proc_param(PARAM_MDD, lvars.obd_vars, cfg,m);
1016                 if (rc > 0 || rc == -ENOSYS)
1017                         /* we don't understand; pass it on */
1018                         rc = next->ld_ops->ldo_process_config(env, next, cfg);
1019                 break;
1020         }
1021         case LCFG_SETUP:
1022                 rc = next->ld_ops->ldo_process_config(env, next, cfg);
1023                 if (rc)
1024                         GOTO(out, rc);
1025                 dt->dd_ops->dt_conf_get(env, dt, &m->mdd_dt_conf);
1026
1027                 rc = mdd_init_obd(env, m, cfg);
1028                 if (rc) {
1029                         CERROR("lov init error %d\n", rc);
1030                         GOTO(out, rc);
1031                 }
1032
1033                 mdd_changelog_init(env, m);
1034                 break;
1035         case LCFG_CLEANUP:
1036                 lu_dev_del_linkage(d->ld_site, d);
1037                 mdd_device_shutdown(env, m, cfg);
1038         default:
1039                 rc = next->ld_ops->ldo_process_config(env, next, cfg);
1040                 break;
1041         }
1042 out:
1043         RETURN(rc);
1044 }
1045
1046 #if 0
1047 static int mdd_lov_set_nextid(const struct lu_env *env,
1048                               struct mdd_device *mdd)
1049 {
1050         struct mds_obd *mds = &mdd->mdd_obd_dev->u.mds;
1051         int rc;
1052         ENTRY;
1053
1054         LASSERT(mds->mds_lov_objids != NULL);
1055         rc = obd_set_info_async(mds->mds_lov_exp, strlen(KEY_NEXT_ID),
1056                                 KEY_NEXT_ID, mds->mds_lov_desc.ld_tgt_count,
1057                                 mds->mds_lov_objids, NULL);
1058
1059         RETURN(rc);
1060 }
1061
1062 static int mdd_cleanup_unlink_llog(const struct lu_env *env,
1063                                    struct mdd_device *mdd)
1064 {
1065         /* XXX: to be implemented! */
1066         return 0;
1067 }
1068 #endif
1069
1070 static int mdd_recovery_complete(const struct lu_env *env,
1071                                  struct lu_device *d)
1072 {
1073         struct mdd_device *mdd = lu2mdd_dev(d);
1074         struct lu_device *next = &mdd->mdd_child->dd_lu_dev;
1075         struct obd_device *obd = mdd2obd_dev(mdd);
1076         int rc;
1077         ENTRY;
1078
1079         LASSERT(mdd != NULL);
1080         LASSERT(obd != NULL);
1081 #if 0
1082         /* XXX: Do we need this in new stack? */
1083         rc = mdd_lov_set_nextid(env, mdd);
1084         if (rc) {
1085                 CERROR("mdd_lov_set_nextid() failed %d\n",
1086                        rc);
1087                 RETURN(rc);
1088         }
1089
1090         /* XXX: cleanup unlink. */
1091         rc = mdd_cleanup_unlink_llog(env, mdd);
1092         if (rc) {
1093                 CERROR("mdd_cleanup_unlink_llog() failed %d\n",
1094                        rc);
1095                 RETURN(rc);
1096         }
1097 #endif
1098         /* Call that with obd_recovering = 1 just to update objids */
1099         obd_notify(obd->u.mds.mds_lov_obd, NULL, (obd->obd_async_recov ?
1100                     OBD_NOTIFY_SYNC_NONBLOCK : OBD_NOTIFY_SYNC), NULL);
1101
1102         /* Drop obd_recovering to 0 and call o_postrecov to recover mds_lov */
1103         cfs_spin_lock(&obd->obd_dev_lock);
1104         obd->obd_recovering = 0;
1105         cfs_spin_unlock(&obd->obd_dev_lock);
1106         obd->obd_type->typ_dt_ops->o_postrecov(obd);
1107
1108         /* XXX: orphans handling. */
1109         __mdd_orphan_cleanup(env, mdd);
1110         rc = next->ld_ops->ldo_recovery_complete(env, next);
1111
1112         RETURN(rc);
1113 }
1114
1115 static int mdd_prepare(const struct lu_env *env,
1116                        struct lu_device *pdev,
1117                        struct lu_device *cdev)
1118 {
1119         struct mdd_device *mdd = lu2mdd_dev(cdev);
1120         struct lu_device *next = &mdd->mdd_child->dd_lu_dev;
1121         struct dt_object *root;
1122         struct lu_fid     fid;
1123         int rc;
1124
1125         ENTRY;
1126         rc = next->ld_ops->ldo_prepare(env, cdev, next);
1127         if (rc)
1128                 GOTO(out, rc);
1129
1130         dt_txn_callback_add(mdd->mdd_child, &mdd->mdd_txn_cb);
1131         root = dt_store_open(env, mdd->mdd_child, "", mdd_root_dir_name,
1132                              &mdd->mdd_root_fid);
1133         if (!IS_ERR(root)) {
1134                 LASSERT(root != NULL);
1135                 lu_object_put(env, &root->do_lu);
1136                 rc = orph_index_init(env, mdd);
1137         } else {
1138                 rc = PTR_ERR(root);
1139         }
1140         if (rc)
1141                 GOTO(out, rc);
1142
1143         rc = mdd_dot_lustre_setup(env, mdd);
1144         if (rc) {
1145                 CERROR("Error(%d) initializing .lustre objects\n", rc);
1146                 GOTO(out, rc);
1147         }
1148
1149         /* we use capa file to declare llog changes,
1150          * will be fixed with new llog in 2.3 */
1151         root = dt_store_open(env, mdd->mdd_child, "", CAPA_KEYS, &fid);
1152         if (IS_ERR(root))
1153                 GOTO(out, rc = PTR_ERR(root));
1154
1155         mdd->mdd_capa = root;
1156         rc = mdd_lfsck_setup(env, mdd);
1157
1158         GOTO(out, rc);
1159
1160 out:
1161         return rc;
1162 }
1163
1164 const struct lu_device_operations mdd_lu_ops = {
1165         .ldo_object_alloc      = mdd_object_alloc,
1166         .ldo_process_config    = mdd_process_config,
1167         .ldo_recovery_complete = mdd_recovery_complete,
1168         .ldo_prepare           = mdd_prepare,
1169 };
1170
1171 /*
1172  * No permission check is needed.
1173  */
1174 static int mdd_root_get(const struct lu_env *env,
1175                         struct md_device *m, struct lu_fid *f)
1176 {
1177         struct mdd_device *mdd = lu2mdd_dev(&m->md_lu_dev);
1178
1179         ENTRY;
1180         *f = mdd->mdd_root_fid;
1181         RETURN(0);
1182 }
1183
1184 /*
1185  * No permission check is needed.
1186  */
1187 static int mdd_statfs(const struct lu_env *env, struct md_device *m,
1188                       struct obd_statfs *sfs)
1189 {
1190         struct mdd_device *mdd = lu2mdd_dev(&m->md_lu_dev);
1191         int rc;
1192
1193         ENTRY;
1194
1195         rc = mdd_child_ops(mdd)->dt_statfs(env, mdd->mdd_child, sfs);
1196
1197         RETURN(rc);
1198 }
1199
1200 /*
1201  * No permission check is needed.
1202  */
1203 static int mdd_maxsize_get(const struct lu_env *env, struct md_device *m,
1204                            int *md_size, int *cookie_size)
1205 {
1206         struct mdd_device *mdd = lu2mdd_dev(&m->md_lu_dev);
1207         ENTRY;
1208
1209         *md_size = mdd_lov_mdsize(env, mdd);
1210         *cookie_size = mdd_lov_cookiesize(env, mdd);
1211
1212         RETURN(0);
1213 }
1214
1215 static int mdd_init_capa_ctxt(const struct lu_env *env, struct md_device *m,
1216                               int mode, unsigned long timeout, __u32 alg,
1217                               struct lustre_capa_key *keys)
1218 {
1219         struct mdd_device *mdd = lu2mdd_dev(&m->md_lu_dev);
1220         struct mds_obd    *mds = &mdd2obd_dev(mdd)->u.mds;
1221         int rc;
1222         ENTRY;
1223
1224         /* need barrier for mds_capa_keys access. */
1225         cfs_down_write(&mds->mds_notify_lock);
1226         mds->mds_capa_keys = keys;
1227         cfs_up_write(&mds->mds_notify_lock);
1228
1229         rc = mdd_child_ops(mdd)->dt_init_capa_ctxt(env, mdd->mdd_child, mode,
1230                                                    timeout, alg, keys);
1231         RETURN(rc);
1232 }
1233
1234 static int mdd_update_capa_key(const struct lu_env *env,
1235                                struct md_device *m,
1236                                struct lustre_capa_key *key)
1237 {
1238         struct mds_capa_info info = { .uuid = NULL, .capa = key };
1239         struct mdd_device *mdd = lu2mdd_dev(&m->md_lu_dev);
1240         struct obd_export *lov_exp = mdd2obd_dev(mdd)->u.mds.mds_lov_exp;
1241         int rc;
1242         ENTRY;
1243
1244         rc = obd_set_info_async(env, lov_exp, sizeof(KEY_CAPA_KEY),
1245                                 KEY_CAPA_KEY, sizeof(info), &info, NULL);
1246         RETURN(rc);
1247 }
1248
1249 static int mdd_llog_ctxt_get(const struct lu_env *env, struct md_device *m,
1250                              int idx, void **h)
1251 {
1252         struct mdd_device *mdd = lu2mdd_dev(&m->md_lu_dev);
1253
1254         *h = llog_group_get_ctxt(&mdd2obd_dev(mdd)->obd_olg, idx);
1255         return (*h == NULL ? -ENOENT : 0);
1256 }
1257
1258 static struct lu_device *mdd_device_alloc(const struct lu_env *env,
1259                                           struct lu_device_type *t,
1260                                           struct lustre_cfg *lcfg)
1261 {
1262         struct lu_device  *l;
1263         struct mdd_device *m;
1264
1265         OBD_ALLOC_PTR(m);
1266         if (m == NULL) {
1267                 l = ERR_PTR(-ENOMEM);
1268         } else {
1269                 md_device_init(&m->mdd_md_dev, t);
1270                 l = mdd2lu_dev(m);
1271                 l->ld_ops = &mdd_lu_ops;
1272                 m->mdd_md_dev.md_ops = &mdd_ops;
1273                 md_upcall_init(&m->mdd_md_dev, NULL);
1274         }
1275
1276         return l;
1277 }
1278
1279 static struct lu_device *mdd_device_free(const struct lu_env *env,
1280                                          struct lu_device *lu)
1281 {
1282         struct mdd_device *m = lu2mdd_dev(lu);
1283         struct lu_device  *next = &m->mdd_child->dd_lu_dev;
1284         ENTRY;
1285
1286         LASSERT(cfs_atomic_read(&lu->ld_ref) == 0);
1287         md_device_fini(&m->mdd_md_dev);
1288         OBD_FREE_PTR(m);
1289         RETURN(next);
1290 }
1291
1292 static struct obd_ops mdd_obd_device_ops = {
1293         .o_owner = THIS_MODULE
1294 };
1295
1296 /* context key constructor/destructor: mdd_ucred_key_init, mdd_ucred_key_fini */
1297 LU_KEY_INIT_FINI(mdd_ucred, struct md_ucred);
1298
1299 static struct lu_context_key mdd_ucred_key = {
1300         .lct_tags = LCT_SESSION,
1301         .lct_init = mdd_ucred_key_init,
1302         .lct_fini = mdd_ucred_key_fini
1303 };
1304
1305 struct md_ucred *md_ucred(const struct lu_env *env)
1306 {
1307         LASSERT(env->le_ses != NULL);
1308         return lu_context_key_get(env->le_ses, &mdd_ucred_key);
1309 }
1310 EXPORT_SYMBOL(md_ucred);
1311
1312 /*
1313  * context key constructor/destructor:
1314  * mdd_capainfo_key_init, mdd_capainfo_key_fini
1315  */
1316 LU_KEY_INIT_FINI(mdd_capainfo, struct md_capainfo);
1317
1318 struct lu_context_key mdd_capainfo_key = {
1319         .lct_tags = LCT_SESSION,
1320         .lct_init = mdd_capainfo_key_init,
1321         .lct_fini = mdd_capainfo_key_fini
1322 };
1323
1324 struct md_capainfo *md_capainfo(const struct lu_env *env)
1325 {
1326         /* NB, in mdt_init0 */
1327         if (env->le_ses == NULL)
1328                 return NULL;
1329         return lu_context_key_get(env->le_ses, &mdd_capainfo_key);
1330 }
1331 EXPORT_SYMBOL(md_capainfo);
1332
1333 /*
1334  * context key constructor/destructor:
1335  * mdd_quota_key_init, mdd_quota_key_fini
1336  */
1337 LU_KEY_INIT_FINI(mdd_quota, struct md_quota);
1338
1339 struct lu_context_key mdd_quota_key = {
1340         .lct_tags = LCT_SESSION,
1341         .lct_init = mdd_quota_key_init,
1342         .lct_fini = mdd_quota_key_fini
1343 };
1344
1345 struct md_quota *md_quota(const struct lu_env *env)
1346 {
1347         LASSERT(env->le_ses != NULL);
1348         return lu_context_key_get(env->le_ses, &mdd_quota_key);
1349 }
1350 EXPORT_SYMBOL(md_quota);
1351
1352 static int mdd_changelog_user_register(struct mdd_device *mdd, int *id)
1353 {
1354         struct llog_ctxt *ctxt;
1355         struct llog_changelog_user_rec *rec;
1356         int rc;
1357         ENTRY;
1358
1359         ctxt = llog_get_context(mdd2obd_dev(mdd),LLOG_CHANGELOG_USER_ORIG_CTXT);
1360         if (ctxt == NULL)
1361                 RETURN(-ENXIO);
1362
1363         OBD_ALLOC_PTR(rec);
1364         if (rec == NULL) {
1365                 llog_ctxt_put(ctxt);
1366                 RETURN(-ENOMEM);
1367         }
1368
1369         /* Assume we want it on since somebody registered */
1370         rc = mdd_changelog_on(mdd, 1);
1371         if (rc)
1372                 GOTO(out, rc);
1373
1374         rec->cur_hdr.lrh_len = sizeof(*rec);
1375         rec->cur_hdr.lrh_type = CHANGELOG_USER_REC;
1376         cfs_spin_lock(&mdd->mdd_cl.mc_user_lock);
1377         if (mdd->mdd_cl.mc_lastuser == (unsigned int)(-1)) {
1378                 cfs_spin_unlock(&mdd->mdd_cl.mc_user_lock);
1379                 CERROR("Maximum number of changelog users exceeded!\n");
1380                 GOTO(out, rc = -EOVERFLOW);
1381         }
1382         *id = rec->cur_id = ++mdd->mdd_cl.mc_lastuser;
1383         rec->cur_endrec = mdd->mdd_cl.mc_index;
1384         cfs_spin_unlock(&mdd->mdd_cl.mc_user_lock);
1385
1386         rc = llog_add(ctxt, &rec->cur_hdr, NULL, NULL, 0);
1387
1388         CDEBUG(D_IOCTL, "Registered changelog user %d\n", *id);
1389 out:
1390         OBD_FREE_PTR(rec);
1391         llog_ctxt_put(ctxt);
1392         RETURN(rc);
1393 }
1394
1395 int mdd_declare_llog_cancel(const struct lu_env *env, struct mdd_device *mdd,
1396                             struct thandle *handle)
1397 {
1398         int rc;
1399
1400
1401         /* XXX: this is a temporary solution to declare llog changes
1402          *      will be fixed in 2.3 with new llog implementation */
1403
1404         LASSERT(mdd->mdd_capa);
1405
1406         /* the llog record could be canceled either by modifying
1407          * the plain llog's header or by destroying the llog itself
1408          * when this record is the last one in it, it can't be known
1409          * here, but the catlog's header will also be modified for
1410          * the second case, then the first case can be covered and
1411          * is no need to declare it */
1412
1413         /* destroy empty plain log */
1414         rc = dt_declare_destroy(env, mdd->mdd_capa, handle);
1415         if (rc)
1416                 return rc;
1417
1418         /* record the catlog's header if an empty plain log was destroyed */
1419         rc = dt_declare_record_write(env, mdd->mdd_capa,
1420                                      sizeof(struct llog_logid_rec), 0, handle);
1421         return rc;
1422 }
1423
1424 struct mdd_changelog_user_data {
1425         __u64 mcud_endrec; /**< purge record for this user */
1426         __u64 mcud_minrec; /**< lowest changelog recno still referenced */
1427         __u32 mcud_id;
1428         __u32 mcud_minid;  /**< user id with lowest rec reference */
1429         __u32 mcud_usercount;
1430         int   mcud_found:1;
1431         struct mdd_device   *mcud_mdd;
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(const struct lu_env *env,
1440                                        struct llog_handle *llh,
1441                                        struct llog_rec_hdr *hdr, void *data)
1442 {
1443         struct llog_changelog_user_rec  *rec;
1444         struct mdd_changelog_user_data  *mcud = data;
1445         int                              rc;
1446
1447         ENTRY;
1448
1449         LASSERT(llh->lgh_hdr->llh_flags & LLOG_F_IS_PLAIN);
1450
1451         rec = (struct llog_changelog_user_rec *)hdr;
1452
1453         mcud->mcud_usercount++;
1454
1455         /* If we have a new endrec for this id, use it for the following
1456            min check instead of its old value */
1457         if (rec->cur_id == mcud->mcud_id)
1458                 rec->cur_endrec = max(rec->cur_endrec, mcud->mcud_endrec);
1459
1460         /* Track the minimum referenced record */
1461         if (mcud->mcud_minid == 0 || mcud->mcud_minrec > rec->cur_endrec) {
1462                 mcud->mcud_minid = rec->cur_id;
1463                 mcud->mcud_minrec = rec->cur_endrec;
1464         }
1465
1466         if (rec->cur_id != mcud->mcud_id)
1467                 RETURN(0);
1468
1469         /* Update this user's record */
1470         mcud->mcud_found = 1;
1471
1472         /* Special case: unregister this user */
1473         if (mcud->mcud_endrec == MCUD_UNREGISTER) {
1474                 struct llog_cookie cookie;
1475                 void *th;
1476                 struct mdd_device *mdd = mcud->mcud_mdd;
1477
1478                 cookie.lgc_lgl = llh->lgh_id;
1479                 cookie.lgc_index = hdr->lrh_index;
1480
1481                 /* XXX This is a workaround for the deadlock of changelog
1482                  * adding vs. changelog cancelling. LU-81. */
1483                 th = mdd_trans_create(env, mdd);
1484                 if (IS_ERR(th)) {
1485                         CERROR("Cannot get thandle\n");
1486                         RETURN(-ENOMEM);
1487                 }
1488
1489                 rc = mdd_declare_llog_cancel(env, mdd, th);
1490                 if (rc)
1491                         GOTO(stop, rc);
1492
1493                 rc = mdd_trans_start(env, mdd, th);
1494                 if (rc)
1495                         GOTO(stop, rc);
1496
1497                 rc = llog_cat_cancel_records(llh->u.phd.phd_cat_handle,
1498                                              1, &cookie);
1499                 if (rc == 0)
1500                         mcud->mcud_usercount--;
1501
1502 stop:
1503                 mdd_trans_stop(env, mdd, 0, th);
1504                 RETURN(rc);
1505         }
1506
1507         /* Update the endrec */
1508         CDEBUG(D_IOCTL, "Rewriting changelog user %d endrec to "LPU64"\n",
1509                mcud->mcud_id, rec->cur_endrec);
1510
1511         /* hdr+1 is loc of data */
1512         hdr->lrh_len -= sizeof(*hdr) + sizeof(struct llog_rec_tail);
1513         rc = llog_write_rec(llh, hdr, NULL, 0, (void *)(hdr + 1),
1514                             hdr->lrh_index);
1515
1516         RETURN(rc);
1517 }
1518
1519 static int mdd_changelog_user_purge(const struct lu_env *env,
1520                                     struct mdd_device *mdd, int id,
1521                                     long long endrec)
1522 {
1523         struct mdd_changelog_user_data data;
1524         struct llog_ctxt *ctxt;
1525         int rc;
1526         ENTRY;
1527
1528         CDEBUG(D_IOCTL, "Purge request: id=%d, endrec=%lld\n", id, endrec);
1529
1530         data.mcud_id = id;
1531         data.mcud_minid = 0;
1532         data.mcud_minrec = 0;
1533         data.mcud_usercount = 0;
1534         data.mcud_endrec = endrec;
1535         data.mcud_mdd = mdd;
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);