Whamcloud - gitweb
bcc3617bd5a27a2b71164c97c0c6cb917e4d61e3
[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_disk.h>
53
54 static int mgc_setup(struct obd_device *obd, struct lustre_cfg *lcfg)
55 {
56         int rc;
57         ENTRY;
58
59         rc = ptlrpcd_addref();
60         if (rc < 0)
61                 RETURN(rc);
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         int rc;
105         ENTRY;
106
107         ptlrpcd_decref();
108
109         rc = client_obd_cleanup(obd);
110         RETURN(rc);
111 }
112
113 static int mgc_llog_init(struct obd_device *obd, struct obd_llog_group *olg,
114                          struct obd_device *tgt, int *index)
115 {
116         struct llog_ctxt *ctxt;
117         int rc;
118         ENTRY;
119
120         LASSERT(olg == &obd->obd_olg);
121         rc = llog_setup(NULL, obd, olg, LLOG_CONFIG_REPL_CTXT, tgt,
122                         &llog_client_ops);
123         if (rc < 0)
124                 RETURN(rc);
125
126         ctxt = llog_group_get_ctxt(olg, LLOG_CONFIG_REPL_CTXT);
127         llog_initiator_connect(ctxt);
128         llog_ctxt_put(ctxt);
129
130         RETURN(rc);
131 }
132
133 static int mgc_llog_finish(struct obd_device *obd, int count)
134 {
135         struct llog_ctxt *ctxt;
136
137         ENTRY;
138
139         ctxt = llog_get_context(obd, LLOG_CONFIG_REPL_CTXT);
140         if (ctxt)
141                 llog_cleanup(NULL, ctxt);
142
143         RETURN(0);
144 }
145
146 struct obd_ops mgc_obd_ops = {
147         .o_owner        = THIS_MODULE,
148         .o_setup        = mgc_setup,
149         .o_precleanup   = mgc_precleanup,
150         .o_cleanup      = mgc_cleanup,
151         .o_add_conn     = client_import_add_conn,
152         .o_del_conn     = client_import_del_conn,
153         .o_connect      = client_connect_import,
154         .o_disconnect   = client_disconnect_export,
155         .o_llog_init    = mgc_llog_init,
156         .o_llog_finish  = mgc_llog_finish,
157 };
158
159 int __init mgc_init(void)
160 {
161         return class_register_type(&mgc_obd_ops, NULL,
162                                    NULL, LUSTRE_MGC_NAME, NULL);
163 }