Whamcloud - gitweb
LU-1866 lfsck: enhance otable-based iteration
[fs/lustre-release.git] / lustre / mgc / libmgc.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2011, 2012, Intel Corporation.
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/mgc/libmgc.c
37  *
38  * Lustre Management Client
39  * Author: Nathan Rutman <nathan@clusterfs.com>
40  */
41
42 /* Minimal MGC for liblustre: only used to read the config log from the MGS
43    at setup time, no updates. */
44
45 #define DEBUG_SUBSYSTEM S_MGC
46
47 #include <liblustre.h>
48
49 #include <obd_class.h>
50 #include <lustre_dlm.h>
51 #include <lustre_log.h>
52 #include <lustre_fsfilt.h>
53 #include <lustre_disk.h>
54
55
56 static int mgc_setup(struct obd_device *obd, struct lustre_cfg *lcfg)
57 {
58         int rc;
59         ENTRY;
60
61         ptlrpcd_addref();
62
63         rc = client_obd_setup(obd, lcfg);
64         if (rc)
65                 GOTO(err_decref, rc);
66
67         /* liblustre only support null flavor to MGS */
68         obd->u.cli.cl_flvr_mgc.sf_rpc = SPTLRPC_FLVR_NULL;
69
70         rc = obd_llog_init(obd, &obd->obd_olg, obd, NULL);
71         if (rc) {
72                 CERROR("failed to setup llogging subsystems\n");
73                 GOTO(err_cleanup, rc);
74         }
75
76         RETURN(rc);
77
78 err_cleanup:
79         client_obd_cleanup(obd);
80 err_decref:
81         ptlrpcd_decref();
82         RETURN(rc);
83 }
84
85 static int mgc_precleanup(struct obd_device *obd, enum obd_cleanup_stage stage)
86 {
87         int rc = 0;
88         ENTRY;
89
90         switch (stage) {
91         case OBD_CLEANUP_EARLY:
92         case OBD_CLEANUP_EXPORTS:
93                 obd_cleanup_client_import(obd);
94                 rc = obd_llog_finish(obd, 0);
95                 if (rc != 0)
96                         CERROR("failed to cleanup llogging subsystems\n");
97                 break;
98         }
99         RETURN(rc);
100 }
101
102 static int mgc_cleanup(struct obd_device *obd)
103 {
104         struct client_obd *cli = &obd->u.cli;
105         int rc;
106         ENTRY;
107
108         LASSERT(cli->cl_mgc_vfsmnt == NULL);
109
110         ptlrpcd_decref();
111
112         rc = client_obd_cleanup(obd);
113         RETURN(rc);
114 }
115
116 static int mgc_llog_init(struct obd_device *obd, struct obd_llog_group *olg,
117                          struct obd_device *tgt, int *index)
118 {
119         struct llog_ctxt *ctxt;
120         int rc;
121         ENTRY;
122
123         LASSERT(olg == &obd->obd_olg);
124         rc = llog_setup(NULL, obd, olg, LLOG_CONFIG_REPL_CTXT, tgt,
125                         &llog_client_ops);
126         if (rc < 0)
127                 RETURN(rc);
128
129         ctxt = llog_group_get_ctxt(olg, LLOG_CONFIG_REPL_CTXT);
130         llog_initiator_connect(ctxt);
131         llog_ctxt_put(ctxt);
132
133         RETURN(rc);
134 }
135
136 static int mgc_llog_finish(struct obd_device *obd, int count)
137 {
138         struct llog_ctxt *ctxt;
139
140         ENTRY;
141
142         ctxt = llog_get_context(obd, LLOG_CONFIG_REPL_CTXT);
143         if (ctxt)
144                 llog_cleanup(NULL, ctxt);
145
146         RETURN(0);
147 }
148
149 struct obd_ops mgc_obd_ops = {
150         .o_owner        = THIS_MODULE,
151         .o_setup        = mgc_setup,
152         .o_precleanup   = mgc_precleanup,
153         .o_cleanup      = mgc_cleanup,
154         .o_add_conn     = client_import_add_conn,
155         .o_del_conn     = client_import_del_conn,
156         .o_connect      = client_connect_import,
157         .o_disconnect   = client_disconnect_export,
158         .o_llog_init    = mgc_llog_init,
159         .o_llog_finish  = mgc_llog_finish,
160 };
161
162 int __init mgc_init(void)
163 {
164         return class_register_type(&mgc_obd_ops, NULL,
165                                    NULL, LUSTRE_MGC_NAME, NULL);
166 }