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