Whamcloud - gitweb
Revert "b=21379 Fix orphans proceeding in osc_create"
[fs/lustre-release.git] / lustre / mdd / mdd_device.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * GPL HEADER START
5  *
6  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 only,
10  * as published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License version 2 for more details (a copy is included
16  * in the LICENSE file that accompanied this code).
17  *
18  * You should have received a copy of the GNU General Public License
19  * version 2 along with this program; If not, see
20  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
21  *
22  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
23  * CA 95054 USA or visit www.sun.com if you need additional information or
24  * have any questions.
25  *
26  * GPL HEADER END
27  */
28 /*
29  * Copyright  2008 Sun Microsystems, Inc. All rights reserved
30  * Use is subject to license terms.
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 #ifndef EXPORT_SYMTAB
44 # define EXPORT_SYMTAB
45 #endif
46 #define DEBUG_SUBSYSTEM S_MDS
47
48 #include <linux/module.h>
49 #ifdef HAVE_EXT4_LDISKFS
50 #include <ldiskfs/ldiskfs_jbd2.h>
51 #else
52 #include <linux/jbd.h>
53 #endif
54 #include <obd.h>
55 #include <obd_class.h>
56 #include <lustre_ver.h>
57 #include <obd_support.h>
58 #include <lprocfs_status.h>
59
60 #include <lustre_disk.h>
61 #include <lustre_fid.h>
62 #ifdef HAVE_EXT4_LDISKFS
63 #include <ldiskfs/ldiskfs.h>
64 #else
65 #include <linux/ldiskfs_fs.h>
66 #endif
67 #include <lustre_mds.h>
68 #include <lustre/lustre_idl.h>
69 #include <lustre_disk.h>      /* for changelogs */
70 #include <lustre_param.h>
71 #include <lustre_fid.h>
72
73 #include "mdd_internal.h"
74
75 const struct md_device_operations mdd_ops;
76 static struct lu_device_type mdd_device_type;
77
78 static const char mdd_root_dir_name[] = "ROOT";
79 static const char mdd_obf_dir_name[] = "fid";
80
81 static int mdd_device_init(const struct lu_env *env, struct lu_device *d,
82                            const char *name, struct lu_device *next)
83 {
84         struct mdd_device *mdd = lu2mdd_dev(d);
85         int rc;
86         ENTRY;
87
88         mdd->mdd_child = lu2dt_dev(next);
89
90         /* Prepare transactions callbacks. */
91         mdd->mdd_txn_cb.dtc_txn_start = mdd_txn_start_cb;
92         mdd->mdd_txn_cb.dtc_txn_stop = mdd_txn_stop_cb;
93         mdd->mdd_txn_cb.dtc_txn_commit = mdd_txn_commit_cb;
94         mdd->mdd_txn_cb.dtc_cookie = mdd;
95         mdd->mdd_txn_cb.dtc_tag = LCT_MD_THREAD;
96         CFS_INIT_LIST_HEAD(&mdd->mdd_txn_cb.dtc_linkage);
97         mdd->mdd_atime_diff = MAX_ATIME_DIFF;
98         /* sync permission changes */
99         mdd->mdd_sync_permission = 1;
100
101         rc = mdd_procfs_init(mdd, name);
102         RETURN(rc);
103 }
104
105 static struct lu_device *mdd_device_fini(const struct lu_env *env,
106                                          struct lu_device *d)
107 {
108         struct mdd_device *mdd = lu2mdd_dev(d);
109         struct lu_device *next = &mdd->mdd_child->dd_lu_dev;
110         int rc;
111
112         rc = mdd_procfs_fini(mdd);
113         if (rc) {
114                 CERROR("proc fini error %d \n", rc);
115                 return ERR_PTR(rc);
116         }
117         return next;
118 }
119
120 static void mdd_changelog_fini(const struct lu_env *env,
121                                struct mdd_device *mdd);
122
123 static void mdd_device_shutdown(const struct lu_env *env,
124                                 struct mdd_device *m, struct lustre_cfg *cfg)
125 {
126         ENTRY;
127         mdd_changelog_fini(env, m);
128         dt_txn_callback_del(m->mdd_child, &m->mdd_txn_cb);
129         if (m->mdd_dot_lustre_objs.mdd_obf)
130                 mdd_object_put(env, m->mdd_dot_lustre_objs.mdd_obf);
131         if (m->mdd_dot_lustre)
132                 mdd_object_put(env, m->mdd_dot_lustre);
133         if (m->mdd_obd_dev)
134                 mdd_fini_obd(env, m, cfg);
135         orph_index_fini(env, m);
136         /* remove upcall device*/
137         md_upcall_fini(&m->mdd_md_dev);
138         EXIT;
139 }
140
141 static int changelog_init_cb(struct llog_handle *llh, struct llog_rec_hdr *hdr,
142                              void *data)
143 {
144         struct mdd_device *mdd = (struct mdd_device *)data;
145         struct llog_changelog_rec *rec = (struct llog_changelog_rec *)hdr;
146         ENTRY;
147
148         LASSERT(llh->lgh_hdr->llh_flags & LLOG_F_IS_PLAIN);
149         LASSERT(rec->cr_hdr.lrh_type == CHANGELOG_REC);
150
151         CDEBUG(D_INFO,
152                "seeing record at index %d/%d/"LPU64" t=%x %.*s in log "LPX64"\n",
153                hdr->lrh_index, rec->cr_hdr.lrh_index, rec->cr.cr_index,
154                rec->cr.cr_type, rec->cr.cr_namelen, rec->cr.cr_name,
155                llh->lgh_id.lgl_oid);
156
157         mdd->mdd_cl.mc_index = rec->cr.cr_index;
158         RETURN(LLOG_PROC_BREAK);
159 }
160
161 static int changelog_user_init_cb(struct llog_handle *llh,
162                                   struct llog_rec_hdr *hdr, void *data)
163 {
164         struct mdd_device *mdd = (struct mdd_device *)data;
165         struct llog_changelog_user_rec *rec =
166                 (struct llog_changelog_user_rec *)hdr;
167         ENTRY;
168
169         LASSERT(llh->lgh_hdr->llh_flags & LLOG_F_IS_PLAIN);
170         LASSERT(rec->cur_hdr.lrh_type == CHANGELOG_USER_REC);
171
172         CDEBUG(D_INFO, "seeing user at index %d/%d id=%d endrec="LPU64
173                " in log "LPX64"\n", hdr->lrh_index, rec->cur_hdr.lrh_index,
174                rec->cur_id, rec->cur_endrec, llh->lgh_id.lgl_oid);
175
176         cfs_spin_lock(&mdd->mdd_cl.mc_user_lock);
177         mdd->mdd_cl.mc_lastuser = rec->cur_id;
178         cfs_spin_unlock(&mdd->mdd_cl.mc_user_lock);
179
180         RETURN(LLOG_PROC_BREAK);
181 }
182
183
184 static int mdd_changelog_llog_init(struct mdd_device *mdd)
185 {
186         struct obd_device *obd = mdd2obd_dev(mdd);
187         struct llog_ctxt *ctxt;
188         int rc;
189
190         /* Find last changelog entry number */
191         ctxt = llog_get_context(obd, LLOG_CHANGELOG_ORIG_CTXT);
192         if (ctxt == NULL) {
193                 CERROR("no changelog context\n");
194                 return -EINVAL;
195         }
196         if (!ctxt->loc_handle) {
197                 llog_ctxt_put(ctxt);
198                 return -EINVAL;
199         }
200
201         rc = llog_cat_reverse_process(ctxt->loc_handle, changelog_init_cb, mdd);
202         llog_ctxt_put(ctxt);
203
204         if (rc < 0) {
205                 CERROR("changelog init failed: %d\n", rc);
206                 return rc;
207         }
208         CDEBUG(D_IOCTL, "changelog starting index="LPU64"\n",
209                mdd->mdd_cl.mc_index);
210
211         /* Find last changelog user id */
212         ctxt = llog_get_context(obd, LLOG_CHANGELOG_USER_ORIG_CTXT);
213         if (ctxt == NULL) {
214                 CERROR("no changelog user context\n");
215                 return -EINVAL;
216         }
217         if (!ctxt->loc_handle) {
218                 llog_ctxt_put(ctxt);
219                 return -EINVAL;
220         }
221
222         rc = llog_cat_reverse_process(ctxt->loc_handle, changelog_user_init_cb,
223                                       mdd);
224         llog_ctxt_put(ctxt);
225
226         if (rc < 0) {
227                 CERROR("changelog user init failed: %d\n", rc);
228                 return rc;
229         }
230
231         /* If we have registered users, assume we want changelogs on */
232         if (mdd->mdd_cl.mc_lastuser > 0)
233                 rc = mdd_changelog_on(mdd, 1);
234
235         return rc;
236 }
237
238 static int mdd_changelog_init(const struct lu_env *env, struct mdd_device *mdd)
239 {
240         int rc;
241
242         mdd->mdd_cl.mc_index = 0;
243         cfs_spin_lock_init(&mdd->mdd_cl.mc_lock);
244         cfs_waitq_init(&mdd->mdd_cl.mc_waitq);
245         mdd->mdd_cl.mc_starttime = cfs_time_current_64();
246         mdd->mdd_cl.mc_flags = 0; /* off by default */
247         mdd->mdd_cl.mc_mask = CHANGELOG_DEFMASK;
248         cfs_spin_lock_init(&mdd->mdd_cl.mc_user_lock);
249         mdd->mdd_cl.mc_lastuser = 0;
250
251         rc = mdd_changelog_llog_init(mdd);
252         if (rc) {
253                 CERROR("Changelog setup during init failed %d\n", rc);
254                 mdd->mdd_cl.mc_flags |= CLM_ERR;
255         }
256
257         return rc;
258 }
259
260 static void mdd_changelog_fini(const struct lu_env *env, struct mdd_device *mdd)
261 {
262         mdd->mdd_cl.mc_flags = 0;
263 }
264
265 /* Start / stop recording */
266 int mdd_changelog_on(struct mdd_device *mdd, int on)
267 {
268         int rc = 0;
269
270         if ((on == 1) && ((mdd->mdd_cl.mc_flags & CLM_ON) == 0)) {
271                 LCONSOLE_INFO("%s: changelog on\n", mdd2obd_dev(mdd)->obd_name);
272                 if (mdd->mdd_cl.mc_flags & CLM_ERR) {
273                         CERROR("Changelogs cannot be enabled due to error "
274                                "condition (see %s log).\n",
275                                mdd2obd_dev(mdd)->obd_name);
276                         rc = -ESRCH;
277                 } else {
278                         cfs_spin_lock(&mdd->mdd_cl.mc_lock);
279                         mdd->mdd_cl.mc_flags |= CLM_ON;
280                         cfs_spin_unlock(&mdd->mdd_cl.mc_lock);
281                         rc = mdd_changelog_write_header(mdd, CLM_START);
282                 }
283         } else if ((on == 0) && ((mdd->mdd_cl.mc_flags & CLM_ON) == CLM_ON)) {
284                 LCONSOLE_INFO("%s: changelog off\n",mdd2obd_dev(mdd)->obd_name);
285                 rc = mdd_changelog_write_header(mdd, CLM_FINI);
286                 cfs_spin_lock(&mdd->mdd_cl.mc_lock);
287                 mdd->mdd_cl.mc_flags &= ~CLM_ON;
288                 cfs_spin_unlock(&mdd->mdd_cl.mc_lock);
289         }
290         return rc;
291 }
292
293 static __u64 cl_time(void) {
294         cfs_fs_time_t time;
295
296         cfs_fs_time_current(&time);
297         return (((__u64)time.tv_sec) << 30) + time.tv_nsec;
298 }
299
300 /** Add a changelog entry \a rec to the changelog llog
301  * \param mdd
302  * \param rec
303  * \param handle - currently ignored since llogs start their own transaction;
304  *                 this will hopefully be fixed in llog rewrite
305  * \retval 0 ok
306  */
307 int mdd_changelog_llog_write(struct mdd_device         *mdd,
308                              struct llog_changelog_rec *rec,
309                              struct thandle            *handle)
310 {
311         struct obd_device *obd = mdd2obd_dev(mdd);
312         struct llog_ctxt *ctxt;
313         int rc;
314
315         if ((mdd->mdd_cl.mc_mask & (1 << rec->cr.cr_type)) == 0)
316                 return 0;
317
318         rec->cr_hdr.lrh_len = llog_data_len(sizeof(*rec) + rec->cr.cr_namelen);
319         /* llog_lvfs_write_rec sets the llog tail len */
320         rec->cr_hdr.lrh_type = CHANGELOG_REC;
321         rec->cr.cr_time = cl_time();
322         cfs_spin_lock(&mdd->mdd_cl.mc_lock);
323         /* NB: I suppose it's possible llog_add adds out of order wrt cr_index,
324            but as long as the MDD transactions are ordered correctly for e.g.
325            rename conflicts, I don't think this should matter. */
326         rec->cr.cr_index = ++mdd->mdd_cl.mc_index;
327         cfs_spin_unlock(&mdd->mdd_cl.mc_lock);
328         ctxt = llog_get_context(obd, LLOG_CHANGELOG_ORIG_CTXT);
329         if (ctxt == NULL)
330                 return -ENXIO;
331
332         /* nested journal transaction */
333         rc = llog_add(ctxt, &rec->cr_hdr, NULL, NULL, 0);
334         llog_ctxt_put(ctxt);
335
336         cfs_waitq_signal(&mdd->mdd_cl.mc_waitq);
337
338         return rc;
339 }
340
341 /** Remove entries with indicies up to and including \a endrec from the
342  *  changelog
343  * \param mdd
344  * \param endrec
345  * \retval 0 ok
346  */
347 int mdd_changelog_llog_cancel(struct mdd_device *mdd, long long endrec)
348 {
349         struct obd_device *obd = mdd2obd_dev(mdd);
350         struct llog_ctxt *ctxt;
351         long long unsigned cur;
352         int rc;
353
354         ctxt = llog_get_context(obd, LLOG_CHANGELOG_ORIG_CTXT);
355         if (ctxt == NULL)
356                 return -ENXIO;
357
358         cfs_spin_lock(&mdd->mdd_cl.mc_lock);
359         cur = (long long)mdd->mdd_cl.mc_index;
360         cfs_spin_unlock(&mdd->mdd_cl.mc_lock);
361         if (endrec > cur)
362                 endrec = cur;
363
364         /* purge to "0" is shorthand for everything */
365         if (endrec == 0)
366                 endrec = cur;
367
368         /* If purging all records, write a header entry so we don't have an
369            empty catalog and we're sure to have a valid starting index next
370            time.  In case of crash, we just restart with old log so we're
371            allright. */
372         if (endrec == cur) {
373                 rc = mdd_changelog_write_header(mdd, CLM_PURGE);
374                 if (rc)
375                       goto out;
376         }
377
378         /* Some records were purged, so reset repeat-access time (so we
379            record new mtime update records, so users can see a file has been
380            changed since the last purge) */
381         mdd->mdd_cl.mc_starttime = cfs_time_current_64();
382
383         rc = llog_cancel(ctxt, NULL, 1, (struct llog_cookie *)&endrec, 0);
384 out:
385         llog_ctxt_put(ctxt);
386         return rc;
387 }
388
389 /** Add a CL_MARK record to the changelog
390  * \param mdd
391  * \param markerflags - CLM_*
392  * \retval 0 ok
393  */
394 int mdd_changelog_write_header(struct mdd_device *mdd, int markerflags)
395 {
396         struct obd_device *obd = mdd2obd_dev(mdd);
397         struct llog_changelog_rec *rec;
398         int reclen;
399         int len = strlen(obd->obd_name);
400         int rc;
401         ENTRY;
402
403         reclen = llog_data_len(sizeof(*rec) + len);
404         OBD_ALLOC(rec, reclen);
405         if (rec == NULL)
406                 RETURN(-ENOMEM);
407
408         rec->cr.cr_flags = CLF_VERSION;
409         rec->cr.cr_type = CL_MARK;
410         rec->cr.cr_namelen = len;
411         memcpy(rec->cr.cr_name, obd->obd_name, rec->cr.cr_namelen);
412         /* Status and action flags */
413         rec->cr.cr_markerflags = mdd->mdd_cl.mc_flags | markerflags;
414
415         rc = mdd_changelog_llog_write(mdd, rec, NULL);
416
417         /* assume on or off event; reset repeat-access time */
418         mdd->mdd_cl.mc_starttime = cfs_time_current_64();
419
420         OBD_FREE(rec, reclen);
421         RETURN(rc);
422 }
423
424 /**
425  * Create ".lustre" directory.
426  */
427 static int create_dot_lustre_dir(const struct lu_env *env, struct mdd_device *m)
428 {
429         struct lu_fid *fid = &mdd_env_info(env)->mti_fid;
430         struct md_object *mdo;
431         int rc;
432
433         memcpy(fid, &LU_DOT_LUSTRE_FID, sizeof(struct lu_fid));
434         mdo = llo_store_create_index(env, &m->mdd_md_dev, m->mdd_child,
435                                      mdd_root_dir_name, dot_lustre_name,
436                                      fid, &dt_directory_features);
437         /* .lustre dir may be already present */
438         if (IS_ERR(mdo) && PTR_ERR(mdo) != -EEXIST) {
439                 rc = PTR_ERR(mdo);
440                 CERROR("creating obj [%s] fid = "DFID" rc = %d\n",
441                         dot_lustre_name, PFID(fid), rc);
442                 RETURN(rc);
443         }
444
445         if (!IS_ERR(mdo))
446                 lu_object_put(env, &mdo->mo_lu);
447
448         return 0;
449 }
450
451
452 static int dot_lustre_mdd_permission(const struct lu_env *env,
453                                      struct md_object *pobj,
454                                      struct md_object *cobj,
455                                      struct md_attr *attr, int mask)
456 {
457         if (mask & ~(MAY_READ | MAY_EXEC))
458                 return -EPERM;
459         else
460                 return 0;
461 }
462
463 static int dot_lustre_mdd_attr_get(const struct lu_env *env,
464                                    struct md_object *obj, struct md_attr *ma)
465 {
466         struct mdd_object *mdd_obj = md2mdd_obj(obj);
467
468         return mdd_attr_get_internal_locked(env, mdd_obj, ma);
469 }
470
471 static int dot_lustre_mdd_attr_set(const struct lu_env *env,
472                                    struct md_object *obj,
473                                    const struct md_attr *ma)
474 {
475         return -EPERM;
476 }
477
478 static int dot_lustre_mdd_xattr_get(const struct lu_env *env,
479                                     struct md_object *obj, struct lu_buf *buf,
480                                     const char *name)
481 {
482         return 0;
483 }
484
485 static int dot_lustre_mdd_xattr_list(const struct lu_env *env,
486                                      struct md_object *obj, struct lu_buf *buf)
487 {
488         return 0;
489 }
490
491 static int dot_lustre_mdd_xattr_set(const struct lu_env *env,
492                                     struct md_object *obj,
493                                     const struct lu_buf *buf, const char *name,
494                                     int fl)
495 {
496         return -EPERM;
497 }
498
499 static int dot_lustre_mdd_xattr_del(const struct lu_env *env,
500                                     struct md_object *obj,
501                                     const char *name)
502 {
503         return -EPERM;
504 }
505
506 static int dot_lustre_mdd_readlink(const struct lu_env *env,
507                                    struct md_object *obj, struct lu_buf *buf)
508 {
509         return 0;
510 }
511
512 static int dot_lustre_mdd_object_create(const struct lu_env *env,
513                                         struct md_object *obj,
514                                         const struct md_op_spec *spec,
515                                         struct md_attr *ma)
516 {
517         return -EPERM;
518 }
519
520 static int dot_lustre_mdd_ref_add(const struct lu_env *env,
521                                   struct md_object *obj,
522                                   const struct md_attr *ma)
523 {
524         return -EPERM;
525 }
526
527 static int dot_lustre_mdd_ref_del(const struct lu_env *env,
528                                   struct md_object *obj,
529                                   struct md_attr *ma)
530 {
531         return -EPERM;
532 }
533
534 static int dot_lustre_mdd_open(const struct lu_env *env, struct md_object *obj,
535                                int flags)
536 {
537         struct mdd_object *mdd_obj = md2mdd_obj(obj);
538
539         mdd_write_lock(env, mdd_obj, MOR_TGT_CHILD);
540         mdd_obj->mod_count++;
541         mdd_write_unlock(env, mdd_obj);
542
543         return 0;
544 }
545
546 static int dot_lustre_mdd_close(const struct lu_env *env, struct md_object *obj,
547                                 struct md_attr *ma)
548 {
549         struct mdd_object *mdd_obj = md2mdd_obj(obj);
550
551         mdd_write_lock(env, mdd_obj, MOR_TGT_CHILD);
552         mdd_obj->mod_count--;
553         mdd_write_unlock(env, mdd_obj);
554
555         return 0;
556 }
557
558 static int dot_lustre_mdd_object_sync(const struct lu_env *env,
559                                       struct md_object *obj)
560 {
561         return -ENOSYS;
562 }
563
564 static dt_obj_version_t dot_lustre_mdd_version_get(const struct lu_env *env,
565                                                    struct md_object *obj)
566 {
567         return 0;
568 }
569
570 static void dot_lustre_mdd_version_set(const struct lu_env *env,
571                                        struct md_object *obj,
572                                        dt_obj_version_t version)
573 {
574         return;
575 }
576
577 static int dot_lustre_mdd_path(const struct lu_env *env, struct md_object *obj,
578                            char *path, int pathlen, __u64 *recno, int *linkno)
579 {
580         return -ENOSYS;
581 }
582
583
584 static struct md_object_operations mdd_dot_lustre_obj_ops = {
585         .moo_permission    = dot_lustre_mdd_permission,
586         .moo_attr_get      = dot_lustre_mdd_attr_get,
587         .moo_attr_set      = dot_lustre_mdd_attr_set,
588         .moo_xattr_get     = dot_lustre_mdd_xattr_get,
589         .moo_xattr_list    = dot_lustre_mdd_xattr_list,
590         .moo_xattr_set     = dot_lustre_mdd_xattr_set,
591         .moo_xattr_del     = dot_lustre_mdd_xattr_del,
592         .moo_readpage      = mdd_readpage,
593         .moo_readlink      = dot_lustre_mdd_readlink,
594         .moo_object_create = dot_lustre_mdd_object_create,
595         .moo_ref_add       = dot_lustre_mdd_ref_add,
596         .moo_ref_del       = dot_lustre_mdd_ref_del,
597         .moo_open          = dot_lustre_mdd_open,
598         .moo_close         = dot_lustre_mdd_close,
599         .moo_capa_get      = mdd_capa_get,
600         .moo_object_sync   = dot_lustre_mdd_object_sync,
601         .moo_version_get   = dot_lustre_mdd_version_get,
602         .moo_version_set   = dot_lustre_mdd_version_set,
603         .moo_path          = dot_lustre_mdd_path,
604 };
605
606
607 static int dot_lustre_mdd_lookup(const struct lu_env *env, struct md_object *p,
608                                  const struct lu_name *lname, struct lu_fid *f,
609                                  struct md_op_spec *spec)
610 {
611         if (strcmp(lname->ln_name, mdd_obf_dir_name) == 0)
612                 *f = LU_OBF_FID;
613         else
614                 return -ENOENT;
615
616         return 0;
617 }
618
619 static mdl_mode_t dot_lustre_mdd_lock_mode(const struct lu_env *env,
620                                            struct md_object *obj,
621                                            mdl_mode_t mode)
622 {
623         return MDL_MINMODE;
624 }
625
626 static int dot_lustre_mdd_create(const struct lu_env *env,
627                                  struct md_object *pobj,
628                                  const struct lu_name *lname,
629                                  struct md_object *child,
630                                  struct md_op_spec *spec,
631                                  struct md_attr* ma)
632 {
633         return -EPERM;
634 }
635
636 static int dot_lustre_mdd_create_data(const struct lu_env *env,
637                                       struct md_object *p,
638                                       struct md_object *o,
639                                       const struct md_op_spec *spec,
640                                       struct md_attr *ma)
641 {
642         return -EPERM;
643 }
644
645 static int dot_lustre_mdd_rename(const struct lu_env *env,
646                                  struct md_object *src_pobj,
647                                  struct md_object *tgt_pobj,
648                                  const struct lu_fid *lf,
649                                  const struct lu_name *lsname,
650                                  struct md_object *tobj,
651                                  const struct lu_name *ltname,
652                                  struct md_attr *ma)
653 {
654         return -EPERM;
655 }
656
657 static int dot_lustre_mdd_link(const struct lu_env *env,
658                                struct md_object *tgt_obj,
659                                struct md_object *src_obj,
660                                const struct lu_name *lname,
661                                struct md_attr *ma)
662 {
663         return -EPERM;
664 }
665
666 static int dot_lustre_mdd_unlink(const struct lu_env *env,
667                                  struct md_object *pobj,
668                                  struct md_object *cobj,
669                                  const struct lu_name *lname,
670                                  struct md_attr *ma)
671 {
672         return -EPERM;
673 }
674
675 static int dot_lustre_mdd_name_insert(const struct lu_env *env,
676                                       struct md_object *obj,
677                                       const struct lu_name *lname,
678                                       const struct lu_fid *fid,
679                                       const struct md_attr *ma)
680 {
681         return -EPERM;
682 }
683
684 static int dot_lustre_mdd_name_remove(const struct lu_env *env,
685                                       struct md_object *obj,
686                                       const struct lu_name *lname,
687                                       const struct md_attr *ma)
688 {
689         return -EPERM;
690 }
691
692 static int dot_lustre_mdd_rename_tgt(const struct lu_env *env,
693                                      struct md_object *pobj,
694                                      struct md_object *tobj,
695                                      const struct lu_fid *fid,
696                                      const struct lu_name *lname,
697                                      struct md_attr *ma)
698 {
699         return -EPERM;
700 }
701
702
703 static struct md_dir_operations mdd_dot_lustre_dir_ops = {
704         .mdo_is_subdir   = mdd_is_subdir,
705         .mdo_lookup      = dot_lustre_mdd_lookup,
706         .mdo_lock_mode   = dot_lustre_mdd_lock_mode,
707         .mdo_create      = dot_lustre_mdd_create,
708         .mdo_create_data = dot_lustre_mdd_create_data,
709         .mdo_rename      = dot_lustre_mdd_rename,
710         .mdo_link        = dot_lustre_mdd_link,
711         .mdo_unlink      = dot_lustre_mdd_unlink,
712         .mdo_name_insert = dot_lustre_mdd_name_insert,
713         .mdo_name_remove = dot_lustre_mdd_name_remove,
714         .mdo_rename_tgt  = dot_lustre_mdd_rename_tgt,
715 };
716
717 static int obf_attr_get(const struct lu_env *env, struct md_object *obj,
718                         struct md_attr *ma)
719 {
720         int rc = 0;
721
722         if (ma->ma_need & MA_INODE) {
723                 struct mdd_device *mdd = mdo2mdd(obj);
724
725                 /* "fid" is a virtual object and hence does not have any "real"
726                  * attributes. So we reuse attributes of .lustre for "fid" dir */
727                 ma->ma_need |= MA_INODE;
728                 rc = dot_lustre_mdd_attr_get(env, &mdd->mdd_dot_lustre->mod_obj,
729                                              ma);
730                 if (rc)
731                         return rc;
732                 ma->ma_valid |= MA_INODE;
733         }
734
735         /* "fid" directory does not have any striping information. */
736         if (ma->ma_need & MA_LOV) {
737                 struct mdd_object *mdd_obj = md2mdd_obj(obj);
738
739                 if (ma->ma_valid & MA_LOV)
740                         return 0;
741
742                 if (!(S_ISREG(mdd_object_type(mdd_obj)) ||
743                       S_ISDIR(mdd_object_type(mdd_obj))))
744                         return 0;
745
746                 if (ma->ma_need & MA_LOV_DEF) {
747                         rc = mdd_get_default_md(mdd_obj, ma->ma_lmm,
748                                                 &ma->ma_lmm_size);
749                         if (rc > 0) {
750                                 ma->ma_valid |= MA_LOV;
751                                 rc = 0;
752                         }
753                 }
754         }
755
756         return rc;
757 }
758
759 static int obf_attr_set(const struct lu_env *env, struct md_object *obj,
760                         const struct md_attr *ma)
761 {
762         return -EPERM;
763 }
764
765 static int obf_xattr_get(const struct lu_env *env,
766                          struct md_object *obj, struct lu_buf *buf,
767                          const char *name)
768 {
769         return 0;
770 }
771
772 static int obf_mdd_open(const struct lu_env *env, struct md_object *obj,
773                         int flags)
774 {
775         struct mdd_object *mdd_obj = md2mdd_obj(obj);
776
777         mdd_write_lock(env, mdd_obj, MOR_TGT_CHILD);
778         mdd_obj->mod_count++;
779         mdd_write_unlock(env, mdd_obj);
780
781         return 0;
782 }
783
784 static int obf_mdd_close(const struct lu_env *env, struct md_object *obj,
785                          struct md_attr *ma)
786 {
787         struct mdd_object *mdd_obj = md2mdd_obj(obj);
788
789         mdd_write_lock(env, mdd_obj, MOR_TGT_CHILD);
790         mdd_obj->mod_count--;
791         mdd_write_unlock(env, mdd_obj);
792
793         return 0;
794 }
795
796 /** Nothing to list in "fid" directory */
797 static int obf_mdd_readpage(const struct lu_env *env, struct md_object *obj,
798                             const struct lu_rdpg *rdpg)
799 {
800         return -EPERM;
801 }
802
803 static int obf_path(const struct lu_env *env, struct md_object *obj,
804                     char *path, int pathlen, __u64 *recno, int *linkno)
805 {
806         return -ENOSYS;
807 }
808
809 static struct md_object_operations mdd_obf_obj_ops = {
810         .moo_attr_get   = obf_attr_get,
811         .moo_attr_set   = obf_attr_set,
812         .moo_xattr_get  = obf_xattr_get,
813         .moo_open       = obf_mdd_open,
814         .moo_close      = obf_mdd_close,
815         .moo_readpage   = obf_mdd_readpage,
816         .moo_path       = obf_path
817 };
818
819 /**
820  * Lookup method for "fid" object. Only filenames with correct SEQ:OID format
821  * are valid. We also check if object with passed fid exists or not.
822  */
823 static int obf_lookup(const struct lu_env *env, struct md_object *p,
824                       const struct lu_name *lname, struct lu_fid *f,
825                       struct md_op_spec *spec)
826 {
827         char *name = (char *)lname->ln_name;
828         struct mdd_device *mdd = mdo2mdd(p);
829         struct mdd_object *child;
830         int rc = 0;
831
832         while (*name == '[')
833                 name++;
834
835         sscanf(name, SFID, RFID(f));
836         if (!fid_is_sane(f)) {
837                 CWARN("bad FID format [%s], should be "DFID"\n", lname->ln_name,
838                       (__u64)1, 2, 0);
839                 GOTO(out, rc = -EINVAL);
840         }
841
842         /* Check if object with this fid exists */
843         child = mdd_object_find(env, mdd, f);
844         if (child == NULL)
845                 GOTO(out, rc = 0);
846         if (IS_ERR(child))
847                 GOTO(out, rc = PTR_ERR(child));
848
849         if (mdd_object_exists(child) == 0)
850                 rc = -ENOENT;
851
852         mdd_object_put(env, child);
853
854 out:
855         return rc;
856 }
857
858 static int obf_create(const struct lu_env *env, struct md_object *pobj,
859                       const struct lu_name *lname, struct md_object *child,
860                       struct md_op_spec *spec, struct md_attr* ma)
861 {
862         return -EPERM;
863 }
864
865 static int obf_rename(const struct lu_env *env,
866                       struct md_object *src_pobj, struct md_object *tgt_pobj,
867                       const struct lu_fid *lf, const struct lu_name *lsname,
868                       struct md_object *tobj, const struct lu_name *ltname,
869                       struct md_attr *ma)
870 {
871         return -EPERM;
872 }
873
874 static int obf_link(const struct lu_env *env, struct md_object *tgt_obj,
875                     struct md_object *src_obj, const struct lu_name *lname,
876                     struct md_attr *ma)
877 {
878         return -EPERM;
879 }
880
881 static int obf_unlink(const struct lu_env *env, struct md_object *pobj,
882                       struct md_object *cobj, const struct lu_name *lname,
883                       struct md_attr *ma)
884 {
885         return -EPERM;
886 }
887
888 static struct md_dir_operations mdd_obf_dir_ops = {
889         .mdo_lookup = obf_lookup,
890         .mdo_create = obf_create,
891         .mdo_rename = obf_rename,
892         .mdo_link   = obf_link,
893         .mdo_unlink = obf_unlink
894 };
895
896 /**
897  * Create special in-memory "fid" object for open-by-fid.
898  */
899 static int mdd_obf_setup(const struct lu_env *env, struct mdd_device *m)
900 {
901         struct mdd_object *mdd_obf;
902         struct lu_object *obf_lu_obj;
903         int rc = 0;
904
905         m->mdd_dot_lustre_objs.mdd_obf = mdd_object_find(env, m,
906                                                          &LU_OBF_FID);
907         if (m->mdd_dot_lustre_objs.mdd_obf == NULL ||
908             IS_ERR(m->mdd_dot_lustre_objs.mdd_obf))
909                 GOTO(out, rc = -ENOENT);
910
911         mdd_obf = m->mdd_dot_lustre_objs.mdd_obf;
912         mdd_obf->mod_obj.mo_dir_ops = &mdd_obf_dir_ops;
913         mdd_obf->mod_obj.mo_ops = &mdd_obf_obj_ops;
914         /* Don't allow objects to be created in "fid" dir */
915         mdd_obf->mod_flags |= IMMUTE_OBJ;
916
917         obf_lu_obj = mdd2lu_obj(mdd_obf);
918         obf_lu_obj->lo_header->loh_attr |= (LOHA_EXISTS | S_IFDIR);
919
920 out:
921         return rc;
922 }
923
924 /** Setup ".lustre" directory object */
925 static int mdd_dot_lustre_setup(const struct lu_env *env, struct mdd_device *m)
926 {
927         struct dt_object *dt_dot_lustre;
928         struct lu_fid *fid = &mdd_env_info(env)->mti_fid;
929         int rc;
930
931         rc = create_dot_lustre_dir(env, m);
932         if (rc)
933                 return rc;
934
935         dt_dot_lustre = dt_store_open(env, m->mdd_child, mdd_root_dir_name,
936                                       dot_lustre_name, fid);
937         if (IS_ERR(dt_dot_lustre)) {
938                 rc = PTR_ERR(dt_dot_lustre);
939                 GOTO(out, rc);
940         }
941
942         /* references are released in mdd_device_shutdown() */
943         m->mdd_dot_lustre = lu2mdd_obj(lu_object_locate(dt_dot_lustre->do_lu.lo_header,
944                                                         &mdd_device_type));
945
946         m->mdd_dot_lustre->mod_obj.mo_dir_ops = &mdd_dot_lustre_dir_ops;
947         m->mdd_dot_lustre->mod_obj.mo_ops = &mdd_dot_lustre_obj_ops;
948
949         rc = mdd_obf_setup(env, m);
950         if (rc)
951                 CERROR("Error initializing \"fid\" object - %d.\n", rc);
952
953 out:
954         RETURN(rc);
955 }
956
957 static int mdd_process_config(const struct lu_env *env,
958                               struct lu_device *d, struct lustre_cfg *cfg)
959 {
960         struct mdd_device *m    = lu2mdd_dev(d);
961         struct dt_device  *dt   = m->mdd_child;
962         struct lu_device  *next = &dt->dd_lu_dev;
963         int rc;
964         ENTRY;
965
966         switch (cfg->lcfg_command) {
967         case LCFG_PARAM: {
968                 struct lprocfs_static_vars lvars;
969
970                 lprocfs_mdd_init_vars(&lvars);
971                 rc = class_process_proc_param(PARAM_MDD, lvars.obd_vars, cfg,m);
972                 if (rc > 0 || rc == -ENOSYS)
973                         /* we don't understand; pass it on */
974                         rc = next->ld_ops->ldo_process_config(env, next, cfg);
975                 break;
976         }
977         case LCFG_SETUP:
978                 rc = next->ld_ops->ldo_process_config(env, next, cfg);
979                 if (rc)
980                         GOTO(out, rc);
981                 dt->dd_ops->dt_conf_get(env, dt, &m->mdd_dt_conf);
982
983                 rc = mdd_init_obd(env, m, cfg);
984                 if (rc) {
985                         CERROR("lov init error %d \n", rc);
986                         GOTO(out, rc);
987                 }
988                 rc = mdd_txn_init_credits(env, m);
989                 if (rc)
990                         break;
991
992                 mdd_changelog_init(env, m);
993                 break;
994         case LCFG_CLEANUP:
995                 mdd_device_shutdown(env, m, cfg);
996         default:
997                 rc = next->ld_ops->ldo_process_config(env, next, cfg);
998                 break;
999         }
1000 out:
1001         RETURN(rc);
1002 }
1003
1004 #if 0
1005 static int mdd_lov_set_nextid(const struct lu_env *env,
1006                               struct mdd_device *mdd)
1007 {
1008         struct mds_obd *mds = &mdd->mdd_obd_dev->u.mds;
1009         int rc;
1010         ENTRY;
1011
1012         LASSERT(mds->mds_lov_objids != NULL);
1013         rc = obd_set_info_async(mds->mds_osc_exp, strlen(KEY_NEXT_ID),
1014                                 KEY_NEXT_ID, mds->mds_lov_desc.ld_tgt_count,
1015                                 mds->mds_lov_objids, NULL);
1016
1017         RETURN(rc);
1018 }
1019
1020 static int mdd_cleanup_unlink_llog(const struct lu_env *env,
1021                                    struct mdd_device *mdd)
1022 {
1023         /* XXX: to be implemented! */
1024         return 0;
1025 }
1026 #endif
1027
1028 static int mdd_recovery_complete(const struct lu_env *env,
1029                                  struct lu_device *d)
1030 {
1031         struct mdd_device *mdd = lu2mdd_dev(d);
1032         struct lu_device *next = &mdd->mdd_child->dd_lu_dev;
1033         struct obd_device *obd = mdd2obd_dev(mdd);
1034         int rc;
1035         ENTRY;
1036
1037         LASSERT(mdd != NULL);
1038         LASSERT(obd != NULL);
1039 #if 0
1040         /* XXX: Do we need this in new stack? */
1041         rc = mdd_lov_set_nextid(env, mdd);
1042         if (rc) {
1043                 CERROR("mdd_lov_set_nextid() failed %d\n",
1044                        rc);
1045                 RETURN(rc);
1046         }
1047
1048         /* XXX: cleanup unlink. */
1049         rc = mdd_cleanup_unlink_llog(env, mdd);
1050         if (rc) {
1051                 CERROR("mdd_cleanup_unlink_llog() failed %d\n",
1052                        rc);
1053                 RETURN(rc);
1054         }
1055 #endif
1056         /* Call that with obd_recovering = 1 just to update objids */
1057         obd_notify(obd->u.mds.mds_osc_obd, NULL, (obd->obd_async_recov ?
1058                     OBD_NOTIFY_SYNC_NONBLOCK : OBD_NOTIFY_SYNC), NULL);
1059
1060         /* Drop obd_recovering to 0 and call o_postrecov to recover mds_lov */
1061         obd->obd_recovering = 0;
1062         obd->obd_type->typ_dt_ops->o_postrecov(obd);
1063
1064         /* XXX: orphans handling. */
1065         __mdd_orphan_cleanup(env, mdd);
1066         rc = next->ld_ops->ldo_recovery_complete(env, next);
1067
1068         RETURN(rc);
1069 }
1070
1071 static int mdd_prepare(const struct lu_env *env,
1072                        struct lu_device *pdev,
1073                        struct lu_device *cdev)
1074 {
1075         struct mdd_device *mdd = lu2mdd_dev(cdev);
1076         struct lu_device *next = &mdd->mdd_child->dd_lu_dev;
1077         struct dt_object *root;
1078         int rc;
1079
1080         ENTRY;
1081         rc = next->ld_ops->ldo_prepare(env, cdev, next);
1082         if (rc)
1083                 GOTO(out, rc);
1084
1085         dt_txn_callback_add(mdd->mdd_child, &mdd->mdd_txn_cb);
1086         root = dt_store_open(env, mdd->mdd_child, "", mdd_root_dir_name,
1087                              &mdd->mdd_root_fid);
1088         if (!IS_ERR(root)) {
1089                 LASSERT(root != NULL);
1090                 lu_object_put(env, &root->do_lu);
1091                 rc = orph_index_init(env, mdd);
1092         } else {
1093                 rc = PTR_ERR(root);
1094         }
1095         if (rc)
1096                 GOTO(out, rc);
1097
1098         rc = mdd_dot_lustre_setup(env, mdd);
1099         if (rc) {
1100                 CERROR("Error(%d) initializing .lustre objects\n", rc);
1101                 GOTO(out, rc);
1102         }
1103
1104 out:
1105         RETURN(rc);
1106 }
1107
1108 const struct lu_device_operations mdd_lu_ops = {
1109         .ldo_object_alloc      = mdd_object_alloc,
1110         .ldo_process_config    = mdd_process_config,
1111         .ldo_recovery_complete = mdd_recovery_complete,
1112         .ldo_prepare           = mdd_prepare,
1113 };
1114
1115 /*
1116  * No permission check is needed.
1117  */
1118 static int mdd_root_get(const struct lu_env *env,
1119                         struct md_device *m, struct lu_fid *f)
1120 {
1121         struct mdd_device *mdd = lu2mdd_dev(&m->md_lu_dev);
1122
1123         ENTRY;
1124         *f = mdd->mdd_root_fid;
1125         RETURN(0);
1126 }
1127
1128 /*
1129  * No permission check is needed.
1130  */
1131 static int mdd_statfs(const struct lu_env *env, struct md_device *m,
1132                       cfs_kstatfs_t *sfs)
1133 {
1134         struct mdd_device *mdd = lu2mdd_dev(&m->md_lu_dev);
1135         int rc;
1136
1137         ENTRY;
1138
1139         rc = mdd_child_ops(mdd)->dt_statfs(env, mdd->mdd_child, sfs);
1140
1141         RETURN(rc);
1142 }
1143
1144 /*
1145  * No permission check is needed.
1146  */
1147 static int mdd_maxsize_get(const struct lu_env *env, struct md_device *m,
1148                            int *md_size, int *cookie_size)
1149 {
1150         struct mdd_device *mdd = lu2mdd_dev(&m->md_lu_dev);
1151         ENTRY;
1152
1153         *md_size = mdd_lov_mdsize(env, mdd);
1154         *cookie_size = mdd_lov_cookiesize(env, mdd);
1155
1156         RETURN(0);
1157 }
1158
1159 static int mdd_init_capa_ctxt(const struct lu_env *env, struct md_device *m,
1160                               int mode, unsigned long timeout, __u32 alg,
1161                               struct lustre_capa_key *keys)
1162 {
1163         struct mdd_device *mdd = lu2mdd_dev(&m->md_lu_dev);
1164         struct mds_obd    *mds = &mdd2obd_dev(mdd)->u.mds;
1165         int rc;
1166         ENTRY;
1167
1168         /* need barrier for mds_capa_keys access. */
1169         cfs_down_write(&mds->mds_notify_lock);
1170         mds->mds_capa_keys = keys;
1171         cfs_up_write(&mds->mds_notify_lock);
1172
1173         rc = mdd_child_ops(mdd)->dt_init_capa_ctxt(env, mdd->mdd_child, mode,
1174                                                    timeout, alg, keys);
1175         RETURN(rc);
1176 }
1177
1178 static int mdd_update_capa_key(const struct lu_env *env,
1179                                struct md_device *m,
1180                                struct lustre_capa_key *key)
1181 {
1182         struct mds_capa_info info = { .uuid = NULL, .capa = key };
1183         struct mdd_device *mdd = lu2mdd_dev(&m->md_lu_dev);
1184         struct obd_export *lov_exp = mdd2obd_dev(mdd)->u.mds.mds_osc_exp;
1185         int rc;
1186         ENTRY;
1187
1188         rc = obd_set_info_async(lov_exp, sizeof(KEY_CAPA_KEY), KEY_CAPA_KEY,
1189                                 sizeof(info), &info, NULL);
1190         RETURN(rc);
1191 }
1192
1193 static int mdd_llog_ctxt_get(const struct lu_env *env, struct md_device *m,
1194                              int idx, void **h)
1195 {
1196         struct mdd_device *mdd = lu2mdd_dev(&m->md_lu_dev);
1197
1198         *h = llog_group_get_ctxt(&mdd2obd_dev(mdd)->obd_olg, idx);
1199         return (*h == NULL ? -ENOENT : 0);
1200 }
1201
1202 static struct lu_device *mdd_device_alloc(const struct lu_env *env,
1203                                           struct lu_device_type *t,
1204                                           struct lustre_cfg *lcfg)
1205 {
1206         struct lu_device  *l;
1207         struct mdd_device *m;
1208
1209         OBD_ALLOC_PTR(m);
1210         if (m == NULL) {
1211                 l = ERR_PTR(-ENOMEM);
1212         } else {
1213                 md_device_init(&m->mdd_md_dev, t);
1214                 l = mdd2lu_dev(m);
1215                 l->ld_ops = &mdd_lu_ops;
1216                 m->mdd_md_dev.md_ops = &mdd_ops;
1217                 md_upcall_init(&m->mdd_md_dev, NULL);
1218         }
1219
1220         return l;
1221 }
1222
1223 static struct lu_device *mdd_device_free(const struct lu_env *env,
1224                                          struct lu_device *lu)
1225 {
1226         struct mdd_device *m = lu2mdd_dev(lu);
1227         struct lu_device  *next = &m->mdd_child->dd_lu_dev;
1228         ENTRY;
1229
1230         LASSERT(cfs_atomic_read(&lu->ld_ref) == 0);
1231         md_device_fini(&m->mdd_md_dev);
1232         OBD_FREE_PTR(m);
1233         RETURN(next);
1234 }
1235
1236 static struct obd_ops mdd_obd_device_ops = {
1237         .o_owner = THIS_MODULE
1238 };
1239
1240 /* context key constructor/destructor: mdd_ucred_key_init, mdd_ucred_key_fini */
1241 LU_KEY_INIT_FINI(mdd_ucred, struct md_ucred);
1242
1243 static struct lu_context_key mdd_ucred_key = {
1244         .lct_tags = LCT_SESSION,
1245         .lct_init = mdd_ucred_key_init,
1246         .lct_fini = mdd_ucred_key_fini
1247 };
1248
1249 struct md_ucred *md_ucred(const struct lu_env *env)
1250 {
1251         LASSERT(env->le_ses != NULL);
1252         return lu_context_key_get(env->le_ses, &mdd_ucred_key);
1253 }
1254 EXPORT_SYMBOL(md_ucred);
1255
1256 /*
1257  * context key constructor/destructor:
1258  * mdd_capainfo_key_init, mdd_capainfo_key_fini
1259  */
1260 LU_KEY_INIT_FINI(mdd_capainfo, struct md_capainfo);
1261
1262 struct lu_context_key mdd_capainfo_key = {
1263         .lct_tags = LCT_SESSION,
1264         .lct_init = mdd_capainfo_key_init,
1265         .lct_fini = mdd_capainfo_key_fini
1266 };
1267
1268 struct md_capainfo *md_capainfo(const struct lu_env *env)
1269 {
1270         /* NB, in mdt_init0 */
1271         if (env->le_ses == NULL)
1272                 return NULL;
1273         return lu_context_key_get(env->le_ses, &mdd_capainfo_key);
1274 }
1275 EXPORT_SYMBOL(md_capainfo);
1276
1277 /*
1278  * context key constructor/destructor:
1279  * mdd_quota_key_init, mdd_quota_key_fini
1280  */
1281 LU_KEY_INIT_FINI(mdd_quota, struct md_quota);
1282
1283 struct lu_context_key mdd_quota_key = {
1284         .lct_tags = LCT_SESSION,
1285         .lct_init = mdd_quota_key_init,
1286         .lct_fini = mdd_quota_key_fini
1287 };
1288
1289 struct md_quota *md_quota(const struct lu_env *env)
1290 {
1291         LASSERT(env->le_ses != NULL);
1292         return lu_context_key_get(env->le_ses, &mdd_quota_key);
1293 }
1294 EXPORT_SYMBOL(md_quota);
1295
1296 static int mdd_changelog_user_register(struct mdd_device *mdd, int *id)
1297 {
1298         struct llog_ctxt *ctxt;
1299         struct llog_changelog_user_rec *rec;
1300         int rc;
1301         ENTRY;
1302
1303         ctxt = llog_get_context(mdd2obd_dev(mdd),LLOG_CHANGELOG_USER_ORIG_CTXT);
1304         if (ctxt == NULL)
1305                 RETURN(-ENXIO);
1306
1307         OBD_ALLOC_PTR(rec);
1308         if (rec == NULL) {
1309                 llog_ctxt_put(ctxt);
1310                 RETURN(-ENOMEM);
1311         }
1312
1313         /* Assume we want it on since somebody registered */
1314         rc = mdd_changelog_on(mdd, 1);
1315         if (rc)
1316                 GOTO(out, rc);
1317
1318         rec->cur_hdr.lrh_len = sizeof(*rec);
1319         rec->cur_hdr.lrh_type = CHANGELOG_USER_REC;
1320         cfs_spin_lock(&mdd->mdd_cl.mc_user_lock);
1321         if (mdd->mdd_cl.mc_lastuser == (unsigned int)(-1)) {
1322                 cfs_spin_unlock(&mdd->mdd_cl.mc_user_lock);
1323                 CERROR("Maximum number of changelog users exceeded!\n");
1324                 GOTO(out, rc = -EOVERFLOW);
1325         }
1326         *id = rec->cur_id = ++mdd->mdd_cl.mc_lastuser;
1327         rec->cur_endrec = mdd->mdd_cl.mc_index;
1328         cfs_spin_unlock(&mdd->mdd_cl.mc_user_lock);
1329
1330         rc = llog_add(ctxt, &rec->cur_hdr, NULL, NULL, 0);
1331
1332         CDEBUG(D_IOCTL, "Registered changelog user %d\n", *id);
1333 out:
1334         OBD_FREE_PTR(rec);
1335         llog_ctxt_put(ctxt);
1336         RETURN(rc);
1337 }
1338
1339 struct mdd_changelog_user_data {
1340         __u64 mcud_endrec; /**< purge record for this user */
1341         __u64 mcud_minrec; /**< lowest changelog recno still referenced */
1342         __u32 mcud_id;
1343         __u32 mcud_minid;  /**< user id with lowest rec reference */
1344         __u32 mcud_usercount;
1345         int   mcud_found:1;
1346 };
1347 #define MCUD_UNREGISTER -1LL
1348
1349 /** Two things:
1350  * 1. Find the smallest record everyone is willing to purge
1351  * 2. Update the last purgeable record for this user
1352  */
1353 static int mdd_changelog_user_purge_cb(struct llog_handle *llh,
1354                                        struct llog_rec_hdr *hdr, void *data)
1355 {
1356         struct llog_changelog_user_rec *rec;
1357         struct mdd_changelog_user_data *mcud =
1358                 (struct mdd_changelog_user_data *)data;
1359         int rc;
1360         ENTRY;
1361
1362         LASSERT(llh->lgh_hdr->llh_flags & LLOG_F_IS_PLAIN);
1363
1364         rec = (struct llog_changelog_user_rec *)hdr;
1365
1366         mcud->mcud_usercount++;
1367
1368         /* If we have a new endrec for this id, use it for the following
1369            min check instead of its old value */
1370         if (rec->cur_id == mcud->mcud_id)
1371                 rec->cur_endrec = max(rec->cur_endrec, mcud->mcud_endrec);
1372
1373         /* Track the minimum referenced record */
1374         if (mcud->mcud_minid == 0 || mcud->mcud_minrec > rec->cur_endrec) {
1375                 mcud->mcud_minid = rec->cur_id;
1376                 mcud->mcud_minrec = rec->cur_endrec;
1377         }
1378
1379         if (rec->cur_id != mcud->mcud_id)
1380                 RETURN(0);
1381
1382         /* Update this user's record */
1383         mcud->mcud_found = 1;
1384
1385         /* Special case: unregister this user */
1386         if (mcud->mcud_endrec == MCUD_UNREGISTER) {
1387                 struct llog_cookie cookie;
1388                 cookie.lgc_lgl = llh->lgh_id;
1389                 cookie.lgc_index = hdr->lrh_index;
1390                 rc = llog_cat_cancel_records(llh->u.phd.phd_cat_handle,
1391                                              1, &cookie);
1392                 if (rc == 0)
1393                         mcud->mcud_usercount--;
1394                 RETURN(rc);
1395         }
1396
1397         /* Update the endrec */
1398         CDEBUG(D_IOCTL, "Rewriting changelog user %d endrec to "LPU64"\n",
1399                mcud->mcud_id, rec->cur_endrec);
1400
1401         /* hdr+1 is loc of data */
1402         hdr->lrh_len -= sizeof(*hdr) + sizeof(struct llog_rec_tail);
1403         rc = llog_write_rec(llh, hdr, NULL, 0, (void *)(hdr + 1),
1404                             hdr->lrh_index);
1405
1406         RETURN(rc);
1407 }
1408
1409 static int mdd_changelog_user_purge(struct mdd_device *mdd, int id,
1410                                     long long endrec)
1411 {
1412         struct mdd_changelog_user_data data;
1413         struct llog_ctxt *ctxt;
1414         int rc;
1415         ENTRY;
1416
1417         CDEBUG(D_IOCTL, "Purge request: id=%d, endrec=%lld\n", id, endrec);
1418
1419         data.mcud_id = id;
1420         data.mcud_minid = 0;
1421         data.mcud_minrec = 0;
1422         data.mcud_usercount = 0;
1423         data.mcud_endrec = endrec;
1424         cfs_spin_lock(&mdd->mdd_cl.mc_lock);
1425         endrec = mdd->mdd_cl.mc_index;
1426         cfs_spin_unlock(&mdd->mdd_cl.mc_lock);
1427         if ((data.mcud_endrec == 0) ||
1428             ((data.mcud_endrec > endrec) &&
1429              (data.mcud_endrec != MCUD_UNREGISTER)))
1430                 data.mcud_endrec = endrec;
1431
1432         ctxt = llog_get_context(mdd2obd_dev(mdd),LLOG_CHANGELOG_USER_ORIG_CTXT);
1433         if (ctxt == NULL)
1434                 return -ENXIO;
1435         LASSERT(ctxt->loc_handle->lgh_hdr->llh_flags & LLOG_F_IS_CAT);
1436
1437         rc = llog_cat_process(ctxt->loc_handle, mdd_changelog_user_purge_cb,
1438                               (void *)&data, 0, 0);
1439         if ((rc >= 0) && (data.mcud_minrec > 0)) {
1440                 CDEBUG(D_IOCTL, "Purging changelog entries up to "LPD64
1441                        ", referenced by "CHANGELOG_USER_PREFIX"%d\n",
1442                        data.mcud_minrec, data.mcud_minid);
1443                 rc = mdd_changelog_llog_cancel(mdd, data.mcud_minrec);
1444         } else {
1445                 CWARN("Could not determine changelog records to purge; rc=%d\n",
1446                       rc);
1447         }
1448
1449         llog_ctxt_put(ctxt);
1450
1451         if (!data.mcud_found) {
1452                 CWARN("No entry for user %d.  Last changelog reference is "
1453                       LPD64" by changelog user %d\n", data.mcud_id,
1454                       data.mcud_minrec, data.mcud_minid);
1455                rc = -ENOENT;
1456         }
1457
1458         if (!rc && data.mcud_usercount == 0)
1459                 /* No more users; turn changelogs off */
1460                 rc = mdd_changelog_on(mdd, 0);
1461
1462         RETURN (rc);
1463 }
1464
1465 /** mdd_iocontrol
1466  * May be called remotely from mdt_iocontrol_handle or locally from
1467  * mdt_iocontrol. Data may be freeform - remote handling doesn't enforce
1468  * an obd_ioctl_data format (but local ioctl handler does).
1469  * \param cmd - ioc
1470  * \param len - data len
1471  * \param karg - ioctl data, in kernel space
1472  */
1473 static int mdd_iocontrol(const struct lu_env *env, struct md_device *m,
1474                          unsigned int cmd, int len, void *karg)
1475 {
1476         struct mdd_device *mdd;
1477         struct obd_ioctl_data *data = karg;
1478         int rc;
1479         ENTRY;
1480
1481         mdd = lu2mdd_dev(&m->md_lu_dev);
1482
1483         /* Doesn't use obd_ioctl_data */
1484         if (cmd == OBD_IOC_CHANGELOG_CLEAR) {
1485                 struct changelog_setinfo *cs = karg;
1486                 rc = mdd_changelog_user_purge(mdd, cs->cs_id, cs->cs_recno);
1487                 RETURN(rc);
1488         }
1489
1490         /* Below ioctls use obd_ioctl_data */
1491         if (len != sizeof(*data)) {
1492                 CERROR("Bad ioctl size %d\n", len);
1493                 RETURN(-EINVAL);
1494         }
1495         if (data->ioc_version != OBD_IOCTL_VERSION) {
1496                 CERROR("Bad magic %x != %x\n", data->ioc_version,
1497                        OBD_IOCTL_VERSION);
1498                 RETURN(-EINVAL);
1499         }
1500
1501         switch (cmd) {
1502         case OBD_IOC_CHANGELOG_REG:
1503                 rc = mdd_changelog_user_register(mdd, &data->ioc_u32_1);
1504                 break;
1505         case OBD_IOC_CHANGELOG_DEREG:
1506                 rc = mdd_changelog_user_purge(mdd, data->ioc_u32_1,
1507                                               MCUD_UNREGISTER);
1508                 break;
1509         default:
1510                 rc = -EOPNOTSUPP;
1511         }
1512
1513         RETURN (rc);
1514 }
1515
1516 /* type constructor/destructor: mdd_type_init, mdd_type_fini */
1517 LU_TYPE_INIT_FINI(mdd, &mdd_thread_key, &mdd_ucred_key, &mdd_capainfo_key,
1518                   &mdd_quota_key);
1519
1520 const struct md_device_operations mdd_ops = {
1521         .mdo_statfs         = mdd_statfs,
1522         .mdo_root_get       = mdd_root_get,
1523         .mdo_maxsize_get    = mdd_maxsize_get,
1524         .mdo_init_capa_ctxt = mdd_init_capa_ctxt,
1525         .mdo_update_capa_key= mdd_update_capa_key,
1526         .mdo_llog_ctxt_get  = mdd_llog_ctxt_get,
1527         .mdo_iocontrol      = mdd_iocontrol,
1528 #ifdef HAVE_QUOTA_SUPPORT
1529         .mdo_quota          = {
1530                 .mqo_notify      = mdd_quota_notify,
1531                 .mqo_setup       = mdd_quota_setup,
1532                 .mqo_cleanup     = mdd_quota_cleanup,
1533                 .mqo_recovery    = mdd_quota_recovery,
1534                 .mqo_check       = mdd_quota_check,
1535                 .mqo_on          = mdd_quota_on,
1536                 .mqo_off         = mdd_quota_off,
1537                 .mqo_setinfo     = mdd_quota_setinfo,
1538                 .mqo_getinfo     = mdd_quota_getinfo,
1539                 .mqo_setquota    = mdd_quota_setquota,
1540                 .mqo_getquota    = mdd_quota_getquota,
1541                 .mqo_getoinfo    = mdd_quota_getoinfo,
1542                 .mqo_getoquota   = mdd_quota_getoquota,
1543                 .mqo_invalidate  = mdd_quota_invalidate,
1544                 .mqo_finvalidate = mdd_quota_finvalidate
1545         }
1546 #endif
1547 };
1548
1549 static struct lu_device_type_operations mdd_device_type_ops = {
1550         .ldto_init = mdd_type_init,
1551         .ldto_fini = mdd_type_fini,
1552
1553         .ldto_start = mdd_type_start,
1554         .ldto_stop  = mdd_type_stop,
1555
1556         .ldto_device_alloc = mdd_device_alloc,
1557         .ldto_device_free  = mdd_device_free,
1558
1559         .ldto_device_init    = mdd_device_init,
1560         .ldto_device_fini    = mdd_device_fini
1561 };
1562
1563 static struct lu_device_type mdd_device_type = {
1564         .ldt_tags     = LU_DEVICE_MD,
1565         .ldt_name     = LUSTRE_MDD_NAME,
1566         .ldt_ops      = &mdd_device_type_ops,
1567         .ldt_ctx_tags = LCT_MD_THREAD
1568 };
1569
1570 /* context key constructor: mdd_key_init */
1571 LU_KEY_INIT(mdd, struct mdd_thread_info);
1572
1573 static void mdd_key_fini(const struct lu_context *ctx,
1574                          struct lu_context_key *key, void *data)
1575 {
1576         struct mdd_thread_info *info = data;
1577         if (info->mti_max_lmm != NULL)
1578                 OBD_FREE(info->mti_max_lmm, info->mti_max_lmm_size);
1579         if (info->mti_max_cookie != NULL)
1580                 OBD_FREE(info->mti_max_cookie, info->mti_max_cookie_size);
1581         mdd_buf_put(&info->mti_big_buf);
1582
1583         OBD_FREE_PTR(info);
1584 }
1585
1586 /* context key: mdd_thread_key */
1587 LU_CONTEXT_KEY_DEFINE(mdd, LCT_MD_THREAD);
1588
1589 static struct lu_local_obj_desc llod_capa_key = {
1590         .llod_name      = CAPA_KEYS,
1591         .llod_oid       = MDD_CAPA_KEYS_OID,
1592         .llod_is_index  = 0,
1593 };
1594
1595 static struct lu_local_obj_desc llod_mdd_orphan = {
1596         .llod_name      = orph_index_name,
1597         .llod_oid       = MDD_ORPHAN_OID,
1598         .llod_is_index  = 1,
1599         .llod_feat      = &dt_directory_features,
1600 };
1601
1602 static struct lu_local_obj_desc llod_mdd_root = {
1603         .llod_name      = mdd_root_dir_name,
1604         .llod_oid       = MDD_ROOT_INDEX_OID,
1605         .llod_is_index  = 1,
1606         .llod_feat      = &dt_directory_features,
1607 };
1608
1609 static int __init mdd_mod_init(void)
1610 {
1611         struct lprocfs_static_vars lvars;
1612         lprocfs_mdd_init_vars(&lvars);
1613
1614         llo_local_obj_register(&llod_capa_key);
1615         llo_local_obj_register(&llod_mdd_orphan);
1616         llo_local_obj_register(&llod_mdd_root);
1617
1618         return class_register_type(&mdd_obd_device_ops, NULL, lvars.module_vars,
1619                                    LUSTRE_MDD_NAME, &mdd_device_type);
1620 }
1621
1622 static void __exit mdd_mod_exit(void)
1623 {
1624         llo_local_obj_unregister(&llod_capa_key);
1625         llo_local_obj_unregister(&llod_mdd_orphan);
1626         llo_local_obj_unregister(&llod_mdd_root);
1627
1628         class_unregister_type(LUSTRE_MDD_NAME);
1629 }
1630
1631 MODULE_AUTHOR("Sun Microsystems, Inc. <http://www.lustre.org/>");
1632 MODULE_DESCRIPTION("Lustre Meta-data Device Prototype ("LUSTRE_MDD_NAME")");
1633 MODULE_LICENSE("GPL");
1634
1635 cfs_module(mdd, "0.1.0", mdd_mod_init, mdd_mod_exit);