Whamcloud - gitweb
LU-3319 procfs: move lod proc handling to seq_files
[fs/lustre-release.git] / lustre / lod / lod_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,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License version 2 for more details.  A copy is
14  * included in the COPYING file that accompanied this code.
15
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright  2009 Sun Microsystems, Inc. All rights reserved
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2012, 2013, Intel Corporation.
27  *
28  */
29 /*
30  * This file is part of Lustre, http://www.lustre.org/
31  * Lustre is a trademark of Sun Microsystems, Inc.
32  *
33  * lustre/lod/lod_dev.c
34  *
35  * Lustre Logical Object Device
36  *
37  * Author: Alex Zhuravlev <alexey.zhuravlev@intel.com>
38  * Author: Mikhail Pershin <mike.pershin@intel.com>
39  */
40
41 #define DEBUG_SUBSYSTEM S_MDS
42
43 #include <obd_class.h>
44 #include <md_object.h>
45 #include <lustre_fid.h>
46 #include <lustre_param.h>
47 #include <lustre_update.h>
48
49 #include "lod_internal.h"
50
51 /**
52  * Lookup MDT/OST index \a tgt by FID \a fid.
53  *
54  * \param lod LOD to be lookup at.
55  * \param fid FID of object to find MDT/OST.
56  * \param tgt MDT/OST index to return.
57  * \param type indidcate the FID is on MDS or OST.
58  **/
59 int lod_fld_lookup(const struct lu_env *env, struct lod_device *lod,
60                    const struct lu_fid *fid, __u32 *tgt, int *type)
61 {
62         struct lu_seq_range     range = { 0 };
63         struct lu_server_fld    *server_fld;
64         int rc = 0;
65         ENTRY;
66
67         LASSERTF(fid_is_sane(fid), "Invalid FID "DFID"\n", PFID(fid));
68
69         if (fid_is_idif(fid)) {
70                 *tgt = fid_idif_ost_idx(fid);
71                 *type = LU_SEQ_RANGE_OST;
72                 RETURN(rc);
73         }
74
75         if (!lod->lod_initialized || (!fid_seq_in_fldb(fid_seq(fid)))) {
76                 LASSERT(lu_site2seq(lod2lu_dev(lod)->ld_site) != NULL);
77
78                 *tgt = lu_site2seq(lod2lu_dev(lod)->ld_site)->ss_node_id;
79                 *type = LU_SEQ_RANGE_MDT;
80                 RETURN(rc);
81         }
82
83         server_fld = lu_site2seq(lod2lu_dev(lod)->ld_site)->ss_server_fld;
84         fld_range_set_type(&range, *type);
85         rc = fld_server_lookup(env, server_fld, fid_seq(fid), &range);
86         if (rc)
87                 RETURN(rc);
88
89         *tgt = range.lsr_index;
90         *type = range.lsr_flags;
91
92         CDEBUG(D_INFO, "LOD: got tgt %x for sequence: "
93                LPX64"\n", *tgt, fid_seq(fid));
94
95         RETURN(rc);
96 }
97
98 extern struct lu_object_operations lod_lu_obj_ops;
99 extern struct dt_object_operations lod_obj_ops;
100
101 /* Slab for OSD object allocation */
102 struct kmem_cache *lod_object_kmem;
103
104 static struct lu_kmem_descr lod_caches[] = {
105         {
106                 .ckd_cache = &lod_object_kmem,
107                 .ckd_name  = "lod_obj",
108                 .ckd_size  = sizeof(struct lod_object)
109         },
110         {
111                 .ckd_cache = NULL
112         }
113 };
114
115 static struct lu_device *lod_device_fini(const struct lu_env *env,
116                                          struct lu_device *d);
117
118 struct lu_object *lod_object_alloc(const struct lu_env *env,
119                                    const struct lu_object_header *hdr,
120                                    struct lu_device *dev)
121 {
122         struct lod_object       *lod_obj;
123         struct lu_object        *lu_obj;
124         ENTRY;
125
126         OBD_SLAB_ALLOC_PTR_GFP(lod_obj, lod_object_kmem, GFP_NOFS);
127         if (lod_obj == NULL)
128                 RETURN(ERR_PTR(-ENOMEM));
129
130         lu_obj = lod2lu_obj(lod_obj);
131         dt_object_init(&lod_obj->ldo_obj, NULL, dev);
132         lod_obj->ldo_obj.do_ops = &lod_obj_ops;
133         lu_obj->lo_ops = &lod_lu_obj_ops;
134
135         RETURN(lu_obj);
136 }
137
138 static int lod_cleanup_desc_tgts(const struct lu_env *env,
139                                  struct lod_device *lod,
140                                  struct lod_tgt_descs *ltd,
141                                  struct lustre_cfg *lcfg)
142 {
143         struct lu_device  *next;
144         int rc = 0;
145         int i;
146
147         lod_getref(ltd);
148         if (ltd->ltd_tgts_size <= 0) {
149                 lod_putref(lod, ltd);
150                 return 0;
151         }
152         cfs_foreach_bit(ltd->ltd_tgt_bitmap, i) {
153                 struct lod_tgt_desc *tgt;
154                 int rc1;
155
156                 tgt = LTD_TGT(ltd, i);
157                 LASSERT(tgt && tgt->ltd_tgt);
158                 next = &tgt->ltd_tgt->dd_lu_dev;
159                 rc1 = next->ld_ops->ldo_process_config(env, next, lcfg);
160                 if (rc1) {
161                         CERROR("%s: error cleaning up LOD index %u: cmd %#x"
162                                ": rc = %d\n", lod2obd(lod)->obd_name, i,
163                                lcfg->lcfg_command, rc1);
164                         rc = rc1;
165                 }
166         }
167         lod_putref(lod, ltd);
168         return rc;
169 }
170
171 static int lodname2mdt_index(char *lodname, long *index)
172 {
173         char *ptr, *tmp;
174
175         /* The lodname suppose to be fsname-MDTxxxx-mdtlov */
176         ptr = strrchr(lodname, '-');
177         if (ptr == NULL) {
178                 CERROR("invalid MDT index in '%s'\n", lodname);
179                 return -EINVAL;
180         }
181
182         if (strncmp(ptr, "-mdtlov", 7) != 0) {
183                 CERROR("invalid MDT index in '%s'\n", lodname);
184                 return -EINVAL;
185         }
186
187         if ((unsigned long)ptr - (unsigned long)lodname <= 8) {
188                 CERROR("invalid MDT index in '%s'\n", lodname);
189                 return -EINVAL;
190         }
191
192         if (strncmp(ptr - 8, "-MDT", 4) != 0) {
193                 CERROR("invalid MDT index in '%s'\n", lodname);
194                 return -EINVAL;
195         }
196
197         *index = simple_strtol(ptr - 4, &tmp, 16);
198         if (*tmp != '-' || *index > INT_MAX || *index < 0) {
199                 CERROR("invalid MDT index in '%s'\n", lodname);
200                 return -EINVAL;
201         }
202         return 0;
203 }
204
205 /**
206  * Procss config log on LOD
207  * \param env environment info
208  * \param dev lod device
209  * \param lcfg config log
210  *
211  * Add osc config log,
212  * marker  20 (flags=0x01, v2.2.49.56) lustre-OST0001  'add osc'
213  * add_uuid  nid=192.168.122.162@tcp(0x20000c0a87aa2)  0:  1:nidxxx
214  * attach    0:lustre-OST0001-osc-MDT0001  1:osc  2:lustre-MDT0001-mdtlov_UUID
215  * setup     0:lustre-OST0001-osc-MDT0001  1:lustre-OST0001_UUID  2:nid
216  * lov_modify_tgts add 0:lustre-MDT0001-mdtlov  1:lustre-OST0001_UUID  2:1  3:1
217  * marker  20 (flags=0x02, v2.2.49.56) lustre-OST0001  'add osc'
218  *
219  * Add mdc config log
220  * marker  10 (flags=0x01, v2.2.49.56) lustre-MDT0000  'add osp'
221  * add_uuid  nid=192.168.122.162@tcp(0x20000c0a87aa2)  0:  1:nid
222  * attach 0:lustre-MDT0000-osp-MDT0001  1:osp  2:lustre-MDT0001-mdtlov_UUID
223  * setup     0:lustre-MDT0000-osp-MDT0001  1:lustre-MDT0000_UUID  2:nid
224  * modify_mdc_tgts add 0:lustre-MDT0001  1:lustre-MDT0000_UUID  2:0  3:1
225  * marker  10 (flags=0x02, v2.2.49.56) lustre-MDT0000_UUID  'add osp'
226  **/
227 static int lod_process_config(const struct lu_env *env,
228                               struct lu_device *dev,
229                               struct lustre_cfg *lcfg)
230 {
231         struct lod_device *lod = lu2lod_dev(dev);
232         struct lu_device  *next = &lod->lod_child->dd_lu_dev;
233         char              *arg1;
234         int                rc = 0;
235         ENTRY;
236
237         switch(lcfg->lcfg_command) {
238         case LCFG_LOV_DEL_OBD:
239         case LCFG_LOV_ADD_INA:
240         case LCFG_LOV_ADD_OBD:
241         case LCFG_ADD_MDC: {
242                 __u32 index;
243                 __u32 mdt_index;
244                 int gen;
245                 /* lov_modify_tgts add  0:lov_mdsA  1:osp  2:0  3:1
246                  * modify_mdc_tgts add  0:lustre-MDT0001
247                  *                    1:lustre-MDT0001-mdc0002
248                  *                    2:2  3:1*/
249                 arg1 = lustre_cfg_string(lcfg, 1);
250
251                 if (sscanf(lustre_cfg_buf(lcfg, 2), "%d", &index) != 1)
252                         GOTO(out, rc = -EINVAL);
253                 if (sscanf(lustre_cfg_buf(lcfg, 3), "%d", &gen) != 1)
254                         GOTO(out, rc = -EINVAL);
255
256                 if (lcfg->lcfg_command == LCFG_LOV_ADD_OBD) {
257                         char *mdt;
258                         mdt = strstr(lustre_cfg_string(lcfg, 0), "-MDT");
259                         /* 1.8 configs don't have "-MDT0000" at the end */
260                         if (mdt == NULL) {
261                                 mdt_index = 0;
262                         } else {
263                                 long long_index;
264                                 rc = lodname2mdt_index(
265                                         lustre_cfg_string(lcfg, 0),
266                                         &long_index);
267                                 if (rc != 0)
268                                         GOTO(out, rc);
269                                 mdt_index = long_index;
270                         }
271                         rc = lod_add_device(env, lod, arg1, index, gen,
272                                             mdt_index, LUSTRE_OSC_NAME, 1);
273                 } else if (lcfg->lcfg_command == LCFG_ADD_MDC) {
274                         mdt_index = index;
275                         rc = lod_add_device(env, lod, arg1, index, gen,
276                                             mdt_index, LUSTRE_MDC_NAME, 1);
277                 } else if (lcfg->lcfg_command == LCFG_LOV_ADD_INA) {
278                         /*FIXME: Add mdt_index for LCFG_LOV_ADD_INA*/
279                         mdt_index = 0;
280                         rc = lod_add_device(env, lod, arg1, index, gen,
281                                             mdt_index, LUSTRE_OSC_NAME, 0);
282                 } else {
283                         rc = lod_del_device(env, lod,
284                                             &lod->lod_ost_descs,
285                                             arg1, index, gen, true);
286                 }
287
288                 break;
289         }
290
291         case LCFG_PARAM: {
292                 struct obd_device *obd = lod2obd(lod);
293
294                 rc = class_process_proc_seq_param(PARAM_LOV, obd->obd_vars,
295                                                   lcfg, obd);
296                 if (rc > 0)
297                         rc = 0;
298                 GOTO(out, rc);
299         }
300         case LCFG_CLEANUP:
301         case LCFG_PRE_CLEANUP: {
302                 lu_dev_del_linkage(dev->ld_site, dev);
303                 lod_cleanup_desc_tgts(env, lod, &lod->lod_mdt_descs, lcfg);
304                 lod_cleanup_desc_tgts(env, lod, &lod->lod_ost_descs, lcfg);
305                 if (lcfg->lcfg_command == LCFG_PRE_CLEANUP)
306                         break;
307                 /*
308                  * do cleanup on underlying storage only when
309                  * all OSPs are cleaned up, as they use that OSD as well
310                  */
311                 next = &lod->lod_child->dd_lu_dev;
312                 rc = next->ld_ops->ldo_process_config(env, next, lcfg);
313                 if (rc)
314                         CERROR("%s: can't process %u: %d\n",
315                                lod2obd(lod)->obd_name, lcfg->lcfg_command, rc);
316
317                 rc = obd_disconnect(lod->lod_child_exp);
318                 if (rc)
319                         CERROR("error in disconnect from storage: %d\n", rc);
320                 break;
321         }
322         default:
323                CERROR("%s: unknown command %u\n", lod2obd(lod)->obd_name,
324                       lcfg->lcfg_command);
325                rc = -EINVAL;
326                break;
327         }
328
329 out:
330         RETURN(rc);
331 }
332
333 static int lod_recovery_complete(const struct lu_env *env,
334                                  struct lu_device *dev)
335 {
336         struct lod_device   *lod = lu2lod_dev(dev);
337         struct lu_device    *next = &lod->lod_child->dd_lu_dev;
338         int                  i, rc;
339         ENTRY;
340
341         LASSERT(lod->lod_recovery_completed == 0);
342         lod->lod_recovery_completed = 1;
343
344         rc = next->ld_ops->ldo_recovery_complete(env, next);
345
346         lod_getref(&lod->lod_ost_descs);
347         if (lod->lod_osts_size > 0) {
348                 cfs_foreach_bit(lod->lod_ost_bitmap, i) {
349                         struct lod_tgt_desc *tgt;
350                         tgt = OST_TGT(lod, i);
351                         LASSERT(tgt && tgt->ltd_tgt);
352                         next = &tgt->ltd_ost->dd_lu_dev;
353                         rc = next->ld_ops->ldo_recovery_complete(env, next);
354                         if (rc)
355                                 CERROR("%s: can't complete recovery on #%d:"
356                                         "%d\n", lod2obd(lod)->obd_name, i, rc);
357                 }
358         }
359         lod_putref(lod, &lod->lod_ost_descs);
360         RETURN(rc);
361 }
362
363 static int lod_prepare(const struct lu_env *env, struct lu_device *pdev,
364                        struct lu_device *cdev)
365 {
366         struct lod_device   *lod = lu2lod_dev(cdev);
367         struct lu_device    *next = &lod->lod_child->dd_lu_dev;
368         int                  rc;
369         ENTRY;
370
371         rc = next->ld_ops->ldo_prepare(env, pdev, next);
372         if (rc != 0) {
373                 CERROR("%s: prepare bottom error: rc = %d\n",
374                        lod2obd(lod)->obd_name, rc);
375                 RETURN(rc);
376         }
377
378         lod->lod_initialized = 1;
379
380         RETURN(rc);
381 }
382
383 const struct lu_device_operations lod_lu_ops = {
384         .ldo_object_alloc       = lod_object_alloc,
385         .ldo_process_config     = lod_process_config,
386         .ldo_recovery_complete  = lod_recovery_complete,
387         .ldo_prepare            = lod_prepare,
388 };
389
390 static int lod_root_get(const struct lu_env *env,
391                         struct dt_device *dev, struct lu_fid *f)
392 {
393         return dt_root_get(env, dt2lod_dev(dev)->lod_child, f);
394 }
395
396 static int lod_statfs(const struct lu_env *env,
397                       struct dt_device *dev, struct obd_statfs *sfs)
398 {
399         return dt_statfs(env, dt2lod_dev(dev)->lod_child, sfs);
400 }
401
402 static struct thandle *lod_trans_create(const struct lu_env *env,
403                                         struct dt_device *dev)
404 {
405         struct thandle *th;
406
407         th = dt_trans_create(env, dt2lod_dev(dev)->lod_child);
408         if (IS_ERR(th))
409                 return th;
410
411         return th;
412 }
413
414 static int lod_trans_start(const struct lu_env *env, struct dt_device *dev,
415                            struct thandle *th)
416 {
417         struct lod_device *lod = dt2lod_dev((struct dt_device *) dev);
418         int rc = 0;
419
420         if (unlikely(th->th_update != NULL)) {
421                 struct thandle_update *tu = th->th_update;
422                 struct dt_update_request *update;
423
424                 list_for_each_entry(update, &tu->tu_remote_update_list,
425                                     dur_list) {
426                         LASSERT(update->dur_dt != NULL);
427                         rc = dt_trans_start(env, update->dur_dt, th);
428                         if (rc != 0)
429                                 return rc;
430                 }
431         }
432         return dt_trans_start(env, lod->lod_child, th);
433 }
434
435 static int lod_trans_stop(const struct lu_env *env, struct dt_device *dt,
436                           struct thandle *th)
437 {
438         struct thandle_update           *tu = th->th_update;
439         struct dt_update_request        *update;
440         struct dt_update_request        *tmp;
441         int                             rc2 = 0;
442         int                             rc;
443         ENTRY;
444
445         rc = dt_trans_stop(env, th->th_dev, th);
446         if (likely(tu == NULL))
447                 RETURN(rc);
448
449         list_for_each_entry_safe(update, tmp,
450                                  &tu->tu_remote_update_list,
451                                  dur_list) {
452                 /* update will be freed inside dt_trans_stop */
453                 rc2 = dt_trans_stop(env, update->dur_dt, th);
454                 if (unlikely(rc2 != 0 && rc == 0))
455                         rc = rc2;
456         }
457
458         RETURN(rc);
459 }
460
461 static void lod_conf_get(const struct lu_env *env,
462                          const struct dt_device *dev,
463                          struct dt_device_param *param)
464 {
465         dt_conf_get(env, dt2lod_dev((struct dt_device *)dev)->lod_child, param);
466 }
467
468 static int lod_sync(const struct lu_env *env, struct dt_device *dev)
469 {
470         struct lod_device   *lod = dt2lod_dev(dev);
471         struct lod_ost_desc *ost;
472         int                  rc = 0, i;
473         ENTRY;
474
475         lod_getref(&lod->lod_ost_descs);
476         lod_foreach_ost(lod, i) {
477                 ost = OST_TGT(lod, i);
478                 LASSERT(ost && ost->ltd_ost);
479                 rc = dt_sync(env, ost->ltd_ost);
480                 if (rc) {
481                         CERROR("%s: can't sync %u: %d\n",
482                                lod2obd(lod)->obd_name, i, rc);
483                         break;
484                 }
485         }
486         lod_putref(lod, &lod->lod_ost_descs);
487         if (rc == 0)
488                 rc = dt_sync(env, lod->lod_child);
489
490         RETURN(rc);
491 }
492
493 static int lod_ro(const struct lu_env *env, struct dt_device *dev)
494 {
495         return dt_ro(env, dt2lod_dev(dev)->lod_child);
496 }
497
498 static int lod_commit_async(const struct lu_env *env, struct dt_device *dev)
499 {
500         return dt_commit_async(env, dt2lod_dev(dev)->lod_child);
501 }
502
503 static int lod_init_capa_ctxt(const struct lu_env *env, struct dt_device *dev,
504                               int mode, unsigned long timeout,
505                               __u32 alg, struct lustre_capa_key *keys)
506 {
507         struct dt_device *next = dt2lod_dev(dev)->lod_child;
508         return dt_init_capa_ctxt(env, next, mode, timeout, alg, keys);
509 }
510
511 static const struct dt_device_operations lod_dt_ops = {
512         .dt_root_get         = lod_root_get,
513         .dt_statfs           = lod_statfs,
514         .dt_trans_create     = lod_trans_create,
515         .dt_trans_start      = lod_trans_start,
516         .dt_trans_stop       = lod_trans_stop,
517         .dt_conf_get         = lod_conf_get,
518         .dt_sync             = lod_sync,
519         .dt_ro               = lod_ro,
520         .dt_commit_async     = lod_commit_async,
521         .dt_init_capa_ctxt   = lod_init_capa_ctxt,
522 };
523
524 static int lod_connect_to_osd(const struct lu_env *env, struct lod_device *lod,
525                               struct lustre_cfg *cfg)
526 {
527         struct obd_connect_data *data = NULL;
528         struct obd_device       *obd;
529         char                    *nextdev = NULL, *p, *s;
530         int                      rc, len = 0;
531         ENTRY;
532
533         LASSERT(cfg);
534         LASSERT(lod->lod_child_exp == NULL);
535
536         /* compatibility hack: we still use old config logs
537          * which specify LOV, but we need to learn underlying
538          * OSD device, which is supposed to be:
539          *  <fsname>-MDTxxxx-osd
540          *
541          * 2.x MGS generates lines like the following:
542          *   #03 (176)lov_setup 0:lustre-MDT0000-mdtlov  1:(struct lov_desc)
543          * 1.8 MGS generates lines like the following:
544          *   #03 (168)lov_setup 0:lustre-mdtlov  1:(struct lov_desc)
545          *
546          * we use "-MDT" to differentiate 2.x from 1.8 */
547
548         if ((p = lustre_cfg_string(cfg, 0)) && strstr(p, "-mdtlov")) {
549                 len = strlen(p) + 1;
550                 OBD_ALLOC(nextdev, len);
551                 if (nextdev == NULL)
552                         GOTO(out, rc = -ENOMEM);
553
554                 strcpy(nextdev, p);
555                 s = strstr(nextdev, "-mdtlov");
556                 if (unlikely(s == NULL)) {
557                         CERROR("unable to parse device name %s\n",
558                                lustre_cfg_string(cfg, 0));
559                         GOTO(out, rc = -EINVAL);
560                 }
561
562                 if (strstr(nextdev, "-MDT")) {
563                         /* 2.x config */
564                         strcpy(s, "-osd");
565                 } else {
566                         /* 1.8 config */
567                         strcpy(s, "-MDT0000-osd");
568                 }
569         } else {
570                 CERROR("unable to parse device name %s\n",
571                        lustre_cfg_string(cfg, 0));
572                 GOTO(out, rc = -EINVAL);
573         }
574
575         OBD_ALLOC_PTR(data);
576         if (data == NULL)
577                 GOTO(out, rc = -ENOMEM);
578
579         obd = class_name2obd(nextdev);
580         if (obd == NULL) {
581                 CERROR("can not locate next device: %s\n", nextdev);
582                 GOTO(out, rc = -ENOTCONN);
583         }
584
585         data->ocd_connect_flags = OBD_CONNECT_VERSION;
586         data->ocd_version = LUSTRE_VERSION_CODE;
587
588         rc = obd_connect(env, &lod->lod_child_exp, obd, &obd->obd_uuid,
589                          data, NULL);
590         if (rc) {
591                 CERROR("cannot connect to next dev %s (%d)\n", nextdev, rc);
592                 GOTO(out, rc);
593         }
594
595         lod->lod_dt_dev.dd_lu_dev.ld_site =
596                 lod->lod_child_exp->exp_obd->obd_lu_dev->ld_site;
597         LASSERT(lod->lod_dt_dev.dd_lu_dev.ld_site);
598         lod->lod_child = lu2dt_dev(lod->lod_child_exp->exp_obd->obd_lu_dev);
599
600 out:
601         if (data)
602                 OBD_FREE_PTR(data);
603         if (nextdev)
604                 OBD_FREE(nextdev, len);
605         RETURN(rc);
606 }
607
608 static int lod_tgt_desc_init(struct lod_tgt_descs *ltd)
609 {
610         mutex_init(&ltd->ltd_mutex);
611         init_rwsem(&ltd->ltd_rw_sem);
612
613         /* the OST array and bitmap are allocated/grown dynamically as OSTs are
614          * added to the LOD, see lod_add_device() */
615         ltd->ltd_tgt_bitmap = CFS_ALLOCATE_BITMAP(32);
616         if (ltd->ltd_tgt_bitmap == NULL)
617                 RETURN(-ENOMEM);
618
619         ltd->ltd_tgts_size  = 32;
620         ltd->ltd_tgtnr      = 0;
621
622         ltd->ltd_death_row = 0;
623         ltd->ltd_refcount  = 0;
624         return 0;
625 }
626
627 static int lod_init0(const struct lu_env *env, struct lod_device *lod,
628                      struct lu_device_type *ldt, struct lustre_cfg *cfg)
629 {
630         struct dt_device_param ddp;
631         struct obd_device     *obd;
632         int                    rc;
633         ENTRY;
634
635         obd = class_name2obd(lustre_cfg_string(cfg, 0));
636         if (obd == NULL) {
637                 CERROR("Cannot find obd with name %s\n",
638                        lustre_cfg_string(cfg, 0));
639                 RETURN(-ENODEV);
640         }
641
642         obd->obd_lu_dev = &lod->lod_dt_dev.dd_lu_dev;
643         lod->lod_dt_dev.dd_lu_dev.ld_obd = obd;
644         lod->lod_dt_dev.dd_lu_dev.ld_ops = &lod_lu_ops;
645         lod->lod_dt_dev.dd_ops = &lod_dt_ops;
646
647         rc = lod_connect_to_osd(env, lod, cfg);
648         if (rc)
649                 RETURN(rc);
650
651         dt_conf_get(env, &lod->lod_dt_dev, &ddp);
652         lod->lod_osd_max_easize = ddp.ddp_max_ea_size;
653
654         /* setup obd to be used with old lov code */
655         rc = lod_pools_init(lod, cfg);
656         if (rc)
657                 GOTO(out_disconnect, rc);
658
659         rc = lod_procfs_init(lod);
660         if (rc)
661                 GOTO(out_pools, rc);
662
663         spin_lock_init(&lod->lod_desc_lock);
664         spin_lock_init(&lod->lod_connects_lock);
665         lod_tgt_desc_init(&lod->lod_mdt_descs);
666         lod_tgt_desc_init(&lod->lod_ost_descs);
667
668         RETURN(0);
669
670 out_pools:
671         lod_pools_fini(lod);
672 out_disconnect:
673         obd_disconnect(lod->lod_child_exp);
674         RETURN(rc);
675 }
676
677 static struct lu_device *lod_device_free(const struct lu_env *env,
678                                          struct lu_device *lu)
679 {
680         struct lod_device *lod = lu2lod_dev(lu);
681         struct lu_device  *next = &lod->lod_child->dd_lu_dev;
682         ENTRY;
683
684         LASSERT(atomic_read(&lu->ld_ref) == 0);
685         dt_device_fini(&lod->lod_dt_dev);
686         OBD_FREE_PTR(lod);
687         RETURN(next);
688 }
689
690 static struct lu_device *lod_device_alloc(const struct lu_env *env,
691                                           struct lu_device_type *type,
692                                           struct lustre_cfg *lcfg)
693 {
694         struct lod_device *lod;
695         struct lu_device  *lu_dev;
696
697         OBD_ALLOC_PTR(lod);
698         if (lod == NULL) {
699                 lu_dev = ERR_PTR(-ENOMEM);
700         } else {
701                 int rc;
702
703                 lu_dev = lod2lu_dev(lod);
704                 dt_device_init(&lod->lod_dt_dev, type);
705                 rc = lod_init0(env, lod, type, lcfg);
706                 if (rc != 0) {
707                         lod_device_free(env, lu_dev);
708                         lu_dev = ERR_PTR(rc);
709                 }
710         }
711
712         return lu_dev;
713 }
714
715 static struct lu_device *lod_device_fini(const struct lu_env *env,
716                                          struct lu_device *d)
717 {
718         struct lod_device *lod = lu2lod_dev(d);
719         int                rc;
720         ENTRY;
721
722         lod_pools_fini(lod);
723
724         lod_procfs_fini(lod);
725
726         rc = lod_fini_tgt(env, lod, &lod->lod_ost_descs, true);
727         if (rc)
728                 CERROR("%s:can not fini ost descs %d\n",
729                         lod2obd(lod)->obd_name, rc);
730
731         rc = lod_fini_tgt(env, lod, &lod->lod_mdt_descs, false);
732         if (rc)
733                 CERROR("%s:can not fini mdt descs %d\n",
734                         lod2obd(lod)->obd_name, rc);
735
736         RETURN(NULL);
737 }
738
739 /*
740  * we use exports to track all LOD users
741  */
742 static int lod_obd_connect(const struct lu_env *env, struct obd_export **exp,
743                            struct obd_device *obd, struct obd_uuid *cluuid,
744                            struct obd_connect_data *data, void *localdata)
745 {
746         struct lod_device    *lod = lu2lod_dev(obd->obd_lu_dev);
747         struct lustre_handle  conn;
748         int                   rc;
749         ENTRY;
750
751         CDEBUG(D_CONFIG, "connect #%d\n", lod->lod_connects);
752
753         rc = class_connect(&conn, obd, cluuid);
754         if (rc)
755                 RETURN(rc);
756
757         *exp = class_conn2export(&conn);
758
759         spin_lock(&lod->lod_connects_lock);
760         lod->lod_connects++;
761         /* at the moment we expect the only user */
762         LASSERT(lod->lod_connects == 1);
763         spin_unlock(&lod->lod_connects_lock);
764
765         RETURN(0);
766 }
767
768 /*
769  * once last export (we don't count self-export) disappeared
770  * lod can be released
771  */
772 static int lod_obd_disconnect(struct obd_export *exp)
773 {
774         struct obd_device *obd = exp->exp_obd;
775         struct lod_device *lod = lu2lod_dev(obd->obd_lu_dev);
776         int                rc, release = 0;
777         ENTRY;
778
779         /* Only disconnect the underlying layers on the final disconnect. */
780         spin_lock(&lod->lod_connects_lock);
781         lod->lod_connects--;
782         if (lod->lod_connects != 0) {
783                 /* why should there be more than 1 connect? */
784                 spin_unlock(&lod->lod_connects_lock);
785                 CERROR("%s: disconnect #%d\n", exp->exp_obd->obd_name,
786                        lod->lod_connects);
787                 goto out;
788         }
789         spin_unlock(&lod->lod_connects_lock);
790
791         /* the last user of lod has gone, let's release the device */
792         release = 1;
793
794 out:
795         rc = class_disconnect(exp); /* bz 9811 */
796
797         if (rc == 0 && release)
798                 class_manual_cleanup(obd);
799         RETURN(rc);
800 }
801
802 LU_KEY_INIT(lod, struct lod_thread_info);
803
804 static void lod_key_fini(const struct lu_context *ctx,
805                 struct lu_context_key *key, void *data)
806 {
807         struct lod_thread_info *info = data;
808         /* allocated in lod_get_lov_ea
809          * XXX: this is overload, a tread may have such store but used only
810          * once. Probably better would be pool of such stores per LOD.
811          */
812         if (info->lti_ea_store) {
813                 OBD_FREE_LARGE(info->lti_ea_store, info->lti_ea_store_size);
814                 info->lti_ea_store = NULL;
815                 info->lti_ea_store_size = 0;
816         }
817         OBD_FREE_PTR(info);
818 }
819
820 /* context key: lod_thread_key */
821 LU_CONTEXT_KEY_DEFINE(lod, LCT_MD_THREAD);
822
823 LU_TYPE_INIT_FINI(lod, &lod_thread_key);
824
825 static struct lu_device_type_operations lod_device_type_ops = {
826         .ldto_init           = lod_type_init,
827         .ldto_fini           = lod_type_fini,
828
829         .ldto_start          = lod_type_start,
830         .ldto_stop           = lod_type_stop,
831
832         .ldto_device_alloc   = lod_device_alloc,
833         .ldto_device_free    = lod_device_free,
834
835         .ldto_device_fini    = lod_device_fini
836 };
837
838 static struct lu_device_type lod_device_type = {
839         .ldt_tags     = LU_DEVICE_DT,
840         .ldt_name     = LUSTRE_LOD_NAME,
841         .ldt_ops      = &lod_device_type_ops,
842         .ldt_ctx_tags = LCT_MD_THREAD,
843 };
844
845 static int lod_obd_get_info(const struct lu_env *env, struct obd_export *exp,
846                             __u32 keylen, void *key, __u32 *vallen, void *val,
847                             struct lov_stripe_md *lsm)
848 {
849         int rc = -EINVAL;
850
851         if (KEY_IS(KEY_OSP_CONNECTED)) {
852                 struct obd_device       *obd = exp->exp_obd;
853                 struct lod_device       *d;
854                 struct lod_ost_desc     *ost;
855                 int                     i, rc = 1;
856
857                 if (!obd->obd_set_up || obd->obd_stopping)
858                         RETURN(-EAGAIN);
859
860                 d = lu2lod_dev(obd->obd_lu_dev);
861                 lod_getref(&d->lod_ost_descs);
862                 lod_foreach_ost(d, i) {
863                         ost = OST_TGT(d, i);
864                         LASSERT(ost && ost->ltd_ost);
865
866                         rc = obd_get_info(env, ost->ltd_exp, keylen, key,
867                                           vallen, val, lsm);
868                         /* one healthy device is enough */
869                         if (rc == 0)
870                                 break;
871                 }
872                 lod_putref(d, &d->lod_ost_descs);
873                 RETURN(rc);
874         }
875
876         RETURN(rc);
877 }
878
879 static struct obd_ops lod_obd_device_ops = {
880         .o_owner        = THIS_MODULE,
881         .o_connect      = lod_obd_connect,
882         .o_disconnect   = lod_obd_disconnect,
883         .o_get_info     = lod_obd_get_info,
884         .o_pool_new     = lod_pool_new,
885         .o_pool_rem     = lod_pool_remove,
886         .o_pool_add     = lod_pool_add,
887         .o_pool_del     = lod_pool_del,
888 };
889
890 static int __init lod_mod_init(void)
891 {
892         struct obd_type *type;
893         int rc;
894
895         rc = lu_kmem_init(lod_caches);
896         if (rc)
897                 return rc;
898
899         rc = class_register_type(&lod_obd_device_ops, NULL, true, NULL,
900 #ifndef HAVE_ONLY_PROCFS_SEQ
901                                  NULL,
902 #endif
903                                  LUSTRE_LOD_NAME, &lod_device_type);
904         if (rc) {
905                 lu_kmem_fini(lod_caches);
906                 return rc;
907         }
908
909         /* create "lov" entry in procfs for compatibility purposes */
910         type = class_search_type(LUSTRE_LOV_NAME);
911         if (type != NULL && type->typ_procroot != NULL)
912                 return rc;
913
914         type = class_search_type(LUSTRE_LOD_NAME);
915         type->typ_procsym = lprocfs_seq_register("lov", proc_lustre_root,
916                                                  NULL, NULL);
917         if (IS_ERR(type->typ_procsym)) {
918                 CERROR("lod: can't create compat entry \"lov\": %d\n",
919                        (int)PTR_ERR(type->typ_procsym));
920                 type->typ_procsym = NULL;
921         }
922         return rc;
923 }
924
925 static void __exit lod_mod_exit(void)
926 {
927         class_unregister_type(LUSTRE_LOD_NAME);
928         lu_kmem_fini(lod_caches);
929 }
930
931 MODULE_AUTHOR("Whamcloud, Inc. <http://www.whamcloud.com/>");
932 MODULE_DESCRIPTION("Lustre Logical Object Device ("LUSTRE_LOD_NAME")");
933 MODULE_LICENSE("GPL");
934
935 module_init(lod_mod_init);
936 module_exit(lod_mod_exit);
937