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