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