Whamcloud - gitweb
LU-6142 tests: Fix style issues for openunlink.c
[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, 2017, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  * Lustre is a trademark of Sun Microsystems, Inc.
31  *
32  * lustre/lod/lod_dev.c
33  *
34  * Lustre Logical Object Device
35  *
36  * Author: Alex Zhuravlev <alexey.zhuravlev@intel.com>
37  * Author: Mikhail Pershin <mike.pershin@intel.com>
38  */
39 /**
40  * The Logical Object Device (LOD) layer manages access to striped
41  * objects (both regular files and directories). It implements the DT
42  * device and object APIs and is responsible for creating, storing,
43  * and loading striping information as an extended attribute of the
44  * underlying OSD object. LOD is the server side analog of the LOV and
45  * LMV layers on the client side.
46  *
47  * Metadata LU object stack (layers of the same compound LU object,
48  * all have the same FID):
49  *
50  *        MDT
51  *         |      MD API
52  *        MDD
53  *         |      DT API
54  *        LOD
55  *       /   \    DT API
56  *     OSD   OSP
57  *
58  * During LOD object initialization the localness or remoteness of the
59  * object FID dictates the choice between OSD and OSP.
60  *
61  * An LOD object (file or directory) with N stripes (each has a
62  * different FID):
63  *
64  *          LOD
65  *           |
66  *   +---+---+---+...+
67  *   |   |   |   |   |
68  *   S0  S1  S2  S3  S(N-1)  OS[DP] objects, seen as DT objects by LOD
69  *
70  * When upper layers must access an object's stripes (which are
71  * themselves OST or MDT LU objects) LOD finds these objects by their
72  * FIDs and stores them as an array of DT object pointers on the
73  * object. Declarations and operations on LOD objects are received by
74  * LOD (as DT object operations) and performed on the underlying
75  * OS[DP] object and (as needed) on the stripes. From the perspective
76  * of LOD, a stripe-less file (created by mknod() or open with
77  * O_LOV_DELAY_CREATE) is an object which does not yet have stripes,
78  * while a non-striped directory (created by mkdir()) is an object
79  * which will never have stripes.
80  *
81  * The LOD layer also implements a small subset of the OBD device API
82  * to support MDT stack initialization and finalization (an MDD device
83  * connects and disconnects itself to and from the underlying LOD
84  * device), and pool management. In turn LOD uses the OBD device API
85  * to connect it self to the underlying OSD, and to connect itself to
86  * OSP devices representing the MDTs and OSTs that bear the stripes of
87  * its objects.
88  */
89
90 #define DEBUG_SUBSYSTEM S_MDS
91
92 #include <linux/kthread.h>
93 #include <obd_class.h>
94 #include <md_object.h>
95 #include <lustre_fid.h>
96 #include <uapi/linux/lustre/lustre_param.h>
97 #include <lustre_update.h>
98 #include <lustre_log.h>
99
100 #include "lod_internal.h"
101
102 static const char lod_update_log_name[] = "update_log";
103 static const char lod_update_log_dir_name[] = "update_log_dir";
104
105 /*
106  * Lookup target by FID.
107  *
108  * Lookup MDT/OST target index by FID. Type of the target can be
109  * specific or any.
110  *
111  * \param[in] env               LU environment provided by the caller
112  * \param[in] lod               lod device
113  * \param[in] fid               FID
114  * \param[out] tgt              result target index
115  * \param[in] type              expected type of the target:
116  *                              LU_SEQ_RANGE_{MDT,OST,ANY}
117  *
118  * \retval 0                    on success
119  * \retval negative             negated errno on error
120  **/
121 int lod_fld_lookup(const struct lu_env *env, struct lod_device *lod,
122                    const struct lu_fid *fid, u32 *tgt, int *type)
123 {
124         struct lu_seq_range range = { 0 };
125         struct lu_server_fld *server_fld;
126         int rc;
127
128         ENTRY;
129
130         if (!fid_is_sane(fid)) {
131                 CERROR("%s: invalid FID "DFID"\n", lod2obd(lod)->obd_name,
132                        PFID(fid));
133                 RETURN(-EIO);
134         }
135
136         if (fid_is_idif(fid)) {
137                 *tgt = fid_idif_ost_idx(fid);
138                 *type = LU_SEQ_RANGE_OST;
139                 RETURN(0);
140         }
141
142         if (fid_is_update_log(fid) || fid_is_update_log_dir(fid)) {
143                 *tgt = fid_oid(fid);
144                 *type = LU_SEQ_RANGE_MDT;
145                 RETURN(0);
146         }
147
148         if (!lod->lod_initialized || (!fid_seq_in_fldb(fid_seq(fid)))) {
149                 LASSERT(lu_site2seq(lod2lu_dev(lod)->ld_site) != NULL);
150
151                 *tgt = lu_site2seq(lod2lu_dev(lod)->ld_site)->ss_node_id;
152                 *type = LU_SEQ_RANGE_MDT;
153                 RETURN(0);
154         }
155
156         server_fld = lu_site2seq(lod2lu_dev(lod)->ld_site)->ss_server_fld;
157         if (!server_fld)
158                 RETURN(-EIO);
159
160         fld_range_set_type(&range, *type);
161         rc = fld_server_lookup(env, server_fld, fid_seq(fid), &range);
162         if (rc != 0)
163                 RETURN(rc);
164
165         *tgt = range.lsr_index;
166         *type = range.lsr_flags;
167
168         CDEBUG(D_INFO, "%s: got tgt %x for sequence: %#llx\n",
169                lod2obd(lod)->obd_name, *tgt, fid_seq(fid));
170
171         RETURN(0);
172 }
173
174 /* Slab for OSD object allocation */
175 struct kmem_cache *lod_object_kmem;
176
177 /* Slab for dt_txn_callback */
178 struct kmem_cache *lod_txn_callback_kmem;
179 static struct lu_kmem_descr lod_caches[] = {
180         {
181                 .ckd_cache = &lod_object_kmem,
182                 .ckd_name  = "lod_obj",
183                 .ckd_size  = sizeof(struct lod_object)
184         },
185         {
186                 .ckd_cache = &lod_txn_callback_kmem,
187                 .ckd_name  = "lod_txn_callback",
188                 .ckd_size  = sizeof(struct dt_txn_callback)
189         },
190         {
191                 .ckd_cache = NULL
192         }
193 };
194
195 static struct lu_device *lod_device_fini(const struct lu_env *env,
196                                          struct lu_device *d);
197
198 /**
199  * Implementation of lu_device_operations::ldo_object_alloc() for LOD
200  *
201  * Allocates and initializes LOD's slice in the given object.
202  *
203  * see include/lu_object.h for the details.
204  */
205 static struct lu_object *lod_object_alloc(const struct lu_env *env,
206                                           const struct lu_object_header *hdr,
207                                           struct lu_device *dev)
208 {
209         struct lod_object *lod_obj;
210         struct lu_object *lu_obj;
211
212         ENTRY;
213
214         OBD_SLAB_ALLOC_PTR_GFP(lod_obj, lod_object_kmem, GFP_NOFS);
215         if (!lod_obj)
216                 RETURN(ERR_PTR(-ENOMEM));
217
218         mutex_init(&lod_obj->ldo_layout_mutex);
219         lu_obj = lod2lu_obj(lod_obj);
220         dt_object_init(&lod_obj->ldo_obj, NULL, dev);
221         lod_obj->ldo_obj.do_ops = &lod_obj_ops;
222         lu_obj->lo_ops = &lod_lu_obj_ops;
223
224         RETURN(lu_obj);
225 }
226
227 /**
228  * Process the config log for all sub device.
229  *
230  * The function goes through all the targets in the given table
231  * and apply given configuration command on to the targets.
232  * Used to cleanup the targets at unmount.
233  *
234  * \param[in] env               LU environment provided by the caller
235  * \param[in] lod               lod device
236  * \param[in] ltd               target's table to go through
237  * \param[in] lcfg              configuration command to apply
238  *
239  * \retval 0                    on success
240  * \retval negative             negated errno on error
241  **/
242 static int lod_sub_process_config(const struct lu_env *env,
243                                  struct lod_device *lod,
244                                  struct lod_tgt_descs *ltd,
245                                  struct lustre_cfg *lcfg)
246 {
247         struct lu_device *next;
248         struct lu_tgt_desc *tgt;
249         int rc = 0;
250
251         lod_getref(ltd);
252         ltd_foreach_tgt(ltd, tgt) {
253                 int rc1;
254
255                 LASSERT(tgt && tgt->ltd_tgt);
256                 next = &tgt->ltd_tgt->dd_lu_dev;
257                 rc1 = next->ld_ops->ldo_process_config(env, next, lcfg);
258                 if (rc1) {
259                         CERROR("%s: error cleaning up LOD index %u: cmd %#x : rc = %d\n",
260                                lod2obd(lod)->obd_name, tgt->ltd_index,
261                                lcfg->lcfg_command, rc1);
262                         rc = rc1;
263                 }
264         }
265         lod_putref(lod, ltd);
266         return rc;
267 }
268
269 struct lod_recovery_data {
270         struct lod_device       *lrd_lod;
271         struct lod_tgt_desc     *lrd_ltd;
272         struct ptlrpc_thread    *lrd_thread;
273         u32                     lrd_idx;
274 };
275
276
277 /**
278  * process update recovery record
279  *
280  * Add the update recovery recode to the update recovery list in
281  * lod_recovery_data. Then the recovery thread (target_recovery_thread)
282  * will redo these updates.
283  *
284  * \param[in]env        execution environment
285  * \param[in]llh        log handle of update record
286  * \param[in]rec        update record to be replayed
287  * \param[in]data       update recovery data which holds the necessary
288  *                      arguments for recovery (see struct lod_recovery_data)
289  *
290  * \retval              0 if the record is processed successfully.
291  * \retval              negative errno if the record processing fails.
292  */
293 static int lod_process_recovery_updates(const struct lu_env *env,
294                                         struct llog_handle *llh,
295                                         struct llog_rec_hdr *rec,
296                                         void *data)
297 {
298         struct lod_recovery_data *lrd = data;
299         struct llog_cookie *cookie = &lod_env_info(env)->lti_cookie;
300         struct lu_target *lut;
301         u32 index = 0;
302
303         ENTRY;
304
305         if (!lrd->lrd_ltd) {
306                 int rc;
307
308                 rc = lodname2mdt_index(lod2obd(lrd->lrd_lod)->obd_name, &index);
309                 if (rc != 0)
310                         return rc;
311         } else {
312                 index = lrd->lrd_ltd->ltd_index;
313         }
314
315         if (rec->lrh_len !=
316                 llog_update_record_size((struct llog_update_record *)rec)) {
317                 CERROR("%s: broken update record! index %u "DFID".%u: rc = %d\n",
318                        lod2obd(lrd->lrd_lod)->obd_name, index,
319                        PFID(&llh->lgh_id.lgl_oi.oi_fid), rec->lrh_index, -EIO);
320                 return -EINVAL;
321         }
322
323         cookie->lgc_lgl = llh->lgh_id;
324         cookie->lgc_index = rec->lrh_index;
325         cookie->lgc_subsys = LLOG_UPDATELOG_ORIG_CTXT;
326
327         CDEBUG(D_HA, "%s: process recovery updates "DFID".%u\n",
328                lod2obd(lrd->lrd_lod)->obd_name,
329                PFID(&llh->lgh_id.lgl_oi.oi_fid), rec->lrh_index);
330         lut = lod2lu_dev(lrd->lrd_lod)->ld_site->ls_tgt;
331
332         if (lut->lut_obd->obd_stopping ||
333             lut->lut_obd->obd_abort_recovery)
334                 return -ESHUTDOWN;
335
336         return insert_update_records_to_replay_list(lut->lut_tdtd,
337                                         (struct llog_update_record *)rec,
338                                         cookie, index);
339 }
340
341 /**
342  * recovery thread for update log
343  *
344  * Start recovery thread and prepare the sub llog, then it will retrieve
345  * the update records from the correpondent MDT and do recovery.
346  *
347  * \param[in] arg       pointer to the recovery data
348  *
349  * \retval              0 if recovery succeeds
350  * \retval              negative errno if recovery failed.
351  */
352 static int lod_sub_recovery_thread(void *arg)
353 {
354         struct lod_recovery_data *lrd = arg;
355         struct lod_device *lod = lrd->lrd_lod;
356         struct dt_device *dt;
357         struct ptlrpc_thread *thread = lrd->lrd_thread;
358         struct llog_ctxt *ctxt = NULL;
359         struct lu_env env;
360         struct lu_target *lut;
361         struct lu_tgt_desc *mdt = NULL;
362         time64_t start;
363         int retries = 0;
364         int rc;
365
366         ENTRY;
367
368         thread->t_flags = SVC_RUNNING;
369         wake_up(&thread->t_ctl_waitq);
370
371         rc = lu_env_init(&env, LCT_LOCAL | LCT_MD_THREAD);
372         if (rc != 0) {
373                 OBD_FREE_PTR(lrd);
374                 CERROR("%s: can't initialize env: rc = %d\n",
375                        lod2obd(lod)->obd_name, rc);
376                 RETURN(rc);
377         }
378
379         lut = lod2lu_dev(lod)->ld_site->ls_tgt;
380         atomic_inc(&lut->lut_tdtd->tdtd_recovery_threads_count);
381         if (!lrd->lrd_ltd)
382                 dt = lod->lod_child;
383         else
384                 dt = lrd->lrd_ltd->ltd_tgt;
385
386         start = ktime_get_real_seconds();
387
388 again:
389         rc = lod_sub_prep_llog(&env, lod, dt, lrd->lrd_idx);
390         if (!rc && !lod->lod_child->dd_rdonly) {
391                 /* Process the recovery record */
392                 ctxt = llog_get_context(dt->dd_lu_dev.ld_obd,
393                                         LLOG_UPDATELOG_ORIG_CTXT);
394                 LASSERT(ctxt != NULL);
395                 LASSERT(ctxt->loc_handle != NULL);
396
397                 rc = llog_cat_process(&env, ctxt->loc_handle,
398                                       lod_process_recovery_updates, lrd, 0, 0);
399         }
400
401         if (rc < 0) {
402                 struct lu_device *top_device;
403
404                 top_device = lod->lod_dt_dev.dd_lu_dev.ld_site->ls_top_dev;
405                 /*
406                  * Because the remote target might failover at the same time,
407                  * let's retry here
408                  */
409                 if ((rc == -ETIMEDOUT || rc == -EAGAIN || rc == -EIO) &&
410                      dt != lod->lod_child &&
411                     !top_device->ld_obd->obd_abort_recovery &&
412                     !top_device->ld_obd->obd_stopping) {
413                         if (ctxt) {
414                                 if (ctxt->loc_handle)
415                                         llog_cat_close(&env,
416                                                        ctxt->loc_handle);
417                                 llog_ctxt_put(ctxt);
418                         }
419                         retries++;
420                         CDEBUG(D_HA, "%s get update log failed %d, retry\n",
421                                dt->dd_lu_dev.ld_obd->obd_name, rc);
422                         goto again;
423                 }
424
425                 CERROR("%s get update log failed: rc = %d\n",
426                        dt->dd_lu_dev.ld_obd->obd_name, rc);
427                 llog_ctxt_put(ctxt);
428
429                 spin_lock(&top_device->ld_obd->obd_dev_lock);
430                 if (!top_device->ld_obd->obd_abort_recovery &&
431                     !top_device->ld_obd->obd_stopping)
432                         top_device->ld_obd->obd_abort_recovery = 1;
433                 spin_unlock(&top_device->ld_obd->obd_dev_lock);
434
435                 GOTO(out, rc);
436         }
437         llog_ctxt_put(ctxt);
438
439         CDEBUG(D_HA, "%s retrieved update log, duration %lld, retries %d\n",
440                dt->dd_lu_dev.ld_obd->obd_name, ktime_get_real_seconds() - start,
441                retries);
442
443         spin_lock(&lod->lod_lock);
444         if (!lrd->lrd_ltd)
445                 lod->lod_child_got_update_log = 1;
446         else
447                 lrd->lrd_ltd->ltd_got_update_log = 1;
448
449         if (!lod->lod_child_got_update_log) {
450                 spin_unlock(&lod->lod_lock);
451                 GOTO(out, rc = 0);
452         }
453
454         lod_foreach_mdt(lod, mdt) {
455                 if (!mdt->ltd_got_update_log) {
456                         spin_unlock(&lod->lod_lock);
457                         GOTO(out, rc = 0);
458                 }
459         }
460         lut->lut_tdtd->tdtd_replay_ready = 1;
461         spin_unlock(&lod->lod_lock);
462
463         CDEBUG(D_HA, "%s got update logs from all MDTs.\n",
464                lut->lut_obd->obd_name);
465         wake_up(&lut->lut_obd->obd_next_transno_waitq);
466         EXIT;
467
468 out:
469         OBD_FREE_PTR(lrd);
470         thread->t_flags = SVC_STOPPED;
471         atomic_dec(&lut->lut_tdtd->tdtd_recovery_threads_count);
472         wake_up(&lut->lut_tdtd->tdtd_recovery_threads_waitq);
473         wake_up(&thread->t_ctl_waitq);
474         lu_env_fini(&env);
475         return rc;
476 }
477
478 /**
479  * finish sub llog context
480  *
481  * Stop update recovery thread for the sub device, then cleanup the
482  * correspondent llog ctxt.
483  *
484  * \param[in] env      execution environment
485  * \param[in] lod      lod device to do update recovery
486  * \param[in] thread   recovery thread on this sub device
487  */
488 void lod_sub_fini_llog(const struct lu_env *env,
489                        struct dt_device *dt, struct ptlrpc_thread *thread)
490 {
491         struct obd_device *obd;
492         struct llog_ctxt *ctxt;
493
494         ENTRY;
495
496         obd = dt->dd_lu_dev.ld_obd;
497         CDEBUG(D_INFO, "%s: finish sub llog\n", obd->obd_name);
498         /* Stop recovery thread first */
499         if (thread && thread->t_flags & SVC_RUNNING) {
500                 thread->t_flags = SVC_STOPPING;
501                 wake_up(&thread->t_ctl_waitq);
502                 wait_event(thread->t_ctl_waitq, thread->t_flags & SVC_STOPPED);
503         }
504
505         ctxt = llog_get_context(obd, LLOG_UPDATELOG_ORIG_CTXT);
506         if (!ctxt)
507                 RETURN_EXIT;
508
509         if (ctxt->loc_handle)
510                 llog_cat_close(env, ctxt->loc_handle);
511
512         llog_cleanup(env, ctxt);
513
514         RETURN_EXIT;
515 }
516
517 /**
518  * Extract MDT target index from a device name.
519  *
520  * a helper function to extract index from the given device name
521  * like "fsname-MDTxxxx-mdtlov"
522  *
523  * \param[in] lodname           device name
524  * \param[out] mdt_index        extracted index
525  *
526  * \retval 0            on success
527  * \retval -EINVAL      if the name is invalid
528  */
529 int lodname2mdt_index(char *lodname, u32 *mdt_index)
530 {
531         unsigned long index;
532         char *ptr, *tmp;
533         int rc;
534
535         /* 1.8 configs don't have "-MDT0000" at the end */
536         ptr = strstr(lodname, "-MDT");
537         if (!ptr) {
538                 *mdt_index = 0;
539                 return 0;
540         }
541
542         ptr = strrchr(lodname, '-');
543         if (!ptr) {
544                 rc = -EINVAL;
545                 CERROR("invalid MDT index in '%s': rc = %d\n", lodname, rc);
546                 return rc;
547         }
548
549         if (strncmp(ptr, "-mdtlov", 7) != 0) {
550                 rc = -EINVAL;
551                 CERROR("invalid MDT index in '%s': rc = %d\n", lodname, rc);
552                 return rc;
553         }
554
555         if ((unsigned long)ptr - (unsigned long)lodname <= 8) {
556                 rc = -EINVAL;
557                 CERROR("invalid MDT index in '%s': rc = %d\n", lodname, rc);
558                 return rc;
559         }
560
561         if (strncmp(ptr - 8, "-MDT", 4) != 0) {
562                 rc = -EINVAL;
563                 CERROR("invalid MDT index in '%s': rc = %d\n", lodname, rc);
564                 return rc;
565         }
566
567         index = simple_strtol(ptr - 4, &tmp, 16);
568         if (*tmp != '-' || index > INT_MAX) {
569                 rc = -EINVAL;
570                 CERROR("invalid MDT index in '%s': rc = %d\n", lodname, rc);
571                 return rc;
572         }
573         *mdt_index = index;
574         return 0;
575 }
576
577 /**
578  * Init sub llog context
579  *
580  * Setup update llog ctxt for update recovery threads, then start the
581  * recovery thread (lod_sub_recovery_thread) to read update llog from
582  * the correspondent MDT to do update recovery.
583  *
584  * \param[in] env       execution environment
585  * \param[in] lod       lod device to do update recovery
586  * \param[in] dt        sub dt device for which the recovery thread is
587  *
588  * \retval              0 if initialization succeeds.
589  * \retval              negative errno if initialization fails.
590  */
591 int lod_sub_init_llog(const struct lu_env *env, struct lod_device *lod,
592                       struct dt_device *dt)
593 {
594         struct obd_device *obd;
595         struct lod_recovery_data *lrd = NULL;
596         struct ptlrpc_thread *thread;
597         struct task_struct *task;
598         struct lod_tgt_desc *subtgt = NULL;
599         u32 index;
600         u32 master_index;
601         int rc;
602
603         ENTRY;
604
605         rc = lodname2mdt_index(lod2obd(lod)->obd_name, &master_index);
606         if (rc != 0)
607                 RETURN(rc);
608
609         OBD_ALLOC_PTR(lrd);
610         if (!lrd)
611                 RETURN(-ENOMEM);
612
613         if (lod->lod_child == dt) {
614                 thread = &lod->lod_child_recovery_thread;
615                 index = master_index;
616         } else {
617                 struct lu_tgt_desc *mdt;
618
619                 lod_foreach_mdt(lod, mdt) {
620                         if (mdt->ltd_tgt == dt) {
621                                 index = mdt->ltd_index;
622                                 subtgt = mdt;
623                                 break;
624                         }
625                 }
626                 LASSERT(subtgt != NULL);
627                 OBD_ALLOC_PTR(subtgt->ltd_recovery_thread);
628                 if (!subtgt->ltd_recovery_thread)
629                         GOTO(free_lrd, rc = -ENOMEM);
630
631                 thread = subtgt->ltd_recovery_thread;
632         }
633
634         CDEBUG(D_INFO, "%s init sub log %s\n", lod2obd(lod)->obd_name,
635                dt->dd_lu_dev.ld_obd->obd_name);
636         lrd->lrd_lod = lod;
637         lrd->lrd_ltd = subtgt;
638         lrd->lrd_thread = thread;
639         lrd->lrd_idx = index;
640         init_waitqueue_head(&thread->t_ctl_waitq);
641
642         obd = dt->dd_lu_dev.ld_obd;
643         obd->obd_lvfs_ctxt.dt = dt;
644         rc = llog_setup(env, obd, &obd->obd_olg, LLOG_UPDATELOG_ORIG_CTXT,
645                         NULL, &llog_common_cat_ops);
646         if (rc < 0) {
647                 CERROR("%s: cannot setup updatelog llog: rc = %d\n",
648                        obd->obd_name, rc);
649                 GOTO(free_thread, rc);
650         }
651
652         /* Start the recovery thread */
653         task = kthread_run(lod_sub_recovery_thread, lrd, "lod%04x_rec%04x",
654                            master_index, index);
655         if (IS_ERR(task)) {
656                 rc = PTR_ERR(task);
657                 CERROR("%s: cannot start recovery thread: rc = %d\n",
658                        obd->obd_name, rc);
659                 GOTO(out_llog, rc);
660         }
661
662         wait_event_idle(thread->t_ctl_waitq, thread->t_flags & SVC_RUNNING ||
663                         thread->t_flags & SVC_STOPPED);
664
665         RETURN(0);
666 out_llog:
667         lod_sub_fini_llog(env, dt, thread);
668 free_thread:
669         if (lod->lod_child != dt) {
670                 OBD_FREE_PTR(subtgt->ltd_recovery_thread);
671                 subtgt->ltd_recovery_thread = NULL;
672         }
673 free_lrd:
674         OBD_FREE_PTR(lrd);
675         RETURN(rc);
676 }
677
678 /**
679  * Stop sub recovery thread
680  *
681  * Stop sub recovery thread on all subs.
682  *
683  * \param[in] env       execution environment
684  * \param[in] lod       lod device to do update recovery
685  */
686 static void lod_sub_stop_recovery_threads(const struct lu_env *env,
687                                           struct lod_device *lod)
688 {
689         struct ptlrpc_thread *thread;
690         struct lu_tgt_desc *mdt;
691
692         /*
693          * Stop the update log commit cancel threads and finish master
694          * llog ctxt
695          */
696         thread = &lod->lod_child_recovery_thread;
697         /* Stop recovery thread first */
698         if (thread && thread->t_flags & SVC_RUNNING) {
699                 thread->t_flags = SVC_STOPPING;
700                 wake_up(&thread->t_ctl_waitq);
701                 wait_event(thread->t_ctl_waitq, thread->t_flags & SVC_STOPPED);
702         }
703
704         lod_getref(&lod->lod_mdt_descs);
705         lod_foreach_mdt(lod, mdt) {
706                 thread = mdt->ltd_recovery_thread;
707                 if (thread && thread->t_flags & SVC_RUNNING) {
708                         thread->t_flags = SVC_STOPPING;
709                         wake_up(&thread->t_ctl_waitq);
710                         wait_event(thread->t_ctl_waitq,
711                                    thread->t_flags & SVC_STOPPED);
712                         OBD_FREE_PTR(mdt->ltd_recovery_thread);
713                         mdt->ltd_recovery_thread = NULL;
714                 }
715         }
716         lod_putref(lod, &lod->lod_mdt_descs);
717 }
718
719 /**
720  * finish all sub llog
721  *
722  * cleanup all of sub llog ctxt on the LOD.
723  *
724  * \param[in] env       execution environment
725  * \param[in] lod       lod device to do update recovery
726  */
727 static void lod_sub_fini_all_llogs(const struct lu_env *env,
728                                    struct lod_device *lod)
729 {
730         struct lu_tgt_desc *mdt;
731
732         /*
733          * Stop the update log commit cancel threads and finish master
734          * llog ctxt
735          */
736         lod_sub_fini_llog(env, lod->lod_child,
737                           &lod->lod_child_recovery_thread);
738         lod_getref(&lod->lod_mdt_descs);
739         lod_foreach_mdt(lod, mdt)
740                 lod_sub_fini_llog(env, mdt->ltd_tgt,
741                                   mdt->ltd_recovery_thread);
742         lod_putref(lod, &lod->lod_mdt_descs);
743 }
744
745 static char *lod_show_update_logs_retrievers(void *data, int *size, int *count)
746 {
747         struct lod_device *lod = (struct lod_device *)data;
748         struct lu_target *lut = lod2lu_dev(lod)->ld_site->ls_tgt;
749         struct lu_tgt_desc *mdt = NULL;
750         char *buf;
751         int len = 0;
752         int rc;
753         int i;
754
755         *count = atomic_read(&lut->lut_tdtd->tdtd_recovery_threads_count);
756         if (*count == 0) {
757                 *size = 0;
758                 return NULL;
759         }
760
761         *size = 5 * *count + 1;
762         OBD_ALLOC(buf, *size);
763         if (!buf)
764                 return NULL;
765
766         *count = 0;
767         memset(buf, 0, *size);
768
769         if (!lod->lod_child_got_update_log) {
770                 rc = lodname2mdt_index(lod2obd(lod)->obd_name, &i);
771                 LASSERTF(rc == 0, "Fail to parse target index: rc = %d\n", rc);
772
773                 rc = snprintf(buf + len, *size - len, " %04x", i);
774                 LASSERT(rc > 0);
775
776                 len += rc;
777                 (*count)++;
778         }
779
780         lod_foreach_mdt(lod, mdt) {
781                 if (!mdt->ltd_got_update_log) {
782                         rc = snprintf(buf + len, *size - len, " %04x",
783                                       mdt->ltd_index);
784                         if (unlikely(rc <= 0))
785                                 break;
786
787                         len += rc;
788                         (*count)++;
789                 }
790         }
791
792         return buf;
793 }
794
795 /**
796  * Prepare distribute txn
797  *
798  * Prepare distribute txn structure for LOD
799  *
800  * \param[in] env       execution environment
801  * \param[in] lod_device  LOD device
802  *
803  * \retval              0 if preparation succeeds.
804  * \retval              negative errno if preparation fails.
805  */
806 static int lod_prepare_distribute_txn(const struct lu_env *env,
807                                       struct lod_device *lod)
808 {
809         struct target_distribute_txn_data *tdtd;
810         struct lu_target *lut;
811         int rc;
812
813         ENTRY;
814
815         /* Init update recovery data */
816         OBD_ALLOC_PTR(tdtd);
817         if (!tdtd)
818                 RETURN(-ENOMEM);
819
820         lut = lod2lu_dev(lod)->ld_site->ls_tgt;
821         tdtd->tdtd_dt = &lod->lod_dt_dev;
822         rc = distribute_txn_init(env, lut, tdtd,
823                 lu_site2seq(lod2lu_dev(lod)->ld_site)->ss_node_id);
824
825         if (rc < 0) {
826                 CERROR("%s: cannot init distribute txn: rc = %d\n",
827                        lod2obd(lod)->obd_name, rc);
828                 OBD_FREE_PTR(tdtd);
829                 RETURN(rc);
830         }
831
832         tdtd->tdtd_show_update_logs_retrievers =
833                 lod_show_update_logs_retrievers;
834         tdtd->tdtd_show_retrievers_cbdata = lod;
835
836         lut->lut_tdtd = tdtd;
837
838         RETURN(0);
839 }
840
841 /**
842  * Finish distribute txn
843  *
844  * Release the resource holding by distribute txn, i.e. stop distribute
845  * txn thread.
846  *
847  * \param[in] env       execution environment
848  * \param[in] lod       lod device
849  */
850 static void lod_fini_distribute_txn(const struct lu_env *env,
851                                     struct lod_device *lod)
852 {
853         struct lu_target *lut;
854
855         lut = lod2lu_dev(lod)->ld_site->ls_tgt;
856         target_recovery_fini(lut->lut_obd);
857         if (!lut->lut_tdtd)
858                 return;
859
860         distribute_txn_fini(env, lut->lut_tdtd);
861
862         OBD_FREE_PTR(lut->lut_tdtd);
863         lut->lut_tdtd = NULL;
864 }
865
866 /**
867  * Implementation of lu_device_operations::ldo_process_config() for LOD
868  *
869  * The method is called by the configuration subsystem during setup,
870  * cleanup and when the configuration changes. The method processes
871  * few specific commands like adding/removing the targets, changing
872  * the runtime parameters.
873
874  * \param[in] env               LU environment provided by the caller
875  * \param[in] dev               lod device
876  * \param[in] lcfg              configuration command to apply
877  *
878  * \retval 0                    on success
879  * \retval negative             negated errno on error
880  *
881  * The examples are below.
882  *
883  * Add osc config log:
884  * marker  20 (flags=0x01, v2.2.49.56) lustre-OST0001  'add osc'
885  * add_uuid  nid=192.168.122.162@tcp(0x20000c0a87aa2)  0:  1:nidxxx
886  * attach    0:lustre-OST0001-osc-MDT0001  1:osc  2:lustre-MDT0001-mdtlov_UUID
887  * setup     0:lustre-OST0001-osc-MDT0001  1:lustre-OST0001_UUID  2:nid
888  * lov_modify_tgts add 0:lustre-MDT0001-mdtlov  1:lustre-OST0001_UUID  2:1  3:1
889  * marker  20 (flags=0x02, v2.2.49.56) lustre-OST0001  'add osc'
890  *
891  * Add mdc config log:
892  * marker  10 (flags=0x01, v2.2.49.56) lustre-MDT0000  'add osp'
893  * add_uuid  nid=192.168.122.162@tcp(0x20000c0a87aa2)  0:  1:nid
894  * attach 0:lustre-MDT0000-osp-MDT0001  1:osp  2:lustre-MDT0001-mdtlov_UUID
895  * setup     0:lustre-MDT0000-osp-MDT0001  1:lustre-MDT0000_UUID  2:nid
896  * modify_mdc_tgts add 0:lustre-MDT0001  1:lustre-MDT0000_UUID  2:0  3:1
897  * marker  10 (flags=0x02, v2.2.49.56) lustre-MDT0000_UUID  'add osp'
898  */
899 static int lod_process_config(const struct lu_env *env,
900                               struct lu_device *dev,
901                               struct lustre_cfg *lcfg)
902 {
903         struct lod_device *lod = lu2lod_dev(dev);
904         struct lu_device *next = &lod->lod_child->dd_lu_dev;
905         char *arg1;
906         int rc = 0;
907
908         ENTRY;
909
910         switch (lcfg->lcfg_command) {
911         case LCFG_LOV_DEL_OBD:
912         case LCFG_LOV_ADD_INA:
913         case LCFG_LOV_ADD_OBD:
914         case LCFG_ADD_MDC: {
915                 u32 index;
916                 u32 mdt_index;
917                 int gen;
918                 /*
919                  * lov_modify_tgts add  0:lov_mdsA  1:osp  2:0  3:1
920                  * modify_mdc_tgts add  0:lustre-MDT0001
921                  *                    1:lustre-MDT0001-mdc0002
922                  *                    2:2  3:1
923                  */
924                 arg1 = lustre_cfg_string(lcfg, 1);
925
926                 if (sscanf(lustre_cfg_buf(lcfg, 2), "%d", &index) != 1)
927                         GOTO(out, rc = -EINVAL);
928                 if (sscanf(lustre_cfg_buf(lcfg, 3), "%d", &gen) != 1)
929                         GOTO(out, rc = -EINVAL);
930
931                 if (lcfg->lcfg_command == LCFG_LOV_ADD_OBD) {
932                         u32 mdt_index;
933
934                         rc = lodname2mdt_index(lustre_cfg_string(lcfg, 0),
935                                                &mdt_index);
936                         if (rc != 0)
937                                 GOTO(out, rc);
938
939                         rc = lod_add_device(env, lod, arg1, index, gen,
940                                             mdt_index, LUSTRE_OSC_NAME, 1);
941                 } else if (lcfg->lcfg_command == LCFG_ADD_MDC) {
942                         mdt_index = index;
943                         rc = lod_add_device(env, lod, arg1, index, gen,
944                                             mdt_index, LUSTRE_MDC_NAME, 1);
945                 } else if (lcfg->lcfg_command == LCFG_LOV_ADD_INA) {
946                         /*FIXME: Add mdt_index for LCFG_LOV_ADD_INA*/
947                         mdt_index = 0;
948                         rc = lod_add_device(env, lod, arg1, index, gen,
949                                             mdt_index, LUSTRE_OSC_NAME, 0);
950                 } else {
951                         rc = lod_del_device(env, lod, &lod->lod_ost_descs,
952                                             arg1, index, gen);
953                 }
954
955                 break;
956         }
957
958         case LCFG_PARAM: {
959                 struct obd_device *obd;
960                 ssize_t count;
961                 char *param;
962
963                 /*
964                  * Check if it is activate/deactivate mdc
965                  * lustre-MDTXXXX-osp-MDTXXXX.active=1
966                  */
967                 param = lustre_cfg_buf(lcfg, 1);
968                 if (strstr(param, "osp") && strstr(param, ".active=")) {
969                         struct lod_tgt_desc *sub_tgt = NULL;
970                         struct lu_tgt_desc *mdt;
971                         char *ptr;
972                         char *tmp;
973
974                         ptr = strstr(param, ".");
975                         *ptr = '\0';
976                         obd = class_name2obd(param);
977                         if (!obd) {
978                                 CERROR("%s: can not find %s: rc = %d\n",
979                                        lod2obd(lod)->obd_name, param, -EINVAL);
980                                 *ptr = '.';
981                                 GOTO(out, rc);
982                         }
983
984                         lod_foreach_mdt(lod, mdt) {
985                                 if (mdt->ltd_tgt->dd_lu_dev.ld_obd == obd) {
986                                         sub_tgt = mdt;
987                                         break;
988                                 }
989                         }
990
991                         if (!sub_tgt) {
992                                 CERROR("%s: can not find %s: rc = %d\n",
993                                        lod2obd(lod)->obd_name, param, -EINVAL);
994                                 *ptr = '.';
995                                 GOTO(out, rc);
996                         }
997
998                         *ptr = '.';
999                         tmp = strstr(param, "=");
1000                         tmp++;
1001                         if (*tmp == '1') {
1002                                 struct llog_ctxt *ctxt;
1003
1004                                 obd = sub_tgt->ltd_tgt->dd_lu_dev.ld_obd;
1005                                 ctxt = llog_get_context(obd,
1006                                                 LLOG_UPDATELOG_ORIG_CTXT);
1007                                 if (!ctxt) {
1008                                         rc = llog_setup(env, obd, &obd->obd_olg,
1009                                                        LLOG_UPDATELOG_ORIG_CTXT,
1010                                                     NULL, &llog_common_cat_ops);
1011                                         if (rc < 0)
1012                                                 GOTO(out, rc);
1013                                 } else {
1014                                         llog_ctxt_put(ctxt);
1015                                 }
1016                                 rc = lod_sub_prep_llog(env, lod,
1017                                                        sub_tgt->ltd_tgt,
1018                                                        sub_tgt->ltd_index);
1019                                 if (rc == 0)
1020                                         sub_tgt->ltd_active = 1;
1021                         } else {
1022                                 lod_sub_fini_llog(env, sub_tgt->ltd_tgt,
1023                                                   NULL);
1024                                 sub_tgt->ltd_active = 0;
1025                         }
1026                         GOTO(out, rc);
1027                 }
1028
1029
1030                 if (strstr(param, PARAM_LOD) != NULL)
1031                         count = class_modify_config(lcfg, PARAM_LOD,
1032                                                     &lod->lod_dt_dev.dd_kobj);
1033                 else
1034                         count = class_modify_config(lcfg, PARAM_LOV,
1035                                                     &lod->lod_dt_dev.dd_kobj);
1036                 rc = count > 0 ? 0 : count;
1037                 GOTO(out, rc);
1038         }
1039         case LCFG_PRE_CLEANUP: {
1040                 lod_sub_process_config(env, lod, &lod->lod_mdt_descs, lcfg);
1041                 lod_sub_process_config(env, lod, &lod->lod_ost_descs, lcfg);
1042                 next = &lod->lod_child->dd_lu_dev;
1043                 rc = next->ld_ops->ldo_process_config(env, next, lcfg);
1044                 if (rc != 0)
1045                         CDEBUG(D_HA, "%s: can't process %u: %d\n",
1046                                lod2obd(lod)->obd_name, lcfg->lcfg_command, rc);
1047
1048                 lod_sub_stop_recovery_threads(env, lod);
1049                 lod_fini_distribute_txn(env, lod);
1050                 lod_sub_fini_all_llogs(env, lod);
1051                 break;
1052         }
1053         case LCFG_CLEANUP: {
1054                 if (lod->lod_md_root) {
1055                         dt_object_put(env, &lod->lod_md_root->ldo_obj);
1056                         lod->lod_md_root = NULL;
1057                 }
1058
1059                 /*
1060                  * do cleanup on underlying storage only when
1061                  * all OSPs are cleaned up, as they use that OSD as well
1062                  */
1063                 lu_dev_del_linkage(dev->ld_site, dev);
1064                 lod_sub_process_config(env, lod, &lod->lod_mdt_descs, lcfg);
1065                 lod_sub_process_config(env, lod, &lod->lod_ost_descs, lcfg);
1066                 next = &lod->lod_child->dd_lu_dev;
1067                 rc = next->ld_ops->ldo_process_config(env, next, lcfg);
1068                 if (rc)
1069                         CERROR("%s: can't process %u: rc = %d\n",
1070                                lod2obd(lod)->obd_name, lcfg->lcfg_command, rc);
1071
1072                 rc = obd_disconnect(lod->lod_child_exp);
1073                 if (rc)
1074                         CERROR("error in disconnect from storage: rc = %d\n",
1075                                rc);
1076                 break;
1077         }
1078         default:
1079                 CERROR("%s: unknown command %u\n", lod2obd(lod)->obd_name,
1080                        lcfg->lcfg_command);
1081                 rc = -EINVAL;
1082                 break;
1083         }
1084
1085 out:
1086         RETURN(rc);
1087 }
1088
1089 /**
1090  * Implementation of lu_device_operations::ldo_recovery_complete() for LOD
1091  *
1092  * The method is called once the recovery is complete. This implementation
1093  * distributes the notification to all the known targets.
1094  *
1095  * see include/lu_object.h for the details
1096  */
1097 static int lod_recovery_complete(const struct lu_env *env,
1098                                  struct lu_device *dev)
1099 {
1100         struct lod_device *lod = lu2lod_dev(dev);
1101         struct lu_device *next = &lod->lod_child->dd_lu_dev;
1102         struct lod_tgt_desc *tgt;
1103         int rc;
1104
1105         ENTRY;
1106
1107         LASSERT(lod->lod_recovery_completed == 0);
1108         lod->lod_recovery_completed = 1;
1109
1110         rc = next->ld_ops->ldo_recovery_complete(env, next);
1111
1112         lod_getref(&lod->lod_ost_descs);
1113         if (lod->lod_ost_descs.ltd_tgts_size > 0) {
1114                 lod_foreach_ost(lod, tgt) {
1115                         LASSERT(tgt && tgt->ltd_tgt);
1116                         next = &tgt->ltd_tgt->dd_lu_dev;
1117                         rc = next->ld_ops->ldo_recovery_complete(env, next);
1118                         if (rc)
1119                                 CERROR("%s: can't complete recovery on #%d: rc = %d\n",
1120                                        lod2obd(lod)->obd_name, tgt->ltd_index,
1121                                        rc);
1122                 }
1123         }
1124         lod_putref(lod, &lod->lod_ost_descs);
1125         RETURN(rc);
1126 }
1127
1128 /**
1129  * Init update logs on all sub device
1130  *
1131  * LOD initialize update logs on all of sub devices. Because the initialization
1132  * process might need FLD lookup, see llog_osd_open()->dt_locate()->...->
1133  * lod_object_init(), this API has to be called after LOD is initialized.
1134  * \param[in] env       execution environment
1135  * \param[in] lod       lod device
1136  *
1137  * \retval              0 if update log is initialized successfully.
1138  * \retval              negative errno if initialization fails.
1139  */
1140 static int lod_sub_init_llogs(const struct lu_env *env, struct lod_device *lod)
1141 {
1142         struct lu_tgt_desc *mdt;
1143         int rc;
1144
1145         ENTRY;
1146
1147         /*
1148          * llog must be setup after LOD is initialized, because llog
1149          * initialization include FLD lookup
1150          */
1151         LASSERT(lod->lod_initialized);
1152
1153         /* Init the llog in its own stack */
1154         rc = lod_sub_init_llog(env, lod, lod->lod_child);
1155         if (rc < 0)
1156                 RETURN(rc);
1157
1158         lod_foreach_mdt(lod, mdt) {
1159                 rc = lod_sub_init_llog(env, lod, mdt->ltd_tgt);
1160                 if (rc != 0)
1161                         break;
1162         }
1163
1164         RETURN(rc);
1165 }
1166
1167 /**
1168  * Implementation of lu_device_operations::ldo_prepare() for LOD
1169  *
1170  * see include/lu_object.h for the details.
1171  */
1172 static int lod_prepare(const struct lu_env *env, struct lu_device *pdev,
1173                        struct lu_device *cdev)
1174 {
1175         struct lod_device *lod = lu2lod_dev(cdev);
1176         struct lu_device *next = &lod->lod_child->dd_lu_dev;
1177         struct lu_fid *fid = &lod_env_info(env)->lti_fid;
1178         int rc;
1179         struct dt_object *root;
1180         struct dt_object *dto;
1181         u32 index;
1182
1183         ENTRY;
1184
1185         rc = next->ld_ops->ldo_prepare(env, pdev, next);
1186         if (rc != 0) {
1187                 CERROR("%s: prepare bottom error: rc = %d\n",
1188                        lod2obd(lod)->obd_name, rc);
1189                 RETURN(rc);
1190         }
1191
1192         lod->lod_initialized = 1;
1193
1194         rc = dt_root_get(env, lod->lod_child, fid);
1195         if (rc < 0)
1196                 RETURN(rc);
1197
1198         root = dt_locate(env, lod->lod_child, fid);
1199         if (IS_ERR(root))
1200                 RETURN(PTR_ERR(root));
1201
1202         /* Create update log object */
1203         index = lu_site2seq(lod2lu_dev(lod)->ld_site)->ss_node_id;
1204         lu_update_log_fid(fid, index);
1205
1206         dto = local_file_find_or_create_with_fid(env, lod->lod_child,
1207                                                  fid, root,
1208                                                  lod_update_log_name,
1209                                                  S_IFREG | 0644);
1210         if (IS_ERR(dto))
1211                 GOTO(out_put, rc = PTR_ERR(dto));
1212
1213         dt_object_put(env, dto);
1214
1215         /* Create update log dir */
1216         lu_update_log_dir_fid(fid, index);
1217         dto = local_file_find_or_create_with_fid(env, lod->lod_child,
1218                                                  fid, root,
1219                                                  lod_update_log_dir_name,
1220                                                  S_IFDIR | 0644);
1221         if (IS_ERR(dto))
1222                 GOTO(out_put, rc = PTR_ERR(dto));
1223
1224         dt_object_put(env, dto);
1225
1226         rc = lod_prepare_distribute_txn(env, lod);
1227         if (rc != 0)
1228                 GOTO(out_put, rc);
1229
1230         rc = lod_sub_init_llogs(env, lod);
1231         if (rc != 0)
1232                 GOTO(out_put, rc);
1233
1234 out_put:
1235         dt_object_put(env, root);
1236
1237         RETURN(rc);
1238 }
1239
1240 const struct lu_device_operations lod_lu_ops = {
1241         .ldo_object_alloc       = lod_object_alloc,
1242         .ldo_process_config     = lod_process_config,
1243         .ldo_recovery_complete  = lod_recovery_complete,
1244         .ldo_prepare            = lod_prepare,
1245 };
1246
1247 /**
1248  * Implementation of dt_device_operations::dt_root_get() for LOD
1249  *
1250  * see include/dt_object.h for the details.
1251  */
1252 static int lod_root_get(const struct lu_env *env,
1253                         struct dt_device *dev, struct lu_fid *f)
1254 {
1255         return dt_root_get(env, dt2lod_dev(dev)->lod_child, f);
1256 }
1257
1258 static void lod_statfs_sum(struct obd_statfs *sfs,
1259                              struct obd_statfs *ost_sfs, int *bs)
1260 {
1261         while (ost_sfs->os_bsize < *bs) {
1262                 *bs >>= 1;
1263                 sfs->os_bsize >>= 1;
1264                 sfs->os_bavail <<= 1;
1265                 sfs->os_blocks <<= 1;
1266                 sfs->os_bfree <<= 1;
1267                 sfs->os_granted <<= 1;
1268         }
1269         while (ost_sfs->os_bsize > *bs) {
1270                 ost_sfs->os_bsize >>= 1;
1271                 ost_sfs->os_bavail <<= 1;
1272                 ost_sfs->os_blocks <<= 1;
1273                 ost_sfs->os_bfree <<= 1;
1274                 ost_sfs->os_granted <<= 1;
1275         }
1276         sfs->os_bavail += ost_sfs->os_bavail;
1277         sfs->os_blocks += ost_sfs->os_blocks;
1278         sfs->os_bfree += ost_sfs->os_bfree;
1279         sfs->os_granted += ost_sfs->os_granted;
1280 }
1281
1282 /**
1283  * Implementation of dt_device_operations::dt_statfs() for LOD
1284  *
1285  * see include/dt_object.h for the details.
1286  */
1287 static int lod_statfs(const struct lu_env *env, struct dt_device *dev,
1288                       struct obd_statfs *sfs, struct obd_statfs_info *info)
1289 {
1290         struct lod_device *lod = dt2lod_dev(dev);
1291         struct lu_tgt_desc *tgt;
1292         struct obd_statfs ost_sfs;
1293         u64 ost_files = 0;
1294         u64 ost_ffree = 0;
1295         int rc, bs;
1296
1297         rc = dt_statfs(env, dt2lod_dev(dev)->lod_child, sfs);
1298         if (rc)
1299                 GOTO(out, rc);
1300
1301         bs = sfs->os_bsize;
1302
1303         sfs->os_bavail = 0;
1304         sfs->os_blocks = 0;
1305         sfs->os_bfree = 0;
1306         sfs->os_granted = 0;
1307
1308         lod_getref(&lod->lod_mdt_descs);
1309         lod_foreach_mdt(lod, tgt) {
1310                 rc = dt_statfs(env, tgt->ltd_tgt, &ost_sfs);
1311                 /* ignore errors */
1312                 if (rc)
1313                         continue;
1314                 sfs->os_files += ost_sfs.os_files;
1315                 sfs->os_ffree += ost_sfs.os_ffree;
1316                 lod_statfs_sum(sfs, &ost_sfs, &bs);
1317         }
1318         lod_putref(lod, &lod->lod_mdt_descs);
1319
1320         /*
1321          * at some point we can check whether DoM is enabled and
1322          * decide how to account MDT space. for simplicity let's
1323          * just fallback to pre-DoM policy if any OST is alive
1324          */
1325         lod_getref(&lod->lod_ost_descs);
1326         lod_foreach_ost(lod, tgt) {
1327                 rc = dt_statfs(env, tgt->ltd_tgt, &ost_sfs);
1328                 /* ignore errors */
1329                 if (rc || ost_sfs.os_bsize == 0)
1330                         continue;
1331                 if (!ost_files) {
1332                         /*
1333                          * if only MDTs with DoM then report only MDT blocks,
1334                          * otherwise show only OST blocks, and DoM is "free"
1335                          */
1336                         sfs->os_bavail = 0;
1337                         sfs->os_blocks = 0;
1338                         sfs->os_bfree = 0;
1339                         sfs->os_granted = 0;
1340                 }
1341                 ost_files += ost_sfs.os_files;
1342                 ost_ffree += ost_sfs.os_ffree;
1343                 ost_sfs.os_bavail += ost_sfs.os_granted;
1344                 lod_statfs_sum(sfs, &ost_sfs, &bs);
1345                 LASSERTF(bs == ost_sfs.os_bsize, "%d != %d\n",
1346                         (int)sfs->os_bsize, (int)ost_sfs.os_bsize);
1347         }
1348         lod_putref(lod, &lod->lod_ost_descs);
1349         sfs->os_state |= OS_STATE_SUM;
1350
1351         /* If we have _some_ OSTs, but don't have as many free objects on the
1352          * OSTs as inodes on the MDTs, reduce the reported number of inodes
1353          * to compensate, so that the "inodes in use" number is correct.
1354          * This should be kept in sync with ll_statfs_internal().
1355          */
1356         if (ost_files && ost_ffree < sfs->os_ffree) {
1357                 sfs->os_files = (sfs->os_files - sfs->os_ffree) + ost_ffree;
1358                 sfs->os_ffree = ost_ffree;
1359         }
1360
1361         /* a single successful statfs should be enough */
1362         rc = 0;
1363
1364 out:
1365         RETURN(rc);
1366 }
1367
1368 /**
1369  * Implementation of dt_device_operations::dt_trans_create() for LOD
1370  *
1371  * Creates a transaction using local (to this node) OSD.
1372  *
1373  * see include/dt_object.h for the details.
1374  */
1375 static struct thandle *lod_trans_create(const struct lu_env *env,
1376                                         struct dt_device *dt)
1377 {
1378         struct thandle *th;
1379
1380         th = top_trans_create(env, dt2lod_dev(dt)->lod_child);
1381         if (IS_ERR(th))
1382                 return th;
1383
1384         th->th_dev = dt;
1385
1386         return th;
1387 }
1388
1389 /**
1390  * Implementation of dt_device_operations::dt_trans_start() for LOD
1391  *
1392  * Starts the set of local transactions using the targets involved
1393  * in declare phase. Initial support for the distributed transactions.
1394  *
1395  * see include/dt_object.h for the details.
1396  */
1397 static int lod_trans_start(const struct lu_env *env, struct dt_device *dt,
1398                            struct thandle *th)
1399 {
1400         return top_trans_start(env, dt2lod_dev(dt)->lod_child, th);
1401 }
1402
1403 static int lod_trans_cb_add(struct thandle *th,
1404                             struct dt_txn_commit_cb *dcb)
1405 {
1406         struct top_thandle      *top_th = container_of(th, struct top_thandle,
1407                                                        tt_super);
1408         return dt_trans_cb_add(top_th->tt_master_sub_thandle, dcb);
1409 }
1410
1411 /**
1412  * add noop update to the update records
1413  *
1414  * Add noop updates to the update records, which is only used in
1415  * test right now.
1416  *
1417  * \param[in] env       execution environment
1418  * \param[in] dt        dt device of lod
1419  * \param[in] th        thandle
1420  * \param[in] count     the count of update records to be added.
1421  *
1422  * \retval              0 if adding succeeds.
1423  * \retval              negative errno if adding fails.
1424  */
1425 static int lod_add_noop_records(const struct lu_env *env,
1426                                 struct dt_device *dt, struct thandle *th,
1427                                 int count)
1428 {
1429         struct top_thandle *top_th;
1430         struct lu_fid *fid = &lod_env_info(env)->lti_fid;
1431         int i;
1432         int rc = 0;
1433
1434         top_th = container_of(th, struct top_thandle, tt_super);
1435         if (!top_th->tt_multiple_thandle)
1436                 return 0;
1437
1438         fid_zero(fid);
1439         for (i = 0; i < count; i++) {
1440                 rc = update_record_pack(noop, th, fid);
1441                 if (rc < 0)
1442                         return rc;
1443         }
1444         return rc;
1445 }
1446
1447 /**
1448  * Implementation of dt_device_operations::dt_trans_stop() for LOD
1449  *
1450  * Stops the set of local transactions using the targets involved
1451  * in declare phase. Initial support for the distributed transactions.
1452  *
1453  * see include/dt_object.h for the details.
1454  */
1455 static int lod_trans_stop(const struct lu_env *env, struct dt_device *dt,
1456                           struct thandle *th)
1457 {
1458         if (OBD_FAIL_CHECK(OBD_FAIL_SPLIT_UPDATE_REC)) {
1459                 int rc;
1460
1461                 rc = lod_add_noop_records(env, dt, th, 5000);
1462                 if (rc < 0)
1463                         RETURN(rc);
1464         }
1465         return top_trans_stop(env, dt2lod_dev(dt)->lod_child, th);
1466 }
1467
1468 /**
1469  * Implementation of dt_device_operations::dt_conf_get() for LOD
1470  *
1471  * Currently returns the configuration provided by the local OSD.
1472  *
1473  * see include/dt_object.h for the details.
1474  */
1475 static void lod_conf_get(const struct lu_env *env,
1476                          const struct dt_device *dev,
1477                          struct dt_device_param *param)
1478 {
1479         dt_conf_get(env, dt2lod_dev((struct dt_device *)dev)->lod_child, param);
1480 }
1481
1482 /**
1483  * Implementation of dt_device_operations::dt_sync() for LOD
1484  *
1485  * Syncs all known OST targets. Very very expensive and used
1486  * rarely by LFSCK now. Should not be used in general.
1487  *
1488  * see include/dt_object.h for the details.
1489  */
1490 static int lod_sync(const struct lu_env *env, struct dt_device *dev)
1491 {
1492         struct lod_device *lod = dt2lod_dev(dev);
1493         struct lu_tgt_desc *tgt;
1494         int rc = 0;
1495
1496         ENTRY;
1497
1498         lod_getref(&lod->lod_ost_descs);
1499         lod_foreach_ost(lod, tgt) {
1500                 if (!tgt->ltd_active)
1501                         continue;
1502                 rc = dt_sync(env, tgt->ltd_tgt);
1503                 if (rc) {
1504                         if (rc != -ENOTCONN) {
1505                                 CERROR("%s: can't sync ost %u: rc = %d\n",
1506                                        lod2obd(lod)->obd_name, tgt->ltd_index,
1507                                        rc);
1508                                 break;
1509                         }
1510                         rc = 0;
1511                 }
1512         }
1513         lod_putref(lod, &lod->lod_ost_descs);
1514
1515         if (rc)
1516                 RETURN(rc);
1517
1518         lod_getref(&lod->lod_mdt_descs);
1519         lod_foreach_mdt(lod, tgt) {
1520                 if (!tgt->ltd_active)
1521                         continue;
1522                 rc = dt_sync(env, tgt->ltd_tgt);
1523                 if (rc) {
1524                         if (rc != -ENOTCONN) {
1525                                 CERROR("%s: can't sync mdt %u: rc = %d\n",
1526                                        lod2obd(lod)->obd_name, tgt->ltd_index,
1527                                        rc);
1528                                 break;
1529                         }
1530                         rc = 0;
1531                 }
1532         }
1533         lod_putref(lod, &lod->lod_mdt_descs);
1534
1535         if (rc == 0)
1536                 rc = dt_sync(env, lod->lod_child);
1537
1538         RETURN(rc);
1539 }
1540
1541 /**
1542  * Implementation of dt_device_operations::dt_ro() for LOD
1543  *
1544  * Turns local OSD read-only, used for the testing only.
1545  *
1546  * see include/dt_object.h for the details.
1547  */
1548 static int lod_ro(const struct lu_env *env, struct dt_device *dev)
1549 {
1550         return dt_ro(env, dt2lod_dev(dev)->lod_child);
1551 }
1552
1553 /**
1554  * Implementation of dt_device_operations::dt_commit_async() for LOD
1555  *
1556  * Asks local OSD to commit sooner.
1557  *
1558  * see include/dt_object.h for the details.
1559  */
1560 static int lod_commit_async(const struct lu_env *env, struct dt_device *dev)
1561 {
1562         return dt_commit_async(env, dt2lod_dev(dev)->lod_child);
1563 }
1564
1565 static const struct dt_device_operations lod_dt_ops = {
1566         .dt_root_get         = lod_root_get,
1567         .dt_statfs           = lod_statfs,
1568         .dt_trans_create     = lod_trans_create,
1569         .dt_trans_start      = lod_trans_start,
1570         .dt_trans_stop       = lod_trans_stop,
1571         .dt_conf_get         = lod_conf_get,
1572         .dt_sync             = lod_sync,
1573         .dt_ro               = lod_ro,
1574         .dt_commit_async     = lod_commit_async,
1575         .dt_trans_cb_add     = lod_trans_cb_add,
1576 };
1577
1578 /**
1579  * Connect to a local OSD.
1580  *
1581  * Used to connect to the local OSD at mount. OSD name is taken from the
1582  * configuration command passed. This connection is used to identify LU
1583  * site and pin the OSD from early removal.
1584  *
1585  * \param[in] env               LU environment provided by the caller
1586  * \param[in] lod               lod device
1587  * \param[in] cfg               configuration command to apply
1588  *
1589  * \retval 0                    on success
1590  * \retval negative             negated errno on error
1591  **/
1592 static int lod_connect_to_osd(const struct lu_env *env, struct lod_device *lod,
1593                               struct lustre_cfg *cfg)
1594 {
1595         struct obd_connect_data *data = NULL;
1596         struct obd_device *obd;
1597         char *nextdev = NULL, *p, *s;
1598         int rc, len = 0;
1599
1600         ENTRY;
1601
1602         LASSERT(cfg);
1603         LASSERT(lod->lod_child_exp == NULL);
1604
1605         /*
1606          * compatibility hack: we still use old config logs
1607          * which specify LOV, but we need to learn underlying
1608          * OSD device, which is supposed to be:
1609          *  <fsname>-MDTxxxx-osd
1610          *
1611          * 2.x MGS generates lines like the following:
1612          *   #03 (176)lov_setup 0:lustre-MDT0000-mdtlov  1:(struct lov_desc)
1613          * 1.8 MGS generates lines like the following:
1614          *   #03 (168)lov_setup 0:lustre-mdtlov  1:(struct lov_desc)
1615          *
1616          * we use "-MDT" to differentiate 2.x from 1.8
1617          */
1618         p = lustre_cfg_string(cfg, 0);
1619         if (p && strstr(p, "-mdtlov")) {
1620                 len = strlen(p) + 6;
1621                 OBD_ALLOC(nextdev, len);
1622                 if (!nextdev)
1623                         GOTO(out, rc = -ENOMEM);
1624
1625                 strcpy(nextdev, p);
1626                 s = strstr(nextdev, "-mdtlov");
1627                 if (unlikely(!s)) {
1628                         CERROR("%s: unable to parse device name: rc = %d\n",
1629                                lustre_cfg_string(cfg, 0), -EINVAL);
1630                         GOTO(out, rc = -EINVAL);
1631                 }
1632
1633                 if (strstr(nextdev, "-MDT")) {
1634                         /* 2.x config */
1635                         strcpy(s, "-osd");
1636                 } else {
1637                         /* 1.8 config */
1638                         strcpy(s, "-MDT0000-osd");
1639                 }
1640         } else {
1641                 CERROR("%s: unable to parse device name: rc = %d\n",
1642                        lustre_cfg_string(cfg, 0), -EINVAL);
1643                 GOTO(out, rc = -EINVAL);
1644         }
1645
1646         OBD_ALLOC_PTR(data);
1647         if (!data)
1648                 GOTO(out, rc = -ENOMEM);
1649
1650         obd = class_name2obd(nextdev);
1651         if (!obd) {
1652                 CERROR("%s: can not locate next device: rc = %d\n",
1653                        nextdev, -ENOTCONN);
1654                 GOTO(out, rc = -ENOTCONN);
1655         }
1656
1657         data->ocd_connect_flags = OBD_CONNECT_VERSION;
1658         data->ocd_version = LUSTRE_VERSION_CODE;
1659
1660         rc = obd_connect(env, &lod->lod_child_exp, obd, &obd->obd_uuid,
1661                          data, NULL);
1662         if (rc) {
1663                 CERROR("%s: cannot connect to next dev: rc = %d\n",
1664                        nextdev, rc);
1665                 GOTO(out, rc);
1666         }
1667
1668         lod->lod_dt_dev.dd_lu_dev.ld_site =
1669                 lod->lod_child_exp->exp_obd->obd_lu_dev->ld_site;
1670         LASSERT(lod->lod_dt_dev.dd_lu_dev.ld_site);
1671         lod->lod_child = lu2dt_dev(lod->lod_child_exp->exp_obd->obd_lu_dev);
1672
1673 out:
1674         if (data)
1675                 OBD_FREE_PTR(data);
1676         if (nextdev)
1677                 OBD_FREE(nextdev, len);
1678         RETURN(rc);
1679 }
1680
1681 /**
1682  * Initialize LOD device at setup.
1683  *
1684  * Initializes the given LOD device using the original configuration command.
1685  * The function initiates a connection to the local OSD and initializes few
1686  * internal structures like pools, target tables, etc.
1687  *
1688  * \param[in] env               LU environment provided by the caller
1689  * \param[in] lod               lod device
1690  * \param[in] ldt               not used
1691  * \param[in] cfg               configuration command
1692  *
1693  * \retval 0                    on success
1694  * \retval negative             negated errno on error
1695  **/
1696 static int lod_init0(const struct lu_env *env, struct lod_device *lod,
1697                      struct lu_device_type *ldt, struct lustre_cfg *cfg)
1698 {
1699         struct dt_device_param ddp;
1700         struct obd_device *obd;
1701         int rc;
1702
1703         ENTRY;
1704
1705         obd = class_name2obd(lustre_cfg_string(cfg, 0));
1706         if (!obd) {
1707                 rc = -ENODEV;
1708                 CERROR("Cannot find obd with name '%s': rc = %d\n",
1709                        lustre_cfg_string(cfg, 0), rc);
1710                 RETURN(rc);
1711         }
1712
1713         obd->obd_lu_dev = &lod->lod_dt_dev.dd_lu_dev;
1714         lod->lod_dt_dev.dd_lu_dev.ld_obd = obd;
1715         lod->lod_dt_dev.dd_lu_dev.ld_ops = &lod_lu_ops;
1716         lod->lod_dt_dev.dd_ops = &lod_dt_ops;
1717
1718         rc = lod_connect_to_osd(env, lod, cfg);
1719         if (rc)
1720                 RETURN(rc);
1721
1722         dt_conf_get(env, &lod->lod_dt_dev, &ddp);
1723         lod->lod_osd_max_easize = ddp.ddp_max_ea_size;
1724         lod->lod_dom_max_stripesize = (1ULL << 20); /* 1Mb as default value */
1725
1726         /* setup obd to be used with old lov code */
1727         rc = lod_pools_init(lod, cfg);
1728         if (rc)
1729                 GOTO(out_disconnect, rc);
1730
1731         rc = lod_procfs_init(lod);
1732         if (rc)
1733                 GOTO(out_pools, rc);
1734
1735         spin_lock_init(&lod->lod_lock);
1736         spin_lock_init(&lod->lod_connects_lock);
1737         lu_tgt_descs_init(&lod->lod_mdt_descs, true);
1738         lu_tgt_descs_init(&lod->lod_ost_descs, false);
1739
1740         RETURN(0);
1741
1742 out_pools:
1743         lod_pools_fini(lod);
1744 out_disconnect:
1745         obd_disconnect(lod->lod_child_exp);
1746         RETURN(rc);
1747 }
1748
1749 /**
1750  * Implementation of lu_device_type_operations::ldto_device_free() for LOD
1751  *
1752  * Releases the memory allocated for LOD device.
1753  *
1754  * see include/lu_object.h for the details.
1755  */
1756 static struct lu_device *lod_device_free(const struct lu_env *env,
1757                                          struct lu_device *lu)
1758 {
1759         struct lod_device *lod = lu2lod_dev(lu);
1760         struct lu_device  *next = &lod->lod_child->dd_lu_dev;
1761
1762         ENTRY;
1763
1764         if (atomic_read(&lu->ld_ref) > 0 &&
1765             !cfs_hash_is_empty(lu->ld_site->ls_obj_hash)) {
1766                 LIBCFS_DEBUG_MSG_DATA_DECL(msgdata, D_ERROR, NULL);
1767                 lu_site_print(env, lu->ld_site, &msgdata, lu_cdebug_printer);
1768         }
1769         LASSERTF(atomic_read(&lu->ld_ref) == 0, "lu is %p\n", lu);
1770         dt_device_fini(&lod->lod_dt_dev);
1771         OBD_FREE_PTR(lod);
1772         RETURN(next);
1773 }
1774
1775 /**
1776  * Implementation of lu_device_type_operations::ldto_device_alloc() for LOD
1777  *
1778  * Allocates LOD device and calls the helpers to initialize it.
1779  *
1780  * see include/lu_object.h for the details.
1781  */
1782 static struct lu_device *lod_device_alloc(const struct lu_env *env,
1783                                           struct lu_device_type *type,
1784                                           struct lustre_cfg *lcfg)
1785 {
1786         struct lod_device *lod;
1787         struct lu_device *lu_dev;
1788
1789         OBD_ALLOC_PTR(lod);
1790         if (!lod) {
1791                 lu_dev = ERR_PTR(-ENOMEM);
1792         } else {
1793                 int rc;
1794
1795                 lu_dev = lod2lu_dev(lod);
1796                 dt_device_init(&lod->lod_dt_dev, type);
1797                 rc = lod_init0(env, lod, type, lcfg);
1798                 if (rc != 0) {
1799                         lod_device_free(env, lu_dev);
1800                         lu_dev = ERR_PTR(rc);
1801                 }
1802         }
1803
1804         return lu_dev;
1805 }
1806
1807 static void lod_avoid_guide_fini(struct lod_avoid_guide *lag)
1808 {
1809         if (lag->lag_oss_avoid_array)
1810                 OBD_FREE(lag->lag_oss_avoid_array,
1811                          sizeof(u32) * lag->lag_oaa_size);
1812         if (lag->lag_ost_avoid_bitmap)
1813                 CFS_FREE_BITMAP(lag->lag_ost_avoid_bitmap);
1814 }
1815
1816 /**
1817  * Implementation of lu_device_type_operations::ldto_device_fini() for LOD
1818  *
1819  * Releases the internal resources used by LOD device.
1820  *
1821  * see include/lu_object.h for the details.
1822  */
1823 static struct lu_device *lod_device_fini(const struct lu_env *env,
1824                                          struct lu_device *d)
1825 {
1826         struct lod_device *lod = lu2lod_dev(d);
1827         int rc;
1828
1829         ENTRY;
1830
1831         lod_pools_fini(lod);
1832
1833         lod_procfs_fini(lod);
1834
1835         rc = lod_fini_tgt(env, lod, &lod->lod_ost_descs);
1836         if (rc)
1837                 CERROR("%s: can not fini ost descriptors: rc =  %d\n",
1838                         lod2obd(lod)->obd_name, rc);
1839
1840         rc = lod_fini_tgt(env, lod, &lod->lod_mdt_descs);
1841         if (rc)
1842                 CERROR("%s: can not fini mdt descriptors: rc =  %d\n",
1843                         lod2obd(lod)->obd_name, rc);
1844
1845         RETURN(NULL);
1846 }
1847
1848 /**
1849  * Implementation of obd_ops::o_connect() for LOD
1850  *
1851  * Used to track all the users of this specific LOD device,
1852  * so the device stays up until the last user disconnected.
1853  *
1854  * \param[in] env               LU environment provided by the caller
1855  * \param[out] exp              export the caller will be using to access LOD
1856  * \param[in] obd               OBD device representing LOD device
1857  * \param[in] cluuid            unique identifier of the caller
1858  * \param[in] data              not used
1859  * \param[in] localdata         not used
1860  *
1861  * \retval 0                    on success
1862  * \retval negative             negated errno on error
1863  **/
1864 static int lod_obd_connect(const struct lu_env *env, struct obd_export **exp,
1865                            struct obd_device *obd, struct obd_uuid *cluuid,
1866                            struct obd_connect_data *data, void *localdata)
1867 {
1868         struct lod_device *lod = lu2lod_dev(obd->obd_lu_dev);
1869         struct lustre_handle conn;
1870         int rc;
1871
1872         ENTRY;
1873
1874         CDEBUG(D_CONFIG, "connect #%d\n", lod->lod_connects);
1875
1876         rc = class_connect(&conn, obd, cluuid);
1877         if (rc)
1878                 RETURN(rc);
1879
1880         *exp = class_conn2export(&conn);
1881
1882         spin_lock(&lod->lod_connects_lock);
1883         lod->lod_connects++;
1884         /* at the moment we expect the only user */
1885         LASSERT(lod->lod_connects == 1);
1886         spin_unlock(&lod->lod_connects_lock);
1887
1888         RETURN(0);
1889 }
1890
1891 /**
1892  *
1893  * Implementation of obd_ops::o_disconnect() for LOD
1894  *
1895  * When the caller doesn't need to use this LOD instance, it calls
1896  * obd_disconnect() and LOD releases corresponding export/reference count.
1897  * Once all the users gone, LOD device is released.
1898  *
1899  * \param[in] exp               export provided to the caller in obd_connect()
1900  *
1901  * \retval 0                    on success
1902  * \retval negative             negated errno on error
1903  **/
1904 static int lod_obd_disconnect(struct obd_export *exp)
1905 {
1906         struct obd_device *obd = exp->exp_obd;
1907         struct lod_device *lod = lu2lod_dev(obd->obd_lu_dev);
1908         int rc, release = 0;
1909
1910         ENTRY;
1911
1912         /* Only disconnect the underlying layers on the final disconnect. */
1913         spin_lock(&lod->lod_connects_lock);
1914         lod->lod_connects--;
1915         if (lod->lod_connects != 0) {
1916                 /* why should there be more than 1 connect? */
1917                 spin_unlock(&lod->lod_connects_lock);
1918                 CERROR("%s: disconnect #%d\n", exp->exp_obd->obd_name,
1919                        lod->lod_connects);
1920                 goto out;
1921         }
1922         spin_unlock(&lod->lod_connects_lock);
1923
1924         /* the last user of lod has gone, let's release the device */
1925         release = 1;
1926
1927 out:
1928         rc = class_disconnect(exp); /* bz 9811 */
1929
1930         if (rc == 0 && release)
1931                 class_manual_cleanup(obd);
1932         RETURN(rc);
1933 }
1934
1935 LU_KEY_INIT(lod, struct lod_thread_info);
1936
1937 static void lod_key_fini(const struct lu_context *ctx,
1938                 struct lu_context_key *key, void *data)
1939 {
1940         struct lod_thread_info *info = data;
1941         struct lod_layout_component *lds =
1942                                 info->lti_def_striping.lds_def_comp_entries;
1943
1944         /*
1945          * allocated in lod_get_lov_ea
1946          * XXX: this is overload, a tread may have such store but used only
1947          * once. Probably better would be pool of such stores per LOD.
1948          */
1949         if (info->lti_ea_store) {
1950                 OBD_FREE_LARGE(info->lti_ea_store, info->lti_ea_store_size);
1951                 info->lti_ea_store = NULL;
1952                 info->lti_ea_store_size = 0;
1953         }
1954         lu_buf_free(&info->lti_linkea_buf);
1955
1956         if (lds)
1957                 lod_free_def_comp_entries(&info->lti_def_striping);
1958
1959         if (info->lti_comp_size > 0)
1960                 OBD_FREE(info->lti_comp_idx,
1961                          info->lti_comp_size * sizeof(u32));
1962
1963         lod_avoid_guide_fini(&info->lti_avoid);
1964
1965         OBD_FREE_PTR(info);
1966 }
1967
1968 /* context key: lod_thread_key */
1969 LU_CONTEXT_KEY_DEFINE(lod, LCT_MD_THREAD);
1970
1971 LU_TYPE_INIT_FINI(lod, &lod_thread_key);
1972
1973 static struct lu_device_type_operations lod_device_type_ops = {
1974         .ldto_init           = lod_type_init,
1975         .ldto_fini           = lod_type_fini,
1976
1977         .ldto_start          = lod_type_start,
1978         .ldto_stop           = lod_type_stop,
1979
1980         .ldto_device_alloc   = lod_device_alloc,
1981         .ldto_device_free    = lod_device_free,
1982
1983         .ldto_device_fini    = lod_device_fini
1984 };
1985
1986 static struct lu_device_type lod_device_type = {
1987         .ldt_tags     = LU_DEVICE_DT,
1988         .ldt_name     = LUSTRE_LOD_NAME,
1989         .ldt_ops      = &lod_device_type_ops,
1990         .ldt_ctx_tags = LCT_MD_THREAD,
1991 };
1992
1993 /**
1994  * Implementation of obd_ops::o_get_info() for LOD
1995  *
1996  * Currently, there is only one supported key: KEY_OSP_CONNECTED , to provide
1997  * the caller binary status whether LOD has seen connection to any OST target.
1998  * It will also check if the MDT update log context being initialized (if
1999  * needed).
2000  *
2001  * \param[in] env               LU environment provided by the caller
2002  * \param[in] exp               export of the caller
2003  * \param[in] keylen            len of the key
2004  * \param[in] key               the key
2005  * \param[in] vallen            not used
2006  * \param[in] val               not used
2007  *
2008  * \retval                      0 if a connection was seen
2009  * \retval                      -EAGAIN if LOD isn't running yet or no
2010  *                              connection has been seen yet
2011  * \retval                      -EINVAL if not supported key is requested
2012  **/
2013 static int lod_obd_get_info(const struct lu_env *env, struct obd_export *exp,
2014                             u32 keylen, void *key, u32 *vallen, void *val)
2015 {
2016         int rc = -EINVAL;
2017
2018         if (KEY_IS(KEY_OSP_CONNECTED)) {
2019                 struct obd_device *obd = exp->exp_obd;
2020                 struct lod_device *d;
2021                 struct lod_tgt_desc *tgt;
2022                 int rc = 1;
2023
2024                 if (!obd->obd_set_up || obd->obd_stopping)
2025                         RETURN(-EAGAIN);
2026
2027                 d = lu2lod_dev(obd->obd_lu_dev);
2028                 lod_getref(&d->lod_ost_descs);
2029                 lod_foreach_ost(d, tgt) {
2030                         rc = obd_get_info(env, tgt->ltd_exp, keylen, key,
2031                                           vallen, val);
2032                         /* one healthy device is enough */
2033                         if (rc == 0)
2034                                 break;
2035                 }
2036                 lod_putref(d, &d->lod_ost_descs);
2037
2038                 lod_getref(&d->lod_mdt_descs);
2039                 lod_foreach_mdt(d, tgt) {
2040                         struct llog_ctxt *ctxt;
2041
2042                         if (!tgt->ltd_active)
2043                                 continue;
2044
2045                         ctxt = llog_get_context(tgt->ltd_tgt->dd_lu_dev.ld_obd,
2046                                                 LLOG_UPDATELOG_ORIG_CTXT);
2047                         if (!ctxt) {
2048                                 CDEBUG(D_INFO, "%s: %s is not ready.\n",
2049                                        obd->obd_name,
2050                                       tgt->ltd_tgt->dd_lu_dev.ld_obd->obd_name);
2051                                 rc = -EAGAIN;
2052                                 break;
2053                         }
2054                         if (!ctxt->loc_handle) {
2055                                 CDEBUG(D_INFO, "%s: %s is not ready.\n",
2056                                        obd->obd_name,
2057                                       tgt->ltd_tgt->dd_lu_dev.ld_obd->obd_name);
2058                                 rc = -EAGAIN;
2059                                 llog_ctxt_put(ctxt);
2060                                 break;
2061                         }
2062                         llog_ctxt_put(ctxt);
2063                 }
2064                 lod_putref(d, &d->lod_mdt_descs);
2065
2066                 RETURN(rc);
2067         }
2068
2069         RETURN(rc);
2070 }
2071
2072 static int lod_obd_set_info_async(const struct lu_env *env,
2073                                   struct obd_export *exp,
2074                                   u32 keylen, void *key,
2075                                   u32 vallen, void *val,
2076                                   struct ptlrpc_request_set *set)
2077 {
2078         struct obd_device *obd = class_exp2obd(exp);
2079         struct lod_device *d;
2080         struct lod_tgt_desc *tgt;
2081         int no_set = 0;
2082         int rc = 0, rc2;
2083
2084         ENTRY;
2085
2086         if (!set) {
2087                 no_set = 1;
2088                 set = ptlrpc_prep_set();
2089                 if (!set)
2090                         RETURN(-ENOMEM);
2091         }
2092
2093         d = lu2lod_dev(obd->obd_lu_dev);
2094         lod_getref(&d->lod_ost_descs);
2095         lod_foreach_ost(d, tgt) {
2096                 if (!tgt->ltd_active)
2097                         continue;
2098
2099                 rc2 = obd_set_info_async(env, tgt->ltd_exp, keylen, key,
2100                                          vallen, val, set);
2101                 if (rc2 != 0 && rc == 0)
2102                         rc = rc2;
2103         }
2104         lod_putref(d, &d->lod_ost_descs);
2105
2106         lod_getref(&d->lod_mdt_descs);
2107         lod_foreach_mdt(d, tgt) {
2108                 if (!tgt->ltd_active)
2109                         continue;
2110                 rc2 = obd_set_info_async(env, tgt->ltd_exp, keylen, key,
2111                                          vallen, val, set);
2112                 if (rc2 != 0 && rc == 0)
2113                         rc = rc2;
2114         }
2115         lod_putref(d, &d->lod_mdt_descs);
2116
2117
2118         if (no_set) {
2119                 rc2 = ptlrpc_set_wait(env, set);
2120                 if (rc2 == 0 && rc == 0)
2121                         rc = rc2;
2122                 ptlrpc_set_destroy(set);
2123         }
2124         RETURN(rc);
2125 }
2126
2127 static struct obd_ops lod_obd_device_ops = {
2128         .o_owner        = THIS_MODULE,
2129         .o_connect      = lod_obd_connect,
2130         .o_disconnect   = lod_obd_disconnect,
2131         .o_get_info     = lod_obd_get_info,
2132         .o_set_info_async = lod_obd_set_info_async,
2133         .o_pool_new     = lod_pool_new,
2134         .o_pool_rem     = lod_pool_remove,
2135         .o_pool_add     = lod_pool_add,
2136         .o_pool_del     = lod_pool_del,
2137 };
2138
2139 static int __init lod_init(void)
2140 {
2141         struct obd_type *sym;
2142         int rc;
2143
2144         rc = lu_kmem_init(lod_caches);
2145         if (rc)
2146                 return rc;
2147
2148         rc = class_register_type(&lod_obd_device_ops, NULL, true, NULL,
2149                                  LUSTRE_LOD_NAME, &lod_device_type);
2150         if (rc) {
2151                 lu_kmem_fini(lod_caches);
2152                 return rc;
2153         }
2154
2155         /* create "lov" entry for compatibility purposes */
2156         sym = class_add_symlinks(LUSTRE_LOV_NAME, true);
2157         if (IS_ERR(sym)) {
2158                 rc = PTR_ERR(sym);
2159                 /* does real "lov" already exist ? */
2160                 if (rc == -EEXIST)
2161                         rc = 0;
2162         }
2163
2164         return rc;
2165 }
2166
2167 static void __exit lod_exit(void)
2168 {
2169         struct obd_type *sym = class_search_type(LUSTRE_LOV_NAME);
2170
2171         /* if this was never fully initialized by the lov layer
2172          * then we are responsible for freeing this obd_type
2173          */
2174         if (sym) {
2175                 /* final put if we manage this obd type */
2176                 if (sym->typ_sym_filter)
2177                         kobject_put(&sym->typ_kobj);
2178                 /* put reference taken by class_search_type */
2179                 kobject_put(&sym->typ_kobj);
2180         }
2181
2182         class_unregister_type(LUSTRE_LOD_NAME);
2183         lu_kmem_fini(lod_caches);
2184 }
2185
2186 MODULE_AUTHOR("OpenSFS, Inc. <http://www.lustre.org/>");
2187 MODULE_DESCRIPTION("Lustre Logical Object Device ("LUSTRE_LOD_NAME")");
2188 MODULE_VERSION(LUSTRE_VERSION_STRING);
2189 MODULE_LICENSE("GPL");
2190
2191 module_init(lod_init);
2192 module_exit(lod_exit);