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