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