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