Whamcloud - gitweb
Revert "LU-3319 procfs: move osp proc handling to seq_files"
[fs/lustre-release.git] / lustre / osp / lwp_dev.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, write to the
18  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19  * Boston, MA 021110-1307, USA
20  *
21  * GPL HEADER END
22  */
23 /*
24  * Copyright (c) 2013, Intel Corporation.
25  * Use is subject to license terms.
26  *
27  * lustre/osp/lwp_dev.c
28  *
29  * Light Weight Proxy, which is just for managing the connection established
30  * from OSTs/MDTs to MDT0.
31  *
32  * Author: <di.wang@intel.com>
33  * Author: <yawei.niu@intel.com>
34  */
35 #define DEBUG_SUBSYSTEM S_OST
36
37 #include <obd_class.h>
38 #include <lustre_param.h>
39 #include <lustre_log.h>
40
41 struct lwp_device {
42         struct lu_device        lpd_dev;
43         struct obd_device       *lpd_obd;
44         struct obd_uuid         lpd_cluuid;
45         struct obd_export       *lpd_exp;
46         int                     lpd_connects;
47 };
48
49 static inline struct lwp_device *lu2lwp_dev(struct lu_device *d)
50 {
51         return container_of0(d, struct lwp_device, lpd_dev);
52 }
53
54 static inline struct lu_device *lwp2lu_dev(struct lwp_device *d)
55 {
56         return &d->lpd_dev;
57 }
58
59 static int lwp_name2fsname(char *lwpname, char *fsname)
60 {
61         char *ptr;
62
63         LASSERT(lwpname != NULL);
64         LASSERT(fsname != NULL);
65
66         sprintf(fsname, "-%s-", LUSTRE_LWP_NAME);
67
68         ptr = strstr(lwpname, fsname);
69         if (ptr == NULL)
70                 return -EINVAL;
71
72         while (*(--ptr) != '-') {
73                 if (ptr == lwpname)
74                         return -EINVAL;
75         }
76
77         strncpy(fsname, lwpname, ptr - lwpname);
78         fsname[ptr - lwpname] = '\0';
79
80         return 0;
81 }
82
83 static int lwp_setup(const struct lu_env *env, struct lwp_device *lwp,
84                      char *nidstring)
85 {
86         struct lustre_cfg_bufs  *bufs = NULL;
87         struct lustre_cfg       *lcfg = NULL;
88         char                    *lwpname = lwp->lpd_obd->obd_name;
89         char                    *fsname = NULL;
90         char                    *server_uuid = NULL;
91         class_uuid_t             uuid;
92         struct obd_import       *imp;
93         int                      rc;
94         ENTRY;
95
96         OBD_ALLOC_PTR(bufs);
97         if (bufs == NULL)
98                 RETURN(-ENOMEM);
99
100         OBD_ALLOC(fsname, strlen(lwpname));
101         if (fsname == NULL)
102                 GOTO(out, rc = -ENOMEM);
103
104         rc = lwp_name2fsname(lwpname, fsname);
105         if (rc) {
106                 CERROR("%s: failed to get fsname from lwpname. %d\n",
107                        lwpname, rc);
108                 GOTO(out, rc);
109         }
110
111         OBD_ALLOC(server_uuid, strlen(fsname) + 15);
112         if (server_uuid == NULL)
113                 GOTO(out, rc = -ENOMEM);
114
115         sprintf(server_uuid, "%s-MDT0000_UUID", fsname);
116         lustre_cfg_bufs_reset(bufs, lwpname);
117         lustre_cfg_bufs_set_string(bufs, 1, server_uuid);
118         lustre_cfg_bufs_set_string(bufs, 2, nidstring);
119         lcfg = lustre_cfg_new(LCFG_SETUP, bufs);
120         if (lcfg == NULL)
121                 GOTO(out, rc = -ENOMEM);
122
123         rc = client_obd_setup(lwp->lpd_obd, lcfg);
124         if (rc != 0) {
125                 CERROR("%s: client obd setup error: rc = %d\n",
126                        lwp->lpd_obd->obd_name, rc);
127                 GOTO(out, rc);
128         }
129
130         imp = lwp->lpd_obd->u.cli.cl_import;
131         rc = ptlrpc_init_import(imp);
132         if (rc)
133                 GOTO(out, rc);
134
135         ll_generate_random_uuid(uuid);
136         class_uuid_unparse(uuid, &lwp->lpd_cluuid);
137 out:
138         if (bufs != NULL)
139                 OBD_FREE_PTR(bufs);
140         if (server_uuid != NULL)
141                 OBD_FREE(server_uuid, strlen(fsname) + 15);
142         if (fsname != NULL)
143                 OBD_FREE(fsname, strlen(lwpname));
144         if (lcfg != NULL)
145                 lustre_cfg_free(lcfg);
146         if (rc)
147                 client_obd_cleanup(lwp->lpd_obd);
148
149         RETURN(rc);
150 }
151
152 int lwp_disconnect(struct lwp_device *d)
153 {
154         struct obd_import *imp;
155         int rc = 0;
156
157         imp = d->lpd_obd->u.cli.cl_import;
158
159         /* Mark import deactivated now, so we don't try to reconnect if any
160          * of the cleanup RPCs fails (e.g. ldlm cancel, etc).  We don't
161          * fully deactivate the import, or that would drop all requests. */
162         LASSERT(imp != NULL);
163         spin_lock(&imp->imp_lock);
164         imp->imp_deactive = 1;
165         spin_unlock(&imp->imp_lock);
166
167         ptlrpc_deactivate_import(imp);
168
169         /* Some non-replayable imports (MDS's OSCs) are pinged, so just
170          * delete it regardless.  (It's safe to delete an import that was
171          * never added.) */
172         (void)ptlrpc_pinger_del_import(imp);
173
174         rc = ptlrpc_disconnect_import(imp, 0);
175         if (rc && rc != -ETIMEDOUT)
176                 CERROR("%s: can't disconnect: rc = %d\n",
177                        d->lpd_obd->obd_name, rc);
178
179         ptlrpc_invalidate_import(imp);
180
181         RETURN(rc);
182 }
183
184 static int lwp_process_config(const struct lu_env *env,
185                               struct lu_device *dev, struct lustre_cfg *lcfg)
186 {
187         struct lwp_device               *d = lu2lwp_dev(dev);
188         int                              rc;
189         ENTRY;
190
191         switch (lcfg->lcfg_command) {
192         case LCFG_PRE_CLEANUP:
193         case LCFG_CLEANUP:
194                 rc = lwp_disconnect(d);
195                 break;
196         case LCFG_PARAM:
197                 rc = -ENOSYS;
198                 break;
199         default:
200                 CERROR("%s: unknown command %u\n",
201                        (char *)lustre_cfg_string(lcfg, 0), lcfg->lcfg_command);
202                 rc = 0;
203                 break;
204         }
205
206         RETURN(rc);
207 }
208
209 const struct lu_device_operations lwp_lu_ops = {
210         .ldo_process_config     = lwp_process_config,
211 };
212
213 static struct lprocfs_vars lprocfs_lwp_module_vars[] = {
214         { "num_refs",           lprocfs_rd_numrefs, 0, 0 },
215         { 0 }
216 };
217
218 static struct lprocfs_vars lprocfs_lwp_obd_vars[] = {
219         { 0 }
220 };
221
222 void lprocfs_lwp_init_vars(struct lprocfs_static_vars *lvars)
223 {
224         lvars->module_vars = lprocfs_lwp_module_vars;
225         lvars->obd_vars = lprocfs_lwp_obd_vars;
226 }
227
228 int lwp_init0(const struct lu_env *env, struct lwp_device *lwp,
229               struct lu_device_type *ldt, struct lustre_cfg *cfg)
230 {
231         struct lprocfs_static_vars lvars = { 0 };
232         int                        rc;
233         ENTRY;
234
235         lwp->lpd_obd = class_name2obd(lustre_cfg_string(cfg, 0));
236         if (lwp->lpd_obd == NULL) {
237                 CERROR("Cannot find obd with name %s\n",
238                        lustre_cfg_string(cfg, 0));
239                 RETURN(-ENODEV);
240         }
241
242         lwp->lpd_dev.ld_ops = &lwp_lu_ops;
243         lwp->lpd_obd->obd_lu_dev = &lwp->lpd_dev;
244
245         rc = ptlrpcd_addref();
246         if (rc) {
247                 CERROR("%s: ptlrpcd addref error: rc =%d\n",
248                        lwp->lpd_obd->obd_name, rc);
249                 RETURN(rc);
250         }
251
252         rc = lwp_setup(env, lwp, lustre_cfg_string(cfg, 1));
253         if (rc) {
254                 CERROR("%s: setup lwp failed. %d\n",
255                        lwp->lpd_obd->obd_name, rc);
256                 ptlrpcd_decref();
257                 RETURN(rc);
258         }
259
260         lprocfs_lwp_init_vars(&lvars);
261         if (lprocfs_obd_setup(lwp->lpd_obd, lvars.obd_vars) == 0)
262                 ptlrpc_lprocfs_register_obd(lwp->lpd_obd);
263
264         RETURN(0);
265 }
266
267 static struct lu_device *lwp_device_free(const struct lu_env *env,
268                                          struct lu_device *lu)
269 {
270         struct lwp_device *m = lu2lwp_dev(lu);
271         ENTRY;
272
273         if (cfs_atomic_read(&lu->ld_ref) && lu->ld_site) {
274                 LIBCFS_DEBUG_MSG_DATA_DECL(msgdata, D_ERROR, NULL);
275                 lu_site_print(env, lu->ld_site, &msgdata, lu_cdebug_printer);
276         }
277         lu_device_fini(&m->lpd_dev);
278         OBD_FREE_PTR(m);
279         RETURN(NULL);
280 }
281
282 static struct lu_device *lwp_device_alloc(const struct lu_env *env,
283                                           struct lu_device_type *t,
284                                           struct lustre_cfg *lcfg)
285 {
286         struct lwp_device *lwp;
287         struct lu_device  *l;
288
289         OBD_ALLOC_PTR(lwp);
290         if (lwp == NULL) {
291                 l = ERR_PTR(-ENOMEM);
292         } else {
293                 int rc;
294
295                 l = lwp2lu_dev(lwp);
296                 lu_device_init(&lwp->lpd_dev, t);
297                 rc = lwp_init0(env, lwp, t, lcfg);
298                 if (rc != 0) {
299                         lwp_device_free(env, l);
300                         l = ERR_PTR(rc);
301                 }
302         }
303         return l;
304 }
305
306
307 static struct lu_device *lwp_device_fini(const struct lu_env *env,
308                                          struct lu_device *d)
309 {
310         struct lwp_device *m = lu2lwp_dev(d);
311         struct obd_import *imp;
312         int                rc;
313         ENTRY;
314
315         if (m->lpd_exp != NULL)
316                 class_disconnect(m->lpd_exp);
317
318         imp = m->lpd_obd->u.cli.cl_import;
319
320         if (imp->imp_rq_pool) {
321                 ptlrpc_free_rq_pool(imp->imp_rq_pool);
322                 imp->imp_rq_pool = NULL;
323         }
324
325         LASSERT(m->lpd_obd);
326         ptlrpc_lprocfs_unregister_obd(m->lpd_obd);
327         lprocfs_obd_cleanup(m->lpd_obd);
328
329         rc = client_obd_cleanup(m->lpd_obd);
330         LASSERTF(rc == 0, "error %d\n", rc);
331
332         ptlrpcd_decref();
333
334         RETURN(NULL);
335 }
336
337 static struct lu_device_type_operations lwp_device_type_ops = {
338         .ldto_device_alloc   = lwp_device_alloc,
339         .ldto_device_free    = lwp_device_free,
340         .ldto_device_fini    = lwp_device_fini
341 };
342
343 struct lu_device_type lwp_device_type = {
344         .ldt_tags     = LU_DEVICE_DT,
345         .ldt_name     = LUSTRE_LWP_NAME,
346         .ldt_ops      = &lwp_device_type_ops,
347         .ldt_ctx_tags = LCT_MD_THREAD
348 };
349
350 static int lwp_obd_connect(const struct lu_env *env, struct obd_export **exp,
351                            struct obd_device *obd, struct obd_uuid *cluuid,
352                            struct obd_connect_data *data, void *localdata)
353 {
354         struct lwp_device       *lwp = lu2lwp_dev(obd->obd_lu_dev);
355         struct obd_connect_data *ocd;
356         struct obd_import       *imp;
357         struct lustre_handle     conn;
358         int                      rc;
359
360         ENTRY;
361
362         CDEBUG(D_CONFIG, "connect #%d\n", lwp->lpd_connects);
363
364         rc = class_connect(&conn, obd, cluuid);
365         if (rc)
366                 RETURN(rc);
367
368         *exp = class_conn2export(&conn);
369         lwp->lpd_exp = *exp;
370
371         /* Why should there ever be more than 1 connect? */
372         lwp->lpd_connects++;
373         LASSERT(lwp->lpd_connects == 1);
374
375         imp = lwp->lpd_obd->u.cli.cl_import;
376         imp->imp_dlm_handle = conn;
377
378         LASSERT(data != NULL);
379         ocd = &imp->imp_connect_data;
380         *ocd = *data;
381
382         LASSERT(ocd->ocd_connect_flags & OBD_CONNECT_LIGHTWEIGHT);
383
384         ocd->ocd_version = LUSTRE_VERSION_CODE;
385         imp->imp_connect_flags_orig = ocd->ocd_connect_flags;
386
387         rc = ptlrpc_connect_import(imp);
388         if (rc) {
389                 CERROR("%s: can't connect obd: rc = %d\n", obd->obd_name, rc);
390                 GOTO(out, rc);
391         }
392
393         ptlrpc_pinger_add_import(imp);
394
395 out:
396         RETURN(rc);
397 }
398
399 static int lwp_obd_disconnect(struct obd_export *exp)
400 {
401         struct obd_device *obd = exp->exp_obd;
402         struct lwp_device *lwp = lu2lwp_dev(obd->obd_lu_dev);
403         int                rc;
404         ENTRY;
405
406         /* Only disconnect the underlying layers on the final disconnect. */
407         LASSERT(lwp->lpd_connects == 1);
408         lwp->lpd_connects--;
409
410         rc = class_disconnect(exp);
411         if (rc)
412                 CERROR("%s: class disconnect error: rc = %d\n",
413                        obd->obd_name, rc);
414
415         RETURN(rc);
416 }
417
418 static int lwp_import_event(struct obd_device *obd, struct obd_import *imp,
419                             enum obd_import_event event)
420 {
421         switch (event) {
422         case IMP_EVENT_DISCON:
423         case IMP_EVENT_INACTIVE:
424         case IMP_EVENT_ACTIVE:
425                 break;
426         case IMP_EVENT_INVALIDATE:
427                 if (obd->obd_namespace == NULL)
428                         break;
429                 ldlm_namespace_cleanup(obd->obd_namespace, LDLM_FL_LOCAL_ONLY);
430                 break;
431         case IMP_EVENT_OCD:
432                 break;
433         default:
434                 CERROR("%s: unsupported import event: %#x\n",
435                        obd->obd_name, event);
436         }
437         return 0;
438 }
439
440 struct obd_ops lwp_obd_device_ops = {
441         .o_owner        = THIS_MODULE,
442         .o_add_conn     = client_import_add_conn,
443         .o_del_conn     = client_import_del_conn,
444         .o_connect      = lwp_obd_connect,
445         .o_disconnect   = lwp_obd_disconnect,
446         .o_import_event = lwp_import_event,
447 };