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