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