Whamcloud - gitweb
LU-2226 osp: dump statfs data via lprocfs
[fs/lustre-release.git] / lustre / osp / osp_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, 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, Inc.
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/osp/osp_dev.c
37  *
38  * Lustre OST Proxy Device
39  *
40  * Author: Alex Zhuravlev <alexey.zhuravlev@intel.com>
41  * Author: Mikhail Pershin <mike.pershin@intel.com>
42  */
43
44 #ifndef EXPORT_SYMTAB
45 # define EXPORT_SYMTAB
46 #endif
47 #define DEBUG_SUBSYSTEM S_MDS
48
49 #include <obd_class.h>
50 #include <lustre_param.h>
51
52 #include "osp_internal.h"
53
54 /* Slab for OSP object allocation */
55 cfs_mem_cache_t *osp_object_kmem;
56
57 static struct lu_kmem_descr osp_caches[] = {
58         {
59                 .ckd_cache = &osp_object_kmem,
60                 .ckd_name  = "osp_obj",
61                 .ckd_size  = sizeof(struct osp_object)
62         },
63         {
64                 .ckd_cache = NULL
65         }
66 };
67
68 struct lu_object *osp_object_alloc(const struct lu_env *env,
69                                    const struct lu_object_header *hdr,
70                                    struct lu_device *d)
71 {
72         struct lu_object_header *h;
73         struct osp_object       *o;
74         struct lu_object        *l;
75
76         LASSERT(hdr == NULL);
77
78         OBD_SLAB_ALLOC_PTR_GFP(o, osp_object_kmem, CFS_ALLOC_IO);
79         if (o != NULL) {
80                 l = &o->opo_obj.do_lu;
81                 h = &o->opo_header;
82
83                 lu_object_header_init(h);
84                 dt_object_init(&o->opo_obj, h, d);
85                 lu_object_add_top(h, l);
86
87                 l->lo_ops = &osp_lu_obj_ops;
88
89                 return l;
90         } else {
91                 return NULL;
92         }
93 }
94
95 /* Update opd_last_used_id along with checking for gap in objid sequence */
96 void osp_update_last_id(struct osp_device *d, obd_id objid)
97 {
98         /*
99          * we might have lost precreated objects due to VBR and precreate
100          * orphans, the gap in objid can be calculated properly only here
101          */
102         if (objid > le64_to_cpu(d->opd_last_used_id)) {
103                 if (objid - le64_to_cpu(d->opd_last_used_id) > 1) {
104                         d->opd_gap_start = le64_to_cpu(d->opd_last_used_id) + 1;
105                         d->opd_gap_count = objid - d->opd_gap_start;
106                         CDEBUG(D_HA, "Gap in objids: %d, start = %llu\n",
107                                d->opd_gap_count, d->opd_gap_start);
108                 }
109                 d->opd_last_used_id = cpu_to_le64(objid);
110         }
111 }
112
113 static int osp_last_used_init(const struct lu_env *env, struct osp_device *m)
114 {
115         struct osp_thread_info  *osi = osp_env_info(env);
116         struct dt_object_format  dof = { 0 };
117         struct dt_object        *o;
118         int                      rc;
119
120         ENTRY;
121
122         osi->osi_attr.la_valid = LA_MODE;
123         osi->osi_attr.la_mode = S_IFREG | 0644;
124         lu_local_obj_fid(&osi->osi_fid, MDD_LOV_OBJ_OID);
125         dof.dof_type = DFT_REGULAR;
126         o = dt_find_or_create(env, m->opd_storage, &osi->osi_fid, &dof,
127                               &osi->osi_attr);
128         if (IS_ERR(o))
129                 RETURN(PTR_ERR(o));
130
131         rc = dt_attr_get(env, o, &osi->osi_attr, NULL);
132         if (rc)
133                 GOTO(out, rc);
134
135         /* object will be released in device cleanup path */
136         m->opd_last_used_file = o;
137
138         if (osi->osi_attr.la_size >= sizeof(osi->osi_id) *
139                                      (m->opd_index + 1)) {
140                 osp_objid_buf_prep(osi, m, m->opd_index);
141                 rc = dt_record_read(env, o, &osi->osi_lb, &osi->osi_off);
142                 if (rc != 0)
143                         GOTO(out, rc);
144         } else {
145                 /* reset value to 0, just to make sure and change file's size */
146                 struct thandle *th;
147
148                 m->opd_last_used_id = 0;
149                 osp_objid_buf_prep(osi, m, m->opd_index);
150
151                 th = dt_trans_create(env, m->opd_storage);
152                 if (IS_ERR(th))
153                         GOTO(out, rc = PTR_ERR(th));
154
155                 rc = dt_declare_record_write(env, m->opd_last_used_file,
156                                              osi->osi_lb.lb_len, osi->osi_off,
157                                              th);
158                 if (rc) {
159                         dt_trans_stop(env, m->opd_storage, th);
160                         GOTO(out, rc);
161                 }
162
163                 rc = dt_trans_start_local(env, m->opd_storage, th);
164                 if (rc) {
165                         dt_trans_stop(env, m->opd_storage, th);
166                         GOTO(out, rc);
167                 }
168
169                 rc = dt_record_write(env, m->opd_last_used_file, &osi->osi_lb,
170                                      &osi->osi_off, th);
171                 dt_trans_stop(env, m->opd_storage, th);
172                 if (rc)
173                         GOTO(out, rc);
174         }
175         RETURN(0);
176 out:
177         CERROR("%s: can't initialize lov_objid: %d\n",
178                m->opd_obd->obd_name, rc);
179         lu_object_put(env, &o->do_lu);
180         m->opd_last_used_file = NULL;
181         return rc;
182 }
183
184 static void osp_last_used_fini(const struct lu_env *env, struct osp_device *d)
185 {
186         if (d->opd_last_used_file != NULL) {
187                 lu_object_put(env, &d->opd_last_used_file->do_lu);
188                 d->opd_last_used_file = NULL;
189         }
190 }
191
192 int osp_disconnect(struct osp_device *d)
193 {
194         struct obd_import *imp;
195         int rc = 0;
196
197         imp = d->opd_obd->u.cli.cl_import;
198
199         /* Mark import deactivated now, so we don't try to reconnect if any
200          * of the cleanup RPCs fails (e.g. ldlm cancel, etc).  We don't
201          * fully deactivate the import, or that would drop all requests. */
202         LASSERT(imp != NULL);
203         cfs_spin_lock(&imp->imp_lock);
204         imp->imp_deactive = 1;
205         cfs_spin_unlock(&imp->imp_lock);
206
207         ptlrpc_deactivate_import(imp);
208
209         /* Some non-replayable imports (MDS's OSCs) are pinged, so just
210          * delete it regardless.  (It's safe to delete an import that was
211          * never added.) */
212         (void)ptlrpc_pinger_del_import(imp);
213
214         rc = ptlrpc_disconnect_import(imp, 0);
215         if (rc && rc != -ETIMEDOUT)
216                 CERROR("%s: can't disconnect: rc = %d\n",
217                        d->opd_obd->obd_name, rc);
218
219         ptlrpc_invalidate_import(imp);
220
221         RETURN(rc);
222 }
223
224 static int osp_shutdown(const struct lu_env *env, struct osp_device *d)
225 {
226         int                      rc = 0;
227         ENTRY;
228
229         if (is_osp_on_ost(d->opd_obd->obd_name)) {
230                 rc = osp_disconnect(d);
231                 RETURN(rc);
232         }
233
234         LASSERT(env);
235         /* release last_used file */
236         osp_last_used_fini(env, d);
237
238         rc = osp_disconnect(d);
239
240         /* stop precreate thread */
241         osp_precreate_fini(d);
242
243         /* stop sync thread */
244         osp_sync_fini(d);
245
246         RETURN(rc);
247 }
248
249 static int osp_process_config(const struct lu_env *env,
250                               struct lu_device *dev, struct lustre_cfg *lcfg)
251 {
252         struct osp_device               *d = lu2osp_dev(dev);
253         struct lprocfs_static_vars       lvars = { 0 };
254         int                              rc;
255
256         ENTRY;
257
258         switch (lcfg->lcfg_command) {
259         case LCFG_CLEANUP:
260                 if (!is_osp_on_ost(d->opd_obd->obd_name))
261                         lu_dev_del_linkage(dev->ld_site, dev);
262                 rc = osp_shutdown(env, d);
263                 break;
264         case LCFG_PARAM:
265                 lprocfs_osp_init_vars(&lvars);
266
267                 LASSERT(d->opd_obd);
268                 rc = class_process_proc_param(PARAM_OSC, lvars.obd_vars,
269                                               lcfg, d->opd_obd);
270                 if (rc > 0)
271                         rc = 0;
272                 if (rc == -ENOSYS) {
273                         /* class_process_proc_param() haven't found matching
274                          * parameter and returned ENOSYS so that layer(s)
275                          * below could use that. But OSP is the bottom, so
276                          * just ignore it */
277                         CERROR("%s: unknown param %s\n",
278                                (char *)lustre_cfg_string(lcfg, 0),
279                                (char *)lustre_cfg_string(lcfg, 1));
280                         rc = 0;
281                 }
282                 break;
283         default:
284                 CERROR("%s: unknown command %u\n",
285                        (char *)lustre_cfg_string(lcfg, 0), lcfg->lcfg_command);
286                 rc = 0;
287                 break;
288         }
289
290         RETURN(rc);
291 }
292
293 static int osp_recovery_complete(const struct lu_env *env,
294                                  struct lu_device *dev)
295 {
296         struct osp_device       *osp = lu2osp_dev(dev);
297         int                      rc = 0;
298
299         ENTRY;
300         osp->opd_recovery_completed = 1;
301         cfs_waitq_signal(&osp->opd_pre_waitq);
302         RETURN(rc);
303 }
304
305 const struct lu_device_operations osp_lu_ops = {
306         .ldo_object_alloc       = osp_object_alloc,
307         .ldo_process_config     = osp_process_config,
308         .ldo_recovery_complete  = osp_recovery_complete,
309 };
310
311 /**
312  * provides with statfs from corresponded OST
313  *
314  */
315 static int osp_statfs(const struct lu_env *env, struct dt_device *dev,
316                       struct obd_statfs *sfs)
317 {
318         struct osp_device *d = dt2osp_dev(dev);
319
320         ENTRY;
321
322         if (unlikely(d->opd_imp_active == 0))
323                 RETURN(-ENOTCONN);
324
325         /* return recently updated data */
326         *sfs = d->opd_statfs;
327
328         /*
329          * layer above osp (usually lod) can use ffree to estimate
330          * how many objects are available for immediate creation
331          */
332         cfs_spin_lock(&d->opd_pre_lock);
333         sfs->os_fprecreated = d->opd_pre_last_created - d->opd_pre_used_id;
334         sfs->os_fprecreated -= d->opd_pre_reserved;
335         cfs_spin_unlock(&d->opd_pre_lock);
336
337         LASSERT(sfs->os_fprecreated <= OST_MAX_PRECREATE);
338
339         CDEBUG(D_OTHER, "%s: "LPU64" blocks, "LPU64" free, "LPU64" avail, "
340                LPU64" files, "LPU64" free files\n", d->opd_obd->obd_name,
341                sfs->os_blocks, sfs->os_bfree, sfs->os_bavail,
342                sfs->os_files, sfs->os_ffree);
343         RETURN(0);
344 }
345
346 static int osp_sync(const struct lu_env *env, struct dt_device *dev)
347 {
348         ENTRY;
349
350         /*
351          * XXX: wake up sync thread, command it to start flushing asap?
352          */
353
354         RETURN(0);
355 }
356
357 const struct dt_device_operations osp_dt_ops = {
358         .dt_statfs      = osp_statfs,
359         .dt_sync        = osp_sync,
360 };
361
362 static int osp_connect_to_osd(const struct lu_env *env, struct osp_device *m,
363                               const char *nextdev)
364 {
365         struct obd_connect_data *data = NULL;
366         struct obd_device       *obd;
367         int                      rc;
368
369         ENTRY;
370
371         LASSERT(m->opd_storage_exp == NULL);
372
373         OBD_ALLOC_PTR(data);
374         if (data == NULL)
375                 RETURN(-ENOMEM);
376
377         obd = class_name2obd(nextdev);
378         if (obd == NULL) {
379                 CERROR("%s: can't locate next device: %s\n",
380                        m->opd_obd->obd_name, nextdev);
381                 GOTO(out, rc = -ENOTCONN);
382         }
383
384         rc = obd_connect(env, &m->opd_storage_exp, obd, &obd->obd_uuid, data,
385                          NULL);
386         if (rc) {
387                 CERROR("%s: cannot connect to next dev %s: rc = %d\n",
388                        m->opd_obd->obd_name, nextdev, rc);
389                 GOTO(out, rc);
390         }
391
392         m->opd_dt_dev.dd_lu_dev.ld_site =
393                 m->opd_storage_exp->exp_obd->obd_lu_dev->ld_site;
394         LASSERT(m->opd_dt_dev.dd_lu_dev.ld_site);
395         m->opd_storage = lu2dt_dev(m->opd_storage_exp->exp_obd->obd_lu_dev);
396
397 out:
398         OBD_FREE_PTR(data);
399         RETURN(rc);
400 }
401
402 static int osp_init0(const struct lu_env *env, struct osp_device *m,
403                      struct lu_device_type *ldt, struct lustre_cfg *cfg)
404 {
405         struct obd_device               *obd;
406         struct obd_import               *imp;
407         class_uuid_t                     uuid;
408         char                            *src, *ost, *mdt, *osdname = NULL;
409         int                              rc, idx;
410
411         ENTRY;
412
413         obd = class_name2obd(lustre_cfg_string(cfg, 0));
414         if (obd == NULL) {
415                 CERROR("Cannot find obd with name %s\n",
416                        lustre_cfg_string(cfg, 0));
417                 RETURN(-ENODEV);
418         }
419         m->opd_obd = obd;
420
421         /* There is no record in the MDT configuration for the local disk
422          * device, so we have to extract this from elsewhere in the profile.
423          * The only information we get at setup is from the OSC records:
424          * setup 0:{fsname}-OSTxxxx-osc[-MDTxxxx] 1:lustre-OST0000_UUID 2:NID
425          * Note that 1.8 generated configs are missing the -MDTxxxx part.
426          * We need to reconstruct the name of the underlying OSD from this:
427          * {fsname}-{svname}-osd, for example "lustre-MDT0000-osd".  We
428          * also need to determine the OST index from this - will be used
429          * to calculate the offset in shared lov_objids file later */
430
431         src = lustre_cfg_string(cfg, 0);
432         if (src == NULL)
433                 RETURN(-EINVAL);
434
435         ost = strstr(src, "-OST");
436         if (ost == NULL)
437                 RETURN(-EINVAL);
438
439         idx = simple_strtol(ost + 4, &mdt, 16);
440         if (mdt[0] != '-' || idx > INT_MAX || idx < 0) {
441                 CERROR("%s: invalid OST index in '%s'\n", obd->obd_name, src);
442                 GOTO(out_fini, rc = -EINVAL);
443         }
444         m->opd_index = idx;
445
446         idx = ost - src;
447         /* check the fsname length, and after this everything else will fit */
448         if (idx > MTI_NAME_MAXLEN) {
449                 CERROR("%s: fsname too long in '%s'\n", obd->obd_name, src);
450                 GOTO(out_fini, rc = -EINVAL);
451         }
452
453         OBD_ALLOC(osdname, MAX_OBD_NAME);
454         if (osdname == NULL)
455                 GOTO(out_fini, rc = -ENOMEM);
456
457         memcpy(osdname, src, idx); /* copy just the fsname part */
458         osdname[idx] = '\0';
459
460         mdt = strstr(mdt, "-MDT");
461         if (mdt == NULL) /* 1.8 configs don't have "-MDT0000" at the end */
462                 strcat(osdname, "-MDT0000");
463         else
464                 strcat(osdname, mdt);
465         strcat(osdname, "-osd");
466         CDEBUG(D_HA, "%s: connect to %s (%s)\n", obd->obd_name, osdname, src);
467
468         m->opd_dt_dev.dd_lu_dev.ld_ops = &osp_lu_ops;
469         m->opd_dt_dev.dd_ops = &osp_dt_ops;
470         obd->obd_lu_dev = &m->opd_dt_dev.dd_lu_dev;
471
472         rc = osp_connect_to_osd(env, m, osdname);
473         if (rc)
474                 GOTO(out_fini, rc);
475
476         rc = ptlrpcd_addref();
477         if (rc)
478                 GOTO(out_disconnect, rc);
479
480         rc = client_obd_setup(obd, cfg);
481         if (rc) {
482                 CERROR("%s: can't setup obd: %d\n", m->opd_obd->obd_name, rc);
483                 GOTO(out_ref, rc);
484         }
485
486         osp_lprocfs_init(m);
487
488         /*
489          * Initialize last id from the storage - will be used in orphan cleanup
490          */
491         rc = osp_last_used_init(env, m);
492         if (rc)
493                 GOTO(out_proc, rc);
494
495         /*
496          * Initialize precreation thread, it handles new connections as well
497          */
498         rc = osp_init_precreate(m);
499         if (rc)
500                 GOTO(out_last_used, rc);
501
502         /*
503          * Initialize synhronization mechanism taking care of propogating
504          * changes to OST in near transactional manner
505          */
506         rc = osp_sync_init(env, m);
507         if (rc)
508                 GOTO(out_precreat, rc);
509
510         /*
511          * Initiate connect to OST
512          */
513         ll_generate_random_uuid(uuid);
514         class_uuid_unparse(uuid, &m->opd_cluuid);
515
516         imp = obd->u.cli.cl_import;
517
518         rc = ptlrpc_init_import(imp);
519         if (rc)
520                 GOTO(out, rc);
521         if (osdname)
522                 OBD_FREE(osdname, MAX_OBD_NAME);
523         RETURN(0);
524
525 out:
526         /* stop sync thread */
527         osp_sync_fini(m);
528 out_precreat:
529         /* stop precreate thread */
530         osp_precreate_fini(m);
531 out_last_used:
532         osp_last_used_fini(env, m);
533 out_proc:
534         ptlrpc_lprocfs_unregister_obd(obd);
535         lprocfs_obd_cleanup(obd);
536         class_destroy_import(obd->u.cli.cl_import);
537         client_obd_cleanup(obd);
538 out_ref:
539         ptlrpcd_decref();
540 out_disconnect:
541         obd_disconnect(m->opd_storage_exp);
542 out_fini:
543         if (osdname)
544                 OBD_FREE(osdname, MAX_OBD_NAME);
545         RETURN(rc);
546 }
547
548 static struct lu_device *osp_device_free(const struct lu_env *env,
549                                          struct lu_device *lu)
550 {
551         struct osp_device *m = lu2osp_dev(lu);
552
553         ENTRY;
554
555         if (cfs_atomic_read(&lu->ld_ref) && lu->ld_site) {
556                 LIBCFS_DEBUG_MSG_DATA_DECL(msgdata, D_ERROR, NULL);
557                 lu_site_print(env, lu->ld_site, &msgdata, lu_cdebug_printer);
558         }
559         dt_device_fini(&m->opd_dt_dev);
560         OBD_FREE_PTR(m);
561         RETURN(NULL);
562 }
563
564 static struct lu_device *osp_device_alloc(const struct lu_env *env,
565                                           struct lu_device_type *t,
566                                           struct lustre_cfg *lcfg)
567 {
568         struct osp_device *m;
569         struct lu_device  *l;
570
571         OBD_ALLOC_PTR(m);
572         if (m == NULL) {
573                 l = ERR_PTR(-ENOMEM);
574         } else {
575                 int rc;
576
577                 l = osp2lu_dev(m);
578                 dt_device_init(&m->opd_dt_dev, t);
579                 if (is_osp_on_ost(lustre_cfg_string(lcfg, 0)))
580                         rc = osp_init_for_ost(env, m, t, lcfg);
581                 else
582                         rc = osp_init0(env, m, t, lcfg);
583                 if (rc != 0) {
584                         osp_device_free(env, l);
585                         l = ERR_PTR(rc);
586                 }
587         }
588         return l;
589 }
590
591 static struct lu_device *osp_device_fini(const struct lu_env *env,
592                                          struct lu_device *d)
593 {
594         struct osp_device *m = lu2osp_dev(d);
595         struct obd_import *imp;
596         int                rc;
597
598         ENTRY;
599
600         if (m->opd_storage_exp)
601                 obd_disconnect(m->opd_storage_exp);
602
603         if (is_osp_on_ost(m->opd_obd->obd_name))
604                 osp_fini_for_ost(m);
605
606         imp = m->opd_obd->u.cli.cl_import;
607
608         if (imp->imp_rq_pool) {
609                 ptlrpc_free_rq_pool(imp->imp_rq_pool);
610                 imp->imp_rq_pool = NULL;
611         }
612
613         obd_cleanup_client_import(m->opd_obd);
614
615         if (m->opd_symlink)
616                 lprocfs_remove(&m->opd_symlink);
617
618         LASSERT(m->opd_obd);
619         ptlrpc_lprocfs_unregister_obd(m->opd_obd);
620         lprocfs_obd_cleanup(m->opd_obd);
621
622         rc = client_obd_cleanup(m->opd_obd);
623         LASSERTF(rc == 0, "error %d\n", rc);
624
625         ptlrpcd_decref();
626
627         RETURN(NULL);
628 }
629
630 static int osp_reconnect(const struct lu_env *env,
631                          struct obd_export *exp, struct obd_device *obd,
632                          struct obd_uuid *cluuid,
633                          struct obd_connect_data *data,
634                          void *localdata)
635 {
636         return 0;
637 }
638
639 /*
640  * we use exports to track all LOD users
641  */
642 static int osp_obd_connect(const struct lu_env *env, struct obd_export **exp,
643                            struct obd_device *obd, struct obd_uuid *cluuid,
644                            struct obd_connect_data *data, void *localdata)
645 {
646         struct osp_device       *osp = lu2osp_dev(obd->obd_lu_dev);
647         struct obd_connect_data *ocd;
648         struct obd_import       *imp;
649         struct lustre_handle     conn;
650         int                      rc;
651
652         ENTRY;
653
654         CDEBUG(D_CONFIG, "connect #%d\n", osp->opd_connects);
655
656         rc = class_connect(&conn, obd, cluuid);
657         if (rc)
658                 RETURN(rc);
659
660         *exp = class_conn2export(&conn);
661         if (is_osp_on_ost(obd->obd_name))
662                 osp->opd_exp = *exp;
663
664         /* Why should there ever be more than 1 connect? */
665         osp->opd_connects++;
666         LASSERT(osp->opd_connects == 1);
667
668         imp = osp->opd_obd->u.cli.cl_import;
669         imp->imp_dlm_handle = conn;
670
671         ocd = &imp->imp_connect_data;
672         ocd->ocd_connect_flags = OBD_CONNECT_AT |
673                                  OBD_CONNECT_FULL20 |
674                                  OBD_CONNECT_INDEX |
675 #ifdef HAVE_LRU_RESIZE_SUPPORT
676                                  OBD_CONNECT_LRU_RESIZE |
677 #endif
678                                  OBD_CONNECT_MDS |
679                                  OBD_CONNECT_OSS_CAPA |
680                                  OBD_CONNECT_REQPORTAL |
681                                  OBD_CONNECT_SKIP_ORPHAN |
682                                  OBD_CONNECT_VERSION |
683                                  OBD_CONNECT_FID;
684
685         if (is_osp_on_ost(osp->opd_obd->obd_name))
686                 ocd->ocd_connect_flags |= OBD_CONNECT_LIGHTWEIGHT;
687
688         ocd->ocd_version = LUSTRE_VERSION_CODE;
689         LASSERT(data->ocd_connect_flags & OBD_CONNECT_INDEX);
690         ocd->ocd_index = data->ocd_index;
691         imp->imp_connect_flags_orig = ocd->ocd_connect_flags;
692
693         rc = ptlrpc_connect_import(imp);
694         if (rc) {
695                 CERROR("%s: can't connect obd: rc = %d\n", obd->obd_name, rc);
696                 GOTO(out, rc);
697         }
698
699         ptlrpc_pinger_add_import(imp);
700
701 out:
702         RETURN(rc);
703 }
704
705 /*
706  * once last export (we don't count self-export) disappeared
707  * osp can be released
708  */
709 static int osp_obd_disconnect(struct obd_export *exp)
710 {
711         struct obd_device *obd = exp->exp_obd;
712         struct osp_device *osp = lu2osp_dev(obd->obd_lu_dev);
713         int                rc;
714         ENTRY;
715
716         /* Only disconnect the underlying layers on the final disconnect. */
717         LASSERT(osp->opd_connects == 1);
718         osp->opd_connects--;
719
720         rc = class_disconnect(exp);
721         if (rc) {
722                 CERROR("%s: class disconnect error: rc = %d\n",
723                        obd->obd_name, rc);
724                 RETURN(rc);
725         }
726
727         /* destroy the device */
728         if (!is_osp_on_ost(obd->obd_name))
729                 class_manual_cleanup(obd);
730
731         RETURN(rc);
732 }
733
734 /*
735  * lprocfs helpers still use OBD API, let's keep obd_statfs() support
736  */
737 static int osp_obd_statfs(const struct lu_env *env, struct obd_export *exp,
738                           struct obd_statfs *osfs, __u64 max_age, __u32 flags)
739 {
740         struct obd_statfs       *msfs;
741         struct ptlrpc_request   *req;
742         struct obd_import       *imp = NULL;
743         int                      rc;
744
745         ENTRY;
746
747         /* Since the request might also come from lprocfs, so we need
748          * sync this with client_disconnect_export Bug15684 */
749         cfs_down_read(&exp->exp_obd->u.cli.cl_sem);
750         if (exp->exp_obd->u.cli.cl_import)
751                 imp = class_import_get(exp->exp_obd->u.cli.cl_import);
752         cfs_up_read(&exp->exp_obd->u.cli.cl_sem);
753         if (!imp)
754                 RETURN(-ENODEV);
755
756         /* We could possibly pass max_age in the request (as an absolute
757          * timestamp or a "seconds.usec ago") so the target can avoid doing
758          * extra calls into the filesystem if that isn't necessary (e.g.
759          * during mount that would help a bit).  Having relative timestamps
760          * is not so great if request processing is slow, while absolute
761          * timestamps are not ideal because they need time synchronization. */
762         req = ptlrpc_request_alloc(imp, &RQF_OST_STATFS);
763
764         class_import_put(imp);
765
766         if (req == NULL)
767                 RETURN(-ENOMEM);
768
769         rc = ptlrpc_request_pack(req, LUSTRE_OST_VERSION, OST_STATFS);
770         if (rc) {
771                 ptlrpc_request_free(req);
772                 RETURN(rc);
773         }
774         ptlrpc_request_set_replen(req);
775         req->rq_request_portal = OST_CREATE_PORTAL;
776         ptlrpc_at_set_req_timeout(req);
777
778         if (flags & OBD_STATFS_NODELAY) {
779                 /* procfs requests not want stat in wait for avoid deadlock */
780                 req->rq_no_resend = 1;
781                 req->rq_no_delay = 1;
782         }
783
784         rc = ptlrpc_queue_wait(req);
785         if (rc)
786                 GOTO(out, rc);
787
788         msfs = req_capsule_server_get(&req->rq_pill, &RMF_OBD_STATFS);
789         if (msfs == NULL)
790                 GOTO(out, rc = -EPROTO);
791
792         *osfs = *msfs;
793
794         EXIT;
795 out:
796         ptlrpc_req_finished(req);
797         return rc;
798 }
799
800 static int osp_import_event(struct obd_device *obd, struct obd_import *imp,
801                             enum obd_import_event event)
802 {
803         struct osp_device *d = lu2osp_dev(obd->obd_lu_dev);
804
805         switch (event) {
806         case IMP_EVENT_DISCON:
807                 d->opd_got_disconnected = 1;
808                 d->opd_imp_connected = 0;
809                 if (is_osp_on_ost(d->opd_obd->obd_name))
810                         break;
811                 osp_pre_update_status(d, -ENODEV);
812                 cfs_waitq_signal(&d->opd_pre_waitq);
813                 CDEBUG(D_HA, "got disconnected\n");
814                 break;
815         case IMP_EVENT_INACTIVE:
816                 d->opd_imp_active = 0;
817                 if (is_osp_on_ost(d->opd_obd->obd_name))
818                         break;
819                 osp_pre_update_status(d, -ENODEV);
820                 cfs_waitq_signal(&d->opd_pre_waitq);
821                 CDEBUG(D_HA, "got inactive\n");
822                 break;
823         case IMP_EVENT_ACTIVE:
824                 d->opd_imp_active = 1;
825                 if (d->opd_got_disconnected)
826                         d->opd_new_connection = 1;
827                 d->opd_imp_connected = 1;
828                 d->opd_imp_seen_connected = 1;
829                 if (is_osp_on_ost(d->opd_obd->obd_name))
830                         break;
831                 cfs_waitq_signal(&d->opd_pre_waitq);
832                 __osp_sync_check_for_work(d);
833                 CDEBUG(D_HA, "got connected\n");
834                 break;
835         case IMP_EVENT_INVALIDATE:
836                 if (obd->obd_namespace == NULL)
837                         break;
838                 ldlm_namespace_cleanup(obd->obd_namespace, LDLM_FL_LOCAL_ONLY);
839                 break;
840         case IMP_EVENT_OCD:
841                 break;
842         default:
843                 CERROR("%s: unsupported import event: %#x\n",
844                        obd->obd_name, event);
845         }
846         return 0;
847 }
848
849 static int osp_iocontrol(unsigned int cmd, struct obd_export *exp, int len,
850                          void *karg, void *uarg)
851 {
852         struct obd_device       *obd = exp->exp_obd;
853         struct osp_device       *d;
854         struct obd_ioctl_data   *data = karg;
855         int                      rc = 0;
856
857         ENTRY;
858
859         LASSERT(obd->obd_lu_dev);
860         d = lu2osp_dev(obd->obd_lu_dev);
861         LASSERT(d->opd_dt_dev.dd_ops == &osp_dt_ops);
862
863         if (!cfs_try_module_get(THIS_MODULE)) {
864                 CERROR("%s: can't get module. Is it alive?", obd->obd_name);
865                 return -EINVAL;
866         }
867
868         switch (cmd) {
869         case OBD_IOC_CLIENT_RECOVER:
870                 rc = ptlrpc_recover_import(obd->u.cli.cl_import,
871                                            data->ioc_inlbuf1, 0);
872                 if (rc > 0)
873                         rc = 0;
874                 break;
875         case IOC_OSC_SET_ACTIVE:
876                 rc = ptlrpc_set_import_active(obd->u.cli.cl_import,
877                                               data->ioc_offset);
878                 break;
879         case OBD_IOC_PING_TARGET:
880                 rc = ptlrpc_obd_ping(obd);
881                 break;
882         default:
883                 CERROR("%s: unrecognized ioctl %#x by %s\n", obd->obd_name,
884                        cmd, cfs_curproc_comm());
885                 rc = -ENOTTY;
886         }
887         cfs_module_put(THIS_MODULE);
888         return rc;
889 }
890
891 static int osp_obd_health_check(const struct lu_env *env,
892                                 struct obd_device *obd)
893 {
894         struct osp_device *d = lu2osp_dev(obd->obd_lu_dev);
895
896         ENTRY;
897
898         /*
899          * 1.8/2.0 behaviour is that OST being connected once at least
900          * is considired "healthy". and one "healty" OST is enough to
901          * allow lustre clients to connect to MDS
902          */
903         LASSERT(d);
904         RETURN(!d->opd_imp_seen_connected);
905 }
906
907 /* context key constructor/destructor: mdt_key_init, mdt_key_fini */
908 LU_KEY_INIT_FINI(osp, struct osp_thread_info);
909 static void osp_key_exit(const struct lu_context *ctx,
910                          struct lu_context_key *key, void *data)
911 {
912         struct osp_thread_info *info = data;
913
914         info->osi_attr.la_valid = 0;
915 }
916
917 struct lu_context_key osp_thread_key = {
918         .lct_tags = LCT_MD_THREAD,
919         .lct_init = osp_key_init,
920         .lct_fini = osp_key_fini,
921         .lct_exit = osp_key_exit
922 };
923
924 /* context key constructor/destructor: mdt_txn_key_init, mdt_txn_key_fini */
925 LU_KEY_INIT_FINI(osp_txn, struct osp_txn_info);
926
927 struct lu_context_key osp_txn_key = {
928         .lct_tags = LCT_OSP_THREAD,
929         .lct_init = osp_txn_key_init,
930         .lct_fini = osp_txn_key_fini
931 };
932 LU_TYPE_INIT_FINI(osp, &osp_thread_key, &osp_txn_key);
933
934 static struct lu_device_type_operations osp_device_type_ops = {
935         .ldto_init           = osp_type_init,
936         .ldto_fini           = osp_type_fini,
937
938         .ldto_start          = osp_type_start,
939         .ldto_stop           = osp_type_stop,
940
941         .ldto_device_alloc   = osp_device_alloc,
942         .ldto_device_free    = osp_device_free,
943
944         .ldto_device_fini    = osp_device_fini
945 };
946
947 static struct lu_device_type osp_device_type = {
948         .ldt_tags     = LU_DEVICE_DT,
949         .ldt_name     = LUSTRE_OSP_NAME,
950         .ldt_ops      = &osp_device_type_ops,
951         .ldt_ctx_tags = LCT_MD_THREAD
952 };
953
954 static struct obd_ops osp_obd_device_ops = {
955         .o_owner        = THIS_MODULE,
956         .o_add_conn     = client_import_add_conn,
957         .o_del_conn     = client_import_del_conn,
958         .o_reconnect    = osp_reconnect,
959         .o_connect      = osp_obd_connect,
960         .o_disconnect   = osp_obd_disconnect,
961         .o_health_check = osp_obd_health_check,
962         .o_import_event = osp_import_event,
963         .o_iocontrol    = osp_iocontrol,
964         .o_statfs       = osp_obd_statfs,
965 };
966
967 static int __init osp_mod_init(void)
968 {
969         struct lprocfs_static_vars       lvars;
970         cfs_proc_dir_entry_t            *osc_proc_dir;
971         int                              rc;
972
973         rc = lu_kmem_init(osp_caches);
974         if (rc)
975                 return rc;
976
977         lprocfs_osp_init_vars(&lvars);
978
979         rc = class_register_type(&osp_obd_device_ops, NULL, lvars.module_vars,
980                                  LUSTRE_OSP_NAME, &osp_device_type);
981
982         /* create "osc" entry in procfs for compatibility purposes */
983         if (rc != 0) {
984                 lu_kmem_fini(osp_caches);
985                 return rc;
986         }
987
988         osc_proc_dir = lprocfs_srch(proc_lustre_root, "osc");
989         if (osc_proc_dir == NULL) {
990                 osc_proc_dir = lprocfs_register("osc", proc_lustre_root, NULL,
991                                                 NULL);
992                 if (IS_ERR(osc_proc_dir))
993                         CERROR("osp: can't create compat entry \"osc\": %d\n",
994                                (int) PTR_ERR(osc_proc_dir));
995         }
996         return rc;
997 }
998
999 static void __exit osp_mod_exit(void)
1000 {
1001         lprocfs_try_remove_proc_entry("osc", proc_lustre_root);
1002
1003         class_unregister_type(LUSTRE_OSP_NAME);
1004         lu_kmem_fini(osp_caches);
1005 }
1006
1007 MODULE_AUTHOR("Intel, Inc. <http://www.intel.com/>");
1008 MODULE_DESCRIPTION("Lustre OST Proxy Device ("LUSTRE_OSP_NAME")");
1009 MODULE_LICENSE("GPL");
1010
1011 cfs_module(osp, LUSTRE_VERSION_STRING, osp_mod_init, osp_mod_exit);