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