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