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