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