Whamcloud - gitweb
b=17760 Separate locking for obd bitfield and recovery
[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 (c) 2007, 2010, Oracle and/or its affiliates. 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                         if (rc > 0) {
749                                 ma->ma_lmm_size = rc;
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_lov_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_lov_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         cfs_spin_lock(&obd->obd_dev_lock);
1062         obd->obd_recovering = 0;
1063         cfs_spin_unlock(&obd->obd_dev_lock);
1064         obd->obd_type->typ_dt_ops->o_postrecov(obd);
1065
1066         /* XXX: orphans handling. */
1067         __mdd_orphan_cleanup(env, mdd);
1068         rc = next->ld_ops->ldo_recovery_complete(env, next);
1069
1070         RETURN(rc);
1071 }
1072
1073 static int mdd_prepare(const struct lu_env *env,
1074                        struct lu_device *pdev,
1075                        struct lu_device *cdev)
1076 {
1077         struct mdd_device *mdd = lu2mdd_dev(cdev);
1078         struct lu_device *next = &mdd->mdd_child->dd_lu_dev;
1079         struct dt_object *root;
1080         int rc;
1081
1082         ENTRY;
1083         rc = next->ld_ops->ldo_prepare(env, cdev, next);
1084         if (rc)
1085                 GOTO(out, rc);
1086
1087         dt_txn_callback_add(mdd->mdd_child, &mdd->mdd_txn_cb);
1088         root = dt_store_open(env, mdd->mdd_child, "", mdd_root_dir_name,
1089                              &mdd->mdd_root_fid);
1090         if (!IS_ERR(root)) {
1091                 LASSERT(root != NULL);
1092                 lu_object_put(env, &root->do_lu);
1093                 rc = orph_index_init(env, mdd);
1094         } else {
1095                 rc = PTR_ERR(root);
1096         }
1097         if (rc)
1098                 GOTO(out, rc);
1099
1100         rc = mdd_dot_lustre_setup(env, mdd);
1101         if (rc) {
1102                 CERROR("Error(%d) initializing .lustre objects\n", rc);
1103                 GOTO(out, rc);
1104         }
1105
1106 out:
1107         RETURN(rc);
1108 }
1109
1110 const struct lu_device_operations mdd_lu_ops = {
1111         .ldo_object_alloc      = mdd_object_alloc,
1112         .ldo_process_config    = mdd_process_config,
1113         .ldo_recovery_complete = mdd_recovery_complete,
1114         .ldo_prepare           = mdd_prepare,
1115 };
1116
1117 /*
1118  * No permission check is needed.
1119  */
1120 static int mdd_root_get(const struct lu_env *env,
1121                         struct md_device *m, struct lu_fid *f)
1122 {
1123         struct mdd_device *mdd = lu2mdd_dev(&m->md_lu_dev);
1124
1125         ENTRY;
1126         *f = mdd->mdd_root_fid;
1127         RETURN(0);
1128 }
1129
1130 /*
1131  * No permission check is needed.
1132  */
1133 static int mdd_statfs(const struct lu_env *env, struct md_device *m,
1134                       cfs_kstatfs_t *sfs)
1135 {
1136         struct mdd_device *mdd = lu2mdd_dev(&m->md_lu_dev);
1137         int rc;
1138
1139         ENTRY;
1140
1141         rc = mdd_child_ops(mdd)->dt_statfs(env, mdd->mdd_child, sfs);
1142
1143         RETURN(rc);
1144 }
1145
1146 /*
1147  * No permission check is needed.
1148  */
1149 static int mdd_maxsize_get(const struct lu_env *env, struct md_device *m,
1150                            int *md_size, int *cookie_size)
1151 {
1152         struct mdd_device *mdd = lu2mdd_dev(&m->md_lu_dev);
1153         ENTRY;
1154
1155         *md_size = mdd_lov_mdsize(env, mdd);
1156         *cookie_size = mdd_lov_cookiesize(env, mdd);
1157
1158         RETURN(0);
1159 }
1160
1161 static int mdd_init_capa_ctxt(const struct lu_env *env, struct md_device *m,
1162                               int mode, unsigned long timeout, __u32 alg,
1163                               struct lustre_capa_key *keys)
1164 {
1165         struct mdd_device *mdd = lu2mdd_dev(&m->md_lu_dev);
1166         struct mds_obd    *mds = &mdd2obd_dev(mdd)->u.mds;
1167         int rc;
1168         ENTRY;
1169
1170         /* need barrier for mds_capa_keys access. */
1171         cfs_down_write(&mds->mds_notify_lock);
1172         mds->mds_capa_keys = keys;
1173         cfs_up_write(&mds->mds_notify_lock);
1174
1175         rc = mdd_child_ops(mdd)->dt_init_capa_ctxt(env, mdd->mdd_child, mode,
1176                                                    timeout, alg, keys);
1177         RETURN(rc);
1178 }
1179
1180 static int mdd_update_capa_key(const struct lu_env *env,
1181                                struct md_device *m,
1182                                struct lustre_capa_key *key)
1183 {
1184         struct mds_capa_info info = { .uuid = NULL, .capa = key };
1185         struct mdd_device *mdd = lu2mdd_dev(&m->md_lu_dev);
1186         struct obd_export *lov_exp = mdd2obd_dev(mdd)->u.mds.mds_lov_exp;
1187         int rc;
1188         ENTRY;
1189
1190         rc = obd_set_info_async(lov_exp, sizeof(KEY_CAPA_KEY), KEY_CAPA_KEY,
1191                                 sizeof(info), &info, NULL);
1192         RETURN(rc);
1193 }
1194
1195 static int mdd_llog_ctxt_get(const struct lu_env *env, struct md_device *m,
1196                              int idx, void **h)
1197 {
1198         struct mdd_device *mdd = lu2mdd_dev(&m->md_lu_dev);
1199
1200         *h = llog_group_get_ctxt(&mdd2obd_dev(mdd)->obd_olg, idx);
1201         return (*h == NULL ? -ENOENT : 0);
1202 }
1203
1204 static struct lu_device *mdd_device_alloc(const struct lu_env *env,
1205                                           struct lu_device_type *t,
1206                                           struct lustre_cfg *lcfg)
1207 {
1208         struct lu_device  *l;
1209         struct mdd_device *m;
1210
1211         OBD_ALLOC_PTR(m);
1212         if (m == NULL) {
1213                 l = ERR_PTR(-ENOMEM);
1214         } else {
1215                 md_device_init(&m->mdd_md_dev, t);
1216                 l = mdd2lu_dev(m);
1217                 l->ld_ops = &mdd_lu_ops;
1218                 m->mdd_md_dev.md_ops = &mdd_ops;
1219                 md_upcall_init(&m->mdd_md_dev, NULL);
1220         }
1221
1222         return l;
1223 }
1224
1225 static struct lu_device *mdd_device_free(const struct lu_env *env,
1226                                          struct lu_device *lu)
1227 {
1228         struct mdd_device *m = lu2mdd_dev(lu);
1229         struct lu_device  *next = &m->mdd_child->dd_lu_dev;
1230         ENTRY;
1231
1232         LASSERT(cfs_atomic_read(&lu->ld_ref) == 0);
1233         md_device_fini(&m->mdd_md_dev);
1234         OBD_FREE_PTR(m);
1235         RETURN(next);
1236 }
1237
1238 static struct obd_ops mdd_obd_device_ops = {
1239         .o_owner = THIS_MODULE
1240 };
1241
1242 /* context key constructor/destructor: mdd_ucred_key_init, mdd_ucred_key_fini */
1243 LU_KEY_INIT_FINI(mdd_ucred, struct md_ucred);
1244
1245 static struct lu_context_key mdd_ucred_key = {
1246         .lct_tags = LCT_SESSION,
1247         .lct_init = mdd_ucred_key_init,
1248         .lct_fini = mdd_ucred_key_fini
1249 };
1250
1251 struct md_ucred *md_ucred(const struct lu_env *env)
1252 {
1253         LASSERT(env->le_ses != NULL);
1254         return lu_context_key_get(env->le_ses, &mdd_ucred_key);
1255 }
1256 EXPORT_SYMBOL(md_ucred);
1257
1258 /*
1259  * context key constructor/destructor:
1260  * mdd_capainfo_key_init, mdd_capainfo_key_fini
1261  */
1262 LU_KEY_INIT_FINI(mdd_capainfo, struct md_capainfo);
1263
1264 struct lu_context_key mdd_capainfo_key = {
1265         .lct_tags = LCT_SESSION,
1266         .lct_init = mdd_capainfo_key_init,
1267         .lct_fini = mdd_capainfo_key_fini
1268 };
1269
1270 struct md_capainfo *md_capainfo(const struct lu_env *env)
1271 {
1272         /* NB, in mdt_init0 */
1273         if (env->le_ses == NULL)
1274                 return NULL;
1275         return lu_context_key_get(env->le_ses, &mdd_capainfo_key);
1276 }
1277 EXPORT_SYMBOL(md_capainfo);
1278
1279 /*
1280  * context key constructor/destructor:
1281  * mdd_quota_key_init, mdd_quota_key_fini
1282  */
1283 LU_KEY_INIT_FINI(mdd_quota, struct md_quota);
1284
1285 struct lu_context_key mdd_quota_key = {
1286         .lct_tags = LCT_SESSION,
1287         .lct_init = mdd_quota_key_init,
1288         .lct_fini = mdd_quota_key_fini
1289 };
1290
1291 struct md_quota *md_quota(const struct lu_env *env)
1292 {
1293         LASSERT(env->le_ses != NULL);
1294         return lu_context_key_get(env->le_ses, &mdd_quota_key);
1295 }
1296 EXPORT_SYMBOL(md_quota);
1297
1298 static int mdd_changelog_user_register(struct mdd_device *mdd, int *id)
1299 {
1300         struct llog_ctxt *ctxt;
1301         struct llog_changelog_user_rec *rec;
1302         int rc;
1303         ENTRY;
1304
1305         ctxt = llog_get_context(mdd2obd_dev(mdd),LLOG_CHANGELOG_USER_ORIG_CTXT);
1306         if (ctxt == NULL)
1307                 RETURN(-ENXIO);
1308
1309         OBD_ALLOC_PTR(rec);
1310         if (rec == NULL) {
1311                 llog_ctxt_put(ctxt);
1312                 RETURN(-ENOMEM);
1313         }
1314
1315         /* Assume we want it on since somebody registered */
1316         rc = mdd_changelog_on(mdd, 1);
1317         if (rc)
1318                 GOTO(out, rc);
1319
1320         rec->cur_hdr.lrh_len = sizeof(*rec);
1321         rec->cur_hdr.lrh_type = CHANGELOG_USER_REC;
1322         cfs_spin_lock(&mdd->mdd_cl.mc_user_lock);
1323         if (mdd->mdd_cl.mc_lastuser == (unsigned int)(-1)) {
1324                 cfs_spin_unlock(&mdd->mdd_cl.mc_user_lock);
1325                 CERROR("Maximum number of changelog users exceeded!\n");
1326                 GOTO(out, rc = -EOVERFLOW);
1327         }
1328         *id = rec->cur_id = ++mdd->mdd_cl.mc_lastuser;
1329         rec->cur_endrec = mdd->mdd_cl.mc_index;
1330         cfs_spin_unlock(&mdd->mdd_cl.mc_user_lock);
1331
1332         rc = llog_add(ctxt, &rec->cur_hdr, NULL, NULL, 0);
1333
1334         CDEBUG(D_IOCTL, "Registered changelog user %d\n", *id);
1335 out:
1336         OBD_FREE_PTR(rec);
1337         llog_ctxt_put(ctxt);
1338         RETURN(rc);
1339 }
1340
1341 struct mdd_changelog_user_data {
1342         __u64 mcud_endrec; /**< purge record for this user */
1343         __u64 mcud_minrec; /**< lowest changelog recno still referenced */
1344         __u32 mcud_id;
1345         __u32 mcud_minid;  /**< user id with lowest rec reference */
1346         __u32 mcud_usercount;
1347         int   mcud_found:1;
1348 };
1349 #define MCUD_UNREGISTER -1LL
1350
1351 /** Two things:
1352  * 1. Find the smallest record everyone is willing to purge
1353  * 2. Update the last purgeable record for this user
1354  */
1355 static int mdd_changelog_user_purge_cb(struct llog_handle *llh,
1356                                        struct llog_rec_hdr *hdr, void *data)
1357 {
1358         struct llog_changelog_user_rec *rec;
1359         struct mdd_changelog_user_data *mcud =
1360                 (struct mdd_changelog_user_data *)data;
1361         int rc;
1362         ENTRY;
1363
1364         LASSERT(llh->lgh_hdr->llh_flags & LLOG_F_IS_PLAIN);
1365
1366         rec = (struct llog_changelog_user_rec *)hdr;
1367
1368         mcud->mcud_usercount++;
1369
1370         /* If we have a new endrec for this id, use it for the following
1371            min check instead of its old value */
1372         if (rec->cur_id == mcud->mcud_id)
1373                 rec->cur_endrec = max(rec->cur_endrec, mcud->mcud_endrec);
1374
1375         /* Track the minimum referenced record */
1376         if (mcud->mcud_minid == 0 || mcud->mcud_minrec > rec->cur_endrec) {
1377                 mcud->mcud_minid = rec->cur_id;
1378                 mcud->mcud_minrec = rec->cur_endrec;
1379         }
1380
1381         if (rec->cur_id != mcud->mcud_id)
1382                 RETURN(0);
1383
1384         /* Update this user's record */
1385         mcud->mcud_found = 1;
1386
1387         /* Special case: unregister this user */
1388         if (mcud->mcud_endrec == MCUD_UNREGISTER) {
1389                 struct llog_cookie cookie;
1390                 cookie.lgc_lgl = llh->lgh_id;
1391                 cookie.lgc_index = hdr->lrh_index;
1392                 rc = llog_cat_cancel_records(llh->u.phd.phd_cat_handle,
1393                                              1, &cookie);
1394                 if (rc == 0)
1395                         mcud->mcud_usercount--;
1396                 RETURN(rc);
1397         }
1398
1399         /* Update the endrec */
1400         CDEBUG(D_IOCTL, "Rewriting changelog user %d endrec to "LPU64"\n",
1401                mcud->mcud_id, rec->cur_endrec);
1402
1403         /* hdr+1 is loc of data */
1404         hdr->lrh_len -= sizeof(*hdr) + sizeof(struct llog_rec_tail);
1405         rc = llog_write_rec(llh, hdr, NULL, 0, (void *)(hdr + 1),
1406                             hdr->lrh_index);
1407
1408         RETURN(rc);
1409 }
1410
1411 static int mdd_changelog_user_purge(struct mdd_device *mdd, int id,
1412                                     long long endrec)
1413 {
1414         struct mdd_changelog_user_data data;
1415         struct llog_ctxt *ctxt;
1416         int rc;
1417         ENTRY;
1418
1419         CDEBUG(D_IOCTL, "Purge request: id=%d, endrec=%lld\n", id, endrec);
1420
1421         data.mcud_id = id;
1422         data.mcud_minid = 0;
1423         data.mcud_minrec = 0;
1424         data.mcud_usercount = 0;
1425         data.mcud_endrec = endrec;
1426         cfs_spin_lock(&mdd->mdd_cl.mc_lock);
1427         endrec = mdd->mdd_cl.mc_index;
1428         cfs_spin_unlock(&mdd->mdd_cl.mc_lock);
1429         if ((data.mcud_endrec == 0) ||
1430             ((data.mcud_endrec > endrec) &&
1431              (data.mcud_endrec != MCUD_UNREGISTER)))
1432                 data.mcud_endrec = endrec;
1433
1434         ctxt = llog_get_context(mdd2obd_dev(mdd),LLOG_CHANGELOG_USER_ORIG_CTXT);
1435         if (ctxt == NULL)
1436                 return -ENXIO;
1437         LASSERT(ctxt->loc_handle->lgh_hdr->llh_flags & LLOG_F_IS_CAT);
1438
1439         rc = llog_cat_process(ctxt->loc_handle, mdd_changelog_user_purge_cb,
1440                               (void *)&data, 0, 0);
1441         if ((rc >= 0) && (data.mcud_minrec > 0)) {
1442                 CDEBUG(D_IOCTL, "Purging changelog entries up to "LPD64
1443                        ", referenced by "CHANGELOG_USER_PREFIX"%d\n",
1444                        data.mcud_minrec, data.mcud_minid);
1445                 rc = mdd_changelog_llog_cancel(mdd, data.mcud_minrec);
1446         } else {
1447                 CWARN("Could not determine changelog records to purge; rc=%d\n",
1448                       rc);
1449         }
1450
1451         llog_ctxt_put(ctxt);
1452
1453         if (!data.mcud_found) {
1454                 CWARN("No entry for user %d.  Last changelog reference is "
1455                       LPD64" by changelog user %d\n", data.mcud_id,
1456                       data.mcud_minrec, data.mcud_minid);
1457                rc = -ENOENT;
1458         }
1459
1460         if (!rc && data.mcud_usercount == 0)
1461                 /* No more users; turn changelogs off */
1462                 rc = mdd_changelog_on(mdd, 0);
1463
1464         RETURN (rc);
1465 }
1466
1467 /** mdd_iocontrol
1468  * May be called remotely from mdt_iocontrol_handle or locally from
1469  * mdt_iocontrol. Data may be freeform - remote handling doesn't enforce
1470  * an obd_ioctl_data format (but local ioctl handler does).
1471  * \param cmd - ioc
1472  * \param len - data len
1473  * \param karg - ioctl data, in kernel space
1474  */
1475 static int mdd_iocontrol(const struct lu_env *env, struct md_device *m,
1476                          unsigned int cmd, int len, void *karg)
1477 {
1478         struct mdd_device *mdd;
1479         struct obd_ioctl_data *data = karg;
1480         int rc;
1481         ENTRY;
1482
1483         mdd = lu2mdd_dev(&m->md_lu_dev);
1484
1485         /* Doesn't use obd_ioctl_data */
1486         if (cmd == OBD_IOC_CHANGELOG_CLEAR) {
1487                 struct changelog_setinfo *cs = karg;
1488                 rc = mdd_changelog_user_purge(mdd, cs->cs_id, cs->cs_recno);
1489                 RETURN(rc);
1490         }
1491
1492         /* Below ioctls use obd_ioctl_data */
1493         if (len != sizeof(*data)) {
1494                 CERROR("Bad ioctl size %d\n", len);
1495                 RETURN(-EINVAL);
1496         }
1497         if (data->ioc_version != OBD_IOCTL_VERSION) {
1498                 CERROR("Bad magic %x != %x\n", data->ioc_version,
1499                        OBD_IOCTL_VERSION);
1500                 RETURN(-EINVAL);
1501         }
1502
1503         switch (cmd) {
1504         case OBD_IOC_CHANGELOG_REG:
1505                 rc = mdd_changelog_user_register(mdd, &data->ioc_u32_1);
1506                 break;
1507         case OBD_IOC_CHANGELOG_DEREG:
1508                 rc = mdd_changelog_user_purge(mdd, data->ioc_u32_1,
1509                                               MCUD_UNREGISTER);
1510                 break;
1511         default:
1512                 rc = -EOPNOTSUPP;
1513         }
1514
1515         RETURN (rc);
1516 }
1517
1518 /* type constructor/destructor: mdd_type_init, mdd_type_fini */
1519 LU_TYPE_INIT_FINI(mdd, &mdd_thread_key, &mdd_ucred_key, &mdd_capainfo_key,
1520                   &mdd_quota_key);
1521
1522 const struct md_device_operations mdd_ops = {
1523         .mdo_statfs         = mdd_statfs,
1524         .mdo_root_get       = mdd_root_get,
1525         .mdo_maxsize_get    = mdd_maxsize_get,
1526         .mdo_init_capa_ctxt = mdd_init_capa_ctxt,
1527         .mdo_update_capa_key= mdd_update_capa_key,
1528         .mdo_llog_ctxt_get  = mdd_llog_ctxt_get,
1529         .mdo_iocontrol      = mdd_iocontrol,
1530 #ifdef HAVE_QUOTA_SUPPORT
1531         .mdo_quota          = {
1532                 .mqo_notify      = mdd_quota_notify,
1533                 .mqo_setup       = mdd_quota_setup,
1534                 .mqo_cleanup     = mdd_quota_cleanup,
1535                 .mqo_recovery    = mdd_quota_recovery,
1536                 .mqo_check       = mdd_quota_check,
1537                 .mqo_on          = mdd_quota_on,
1538                 .mqo_off         = mdd_quota_off,
1539                 .mqo_setinfo     = mdd_quota_setinfo,
1540                 .mqo_getinfo     = mdd_quota_getinfo,
1541                 .mqo_setquota    = mdd_quota_setquota,
1542                 .mqo_getquota    = mdd_quota_getquota,
1543                 .mqo_getoinfo    = mdd_quota_getoinfo,
1544                 .mqo_getoquota   = mdd_quota_getoquota,
1545                 .mqo_invalidate  = mdd_quota_invalidate,
1546                 .mqo_finvalidate = mdd_quota_finvalidate
1547         }
1548 #endif
1549 };
1550
1551 static struct lu_device_type_operations mdd_device_type_ops = {
1552         .ldto_init = mdd_type_init,
1553         .ldto_fini = mdd_type_fini,
1554
1555         .ldto_start = mdd_type_start,
1556         .ldto_stop  = mdd_type_stop,
1557
1558         .ldto_device_alloc = mdd_device_alloc,
1559         .ldto_device_free  = mdd_device_free,
1560
1561         .ldto_device_init    = mdd_device_init,
1562         .ldto_device_fini    = mdd_device_fini
1563 };
1564
1565 static struct lu_device_type mdd_device_type = {
1566         .ldt_tags     = LU_DEVICE_MD,
1567         .ldt_name     = LUSTRE_MDD_NAME,
1568         .ldt_ops      = &mdd_device_type_ops,
1569         .ldt_ctx_tags = LCT_MD_THREAD
1570 };
1571
1572 /* context key constructor: mdd_key_init */
1573 LU_KEY_INIT(mdd, struct mdd_thread_info);
1574
1575 static void mdd_key_fini(const struct lu_context *ctx,
1576                          struct lu_context_key *key, void *data)
1577 {
1578         struct mdd_thread_info *info = data;
1579         if (info->mti_max_lmm != NULL)
1580                 OBD_FREE(info->mti_max_lmm, info->mti_max_lmm_size);
1581         if (info->mti_max_cookie != NULL)
1582                 OBD_FREE(info->mti_max_cookie, info->mti_max_cookie_size);
1583         mdd_buf_put(&info->mti_big_buf);
1584
1585         OBD_FREE_PTR(info);
1586 }
1587
1588 /* context key: mdd_thread_key */
1589 LU_CONTEXT_KEY_DEFINE(mdd, LCT_MD_THREAD);
1590
1591 static struct lu_local_obj_desc llod_capa_key = {
1592         .llod_name      = CAPA_KEYS,
1593         .llod_oid       = MDD_CAPA_KEYS_OID,
1594         .llod_is_index  = 0,
1595 };
1596
1597 static struct lu_local_obj_desc llod_mdd_orphan = {
1598         .llod_name      = orph_index_name,
1599         .llod_oid       = MDD_ORPHAN_OID,
1600         .llod_is_index  = 1,
1601         .llod_feat      = &dt_directory_features,
1602 };
1603
1604 static struct lu_local_obj_desc llod_mdd_root = {
1605         .llod_name      = mdd_root_dir_name,
1606         .llod_oid       = MDD_ROOT_INDEX_OID,
1607         .llod_is_index  = 1,
1608         .llod_feat      = &dt_directory_features,
1609 };
1610
1611 static int __init mdd_mod_init(void)
1612 {
1613         struct lprocfs_static_vars lvars;
1614         lprocfs_mdd_init_vars(&lvars);
1615
1616         llo_local_obj_register(&llod_capa_key);
1617         llo_local_obj_register(&llod_mdd_orphan);
1618         llo_local_obj_register(&llod_mdd_root);
1619
1620         return class_register_type(&mdd_obd_device_ops, NULL, lvars.module_vars,
1621                                    LUSTRE_MDD_NAME, &mdd_device_type);
1622 }
1623
1624 static void __exit mdd_mod_exit(void)
1625 {
1626         llo_local_obj_unregister(&llod_capa_key);
1627         llo_local_obj_unregister(&llod_mdd_orphan);
1628         llo_local_obj_unregister(&llod_mdd_root);
1629
1630         class_unregister_type(LUSTRE_MDD_NAME);
1631 }
1632
1633 MODULE_AUTHOR("Sun Microsystems, Inc. <http://www.lustre.org/>");
1634 MODULE_DESCRIPTION("Lustre Meta-data Device Prototype ("LUSTRE_MDD_NAME")");
1635 MODULE_LICENSE("GPL");
1636
1637 cfs_module(mdd, "0.1.0", mdd_mod_init, mdd_mod_exit);