Whamcloud - gitweb
- cleanups in cmobd and others:
[fs/lustre-release.git] / lustre / cmobd / cm_obd.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  *  Copyright (c) 2002 Cluster File Systems, Inc. <info@clusterfs.com>
5  *
6  *   This file is part of Lustre, http://www.lustre.org.
7  *
8  *   Lustre is free software; you can redistribute it and/or
9  *   modify it under the terms of version 2 of the GNU General Public
10  *   License as published by the Free Software Foundation.
11  *
12  *   Lustre is distributed in the hope that it will be useful,
13  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
14  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  *   GNU General Public License for more details.
16  *
17  *   You should have received a copy of the GNU General Public License
18  *   along with Lustre; if not, write to the Free Software
19  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20  */
21
22 #define DEBUG_SUBSYSTEM S_CMOBD
23
24 #include <linux/version.h>
25 #include <linux/init.h>
26 #include <linux/obd_support.h>
27 #include <linux/lustre_lib.h>
28 #include <linux/lustre_net.h>
29 #include <linux/lustre_idl.h>
30 #include <linux/obd_class.h>
31 #include <linux/lustre_mds.h>
32 #include <linux/lustre_cmobd.h>
33 #include <linux/lprocfs_status.h>
34 #include <linux/obd_lov.h>
35 #include <linux/obd_ost.h>
36 #include <linux/obd_lmv.h>
37
38 #include "cm_internal.h"
39
40 static int cmobd_attach(struct obd_device *obd,
41                         obd_count len, void *data)
42 {
43         struct lprocfs_static_vars lvars;
44
45         lprocfs_init_vars(cmobd, &lvars);
46         return lprocfs_obd_attach(obd, lvars.obd_vars);
47 }
48
49 static int cmobd_detach(struct obd_device *obd)
50 {
51         return lprocfs_obd_detach(obd);
52 }
53
54 static inline int cmobd_md_obd(struct obd_device *obd)
55 {
56         if (!strcmp(obd->obd_type->typ_name, OBD_MDC_DEVICENAME) ||
57             !strcmp(obd->obd_type->typ_name, OBD_LMV_DEVICENAME))
58                 return 1;
59
60         return 0;
61 }
62
63 static inline int cmobd_dt_obd(struct obd_device *obd)
64 {
65         if (!strcmp(obd->obd_type->typ_name, OBD_LOV_DEVICENAME) ||
66             !strcmp(obd->obd_type->typ_name, OBD_OSC_DEVICENAME))
67                 return 1;
68
69         return 0;
70 }
71
72 static void cmobd_init_ea_size(struct obd_device *obd)
73 {
74         int ost_count = 1, easize, cookiesize;
75         struct cm_obd *cmobd = &obd->u.cm;
76         ENTRY;
77
78         /*
79          * here we should also take into account that there is possible to have
80          * few OSTs. --umka
81          */
82         easize = lov_mds_md_size(ost_count);
83         cookiesize = ost_count * sizeof(struct llog_cookie);
84
85         obd_init_ea_size(cmobd->master_exp, easize, cookiesize);
86
87         cmobd->master_exp->exp_obd->u.cli.cl_max_mds_easize = easize;
88         cmobd->master_exp->exp_obd->u.cli.cl_max_mds_cookiesize = cookiesize;
89         
90         EXIT;
91 }
92
93 static char *types[] = {
94         OBD_LMV_DEVICENAME, OBD_MDC_DEVICENAME,
95         OBD_LOV_DEVICENAME, OBD_OSC_DEVICENAME
96 };
97
98 static struct obd_device *
99 cmobd_find_obd(struct obd_device *obd, struct obd_uuid *uuid)
100 {
101         struct obd_device *res;
102         int i = 0;
103         ENTRY;
104
105         CWARN("%s: looking for client obd %s\n",
106               obd->obd_uuid.uuid, uuid->uuid);
107
108         for (i = 0; i < sizeof(types); i++) {
109                 res = class_find_client_obd(NULL, types[i],
110                                             uuid);
111                 if (res)
112                         RETURN(res);
113         }
114         RETURN(NULL);
115 }
116
117 static int cmobd_setup(struct obd_device *obd, obd_count len, void *buf)
118 {
119         struct obd_uuid master_uuid, cache_uuid;
120         struct lustre_handle conn = { 0 };
121         struct cm_obd *cmobd = &obd->u.cm;
122         struct lustre_cfg* lcfg = buf;
123         struct lustre_id mid, lid;
124         __u32 valsize;
125         int rc;
126         ENTRY;
127
128         if (LUSTRE_CFG_BUFLEN(lcfg, 1) < 1) {
129                 CERROR("%s: setup requires master device uuid\n", 
130                        obd->obd_name);
131                 RETURN(-EINVAL);
132         }
133
134         if (LUSTRE_CFG_BUFLEN(lcfg, 2) < 1) {
135                 CERROR("%s: setup requires cache device uuid\n",
136                        obd->obd_name);
137                 RETURN(-EINVAL);
138         }
139
140         obd_str2uuid(&master_uuid, lustre_cfg_string(lcfg, 1));
141         obd_str2uuid(&cache_uuid, lustre_cfg_string(lcfg, 2));
142
143         /* getting master obd */
144         cmobd->master_obd = cmobd_find_obd(obd, &master_uuid);
145         if (!cmobd->master_obd) {
146                 CERROR("can't find master client obd by uuid %s\n",
147                        master_uuid.uuid);
148                 RETURN(-EINVAL);
149         }
150
151         /* getting cache obd */
152         cmobd->cache_obd = class_uuid2obd(&cache_uuid);
153         if (cmobd->cache_obd == NULL) {
154                 CERROR("CMOBD: unable to find obd by uuid: %s\n",
155                        cache_uuid.uuid);
156                 RETURN(-EINVAL);
157         }
158
159         /* connecting master */
160         memset(&conn, 0, sizeof(conn));
161         rc = obd_connect(&conn, cmobd->master_obd, &obd->obd_uuid, 
162                          NULL, OBD_OPT_REAL_CLIENT);
163         if (rc)
164                 RETURN(rc);
165         cmobd->master_exp = class_conn2export(&conn);
166
167         /* connecting cache */
168         memset(&conn, 0, sizeof(conn));
169         rc = class_connect(&conn, cmobd->cache_obd, &obd->obd_uuid);
170         if (rc)
171                 GOTO(put_master, rc);
172         cmobd->cache_exp = class_conn2export(&conn);
173         
174         if (cmobd_dt_obd(cmobd->master_exp->exp_obd)) {
175                 /* for master dt device remove the recovery flag. */
176                 rc = obd_set_info(cmobd->master_exp, strlen("unrecovery"),
177                                   "unrecovery", 0, NULL); 
178                 if (rc)
179                         GOTO(put_cache, rc);
180                 
181                 rc = cmobd_init_write_srv(obd);
182                 if (rc)
183                         GOTO(put_cache, rc);
184         } else {
185                 cmobd_init_ea_size(obd);
186                 cmobd->write_srv = NULL;
187         }
188
189         if (cmobd_md_obd(cmobd->master_exp->exp_obd)) {
190                 /*
191                  * making sure, that both obds are ready. This is especially
192                  * important in the case of using LMV as master.
193                  */
194                 rc = obd_getready(cmobd->master_exp);
195                 if (rc) {
196                         CERROR("can't get %s obd ready.\n",
197                                master_uuid.uuid);
198                         GOTO(put_cache, rc);
199                 }
200         
201                 rc = obd_getready(cmobd->cache_exp);
202                 if (rc) {
203                         CERROR("can't get %s obd ready.\n",
204                                cache_uuid.uuid);
205                         GOTO(put_cache, rc);
206                 }
207         
208                 /*
209                  * requesting master obd to have its root inode store cookie to
210                  * be able to save it to local root inode EA.
211                  */
212                 valsize = sizeof(struct lustre_id);
213         
214                 rc = obd_get_info(cmobd->master_exp, strlen("rootid"),
215                                   "rootid", &valsize, &mid);
216                 if (rc) {
217                         CERROR("can't get rootid from master MDS %s, "
218                                "err= %d.\n", master_uuid.uuid, rc);
219                         GOTO(put_cache, rc);
220                 }
221
222                 /*
223                  * getting rootid from cache MDS. It is needed to update local
224                  * (cache) root inode by rootid value from master obd.
225                  */
226                 rc = obd_get_info(cmobd->cache_exp, strlen("rootid"),
227                                   "rootid", &valsize, &lid);
228                 if (rc) {
229                         CERROR("can't get rootid from local MDS %s, "
230                                "err= %d.\n", cache_uuid.uuid, rc);
231                         GOTO(put_cache, rc);
232                 }
233
234                 /* storing master MDS rootid to local root inode EA. */
235                 CWARN("storing "DLID4" to local inode "DLID4".\n",
236                       OLID4(&mid), OLID4(&lid));
237
238                 rc = mds_update_mid(cmobd->cache_exp->exp_obd, &lid,
239                                     &mid, sizeof(mid));
240                 if (rc) {
241                         CERROR("can't update local root inode by ID "
242                                "from master MDS %s, err = %d.\n",
243                                master_uuid.uuid, rc);
244                         GOTO(put_cache, rc);
245                 }
246         }
247
248         RETURN(rc);
249 put_cache:
250         class_disconnect(cmobd->cache_exp, 0);
251 put_master:
252         obd_disconnect(cmobd->master_exp, 0);
253         return rc;
254 }
255
256 static int cmobd_cleanup(struct obd_device *obd, int flags)
257 {
258         struct cm_obd *cmobd = &obd->u.cm;
259         int rc;
260         ENTRY;
261
262         if (cmobd->write_srv)
263                 cmobd_cleanup_write_srv(obd);
264
265         rc = obd_disconnect(cmobd->master_exp, flags);
266         if (rc) {
267                 CERROR("error disconnecting master, err %d\n",
268                        rc);
269         }
270         
271         rc = class_disconnect(cmobd->cache_exp, flags);
272         if (rc) {
273                 CERROR("error disconnecting cache, err %d\n",
274                        rc);
275         }
276         
277         RETURN(0);
278 }
279
280 static int cmobd_iocontrol(unsigned int cmd, struct obd_export *exp,
281                            int len, void *karg, void *uarg)
282 {
283         struct obd_device *obd = exp->exp_obd;
284         int rc = 0;
285         ENTRY;
286         
287         switch (cmd) {
288         case OBD_IOC_CMOBD_SYNC: /* trigger reintegration */
289                 rc = cmobd_reintegrate(obd);
290                 break;
291         default:
292                 CERROR("unrecognized ioctl %#x\n", cmd);
293                 rc = -EINVAL;
294                 break;
295         }
296                 
297         RETURN(rc);
298 }
299
300 static struct obd_ops cmobd_ops = {
301         .o_owner     = THIS_MODULE,
302         .o_attach    = cmobd_attach,
303         .o_detach    = cmobd_detach,
304         .o_setup     = cmobd_setup,
305         .o_cleanup   = cmobd_cleanup,
306         .o_iocontrol = cmobd_iocontrol,
307 };
308
309 kmem_cache_t *cmobd_extent_slab;
310
311 static int __init cmobd_init(void)
312 {
313         struct lprocfs_static_vars lvars;
314         int rc;
315         ENTRY;
316
317         printk(KERN_INFO "Lustre: Cache Manager OBD driver; info@clusterfs.com\n");
318
319         lprocfs_init_vars(cmobd, &lvars);
320         rc = class_register_type(&cmobd_ops, NULL, lvars.module_vars,
321                                  OBD_CMOBD_DEVICENAME);
322         if (rc)
323                 RETURN(rc);
324         cmobd_extent_slab = kmem_cache_create("cmobd_extents",
325                                                sizeof(struct cmobd_extent_info), 0,
326                                                SLAB_HWCACHE_ALIGN, NULL, NULL);
327         if (cmobd_extent_slab == NULL) {
328                 class_unregister_type(OBD_CMOBD_DEVICENAME);
329                 RETURN(-ENOMEM);
330         }
331         RETURN(0);
332 }
333
334 static void __exit cmobd_exit(void)
335 {
336         class_unregister_type(OBD_CMOBD_DEVICENAME);
337         if (kmem_cache_destroy(cmobd_extent_slab) != 0)
338                 CERROR("couldn't free cmobd extent slab\n");
339 }
340
341 MODULE_AUTHOR("Cluster File Systems, Inc. <info@clusterfs.com>");
342 MODULE_DESCRIPTION("Lustre Cache Manager OBD driver");
343 MODULE_LICENSE("GPL");
344
345 module_init(cmobd_init);
346 module_exit(cmobd_exit);