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