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