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