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