Whamcloud - gitweb
LU-6586 mgs: deactive MDT permanently
[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, 2014, 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 <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         ENTRY;
128
129         if (!fid_is_sane(fid)) {
130                 CERROR("%s: invalid FID "DFID"\n", lod2obd(lod)->obd_name,
131                        PFID(fid));
132                 RETURN(-EIO);
133         }
134
135         if (fid_is_idif(fid)) {
136                 *tgt = fid_idif_ost_idx(fid);
137                 *type = LU_SEQ_RANGE_OST;
138                 RETURN(0);
139         }
140
141         if (fid_is_update_log(fid) || fid_is_update_log_dir(fid)) {
142                 *tgt = fid_oid(fid);
143                 *type = LU_SEQ_RANGE_MDT;
144                 RETURN(0);
145         }
146
147         if (!lod->lod_initialized || (!fid_seq_in_fldb(fid_seq(fid)))) {
148                 LASSERT(lu_site2seq(lod2lu_dev(lod)->ld_site) != NULL);
149
150                 *tgt = lu_site2seq(lod2lu_dev(lod)->ld_site)->ss_node_id;
151                 *type = LU_SEQ_RANGE_MDT;
152                 RETURN(0);
153         }
154
155         server_fld = lu_site2seq(lod2lu_dev(lod)->ld_site)->ss_server_fld;
156         if (server_fld == NULL)
157                 RETURN(-EIO);
158
159         fld_range_set_type(&range, *type);
160         rc = fld_server_lookup(env, server_fld, fid_seq(fid), &range);
161         if (rc != 0)
162                 RETURN(rc);
163
164         *tgt = range.lsr_index;
165         *type = range.lsr_flags;
166
167         CDEBUG(D_INFO, "%s: got tgt %x for sequence: "LPX64"\n",
168                lod2obd(lod)->obd_name, *tgt, fid_seq(fid));
169
170         RETURN(0);
171 }
172
173 /* Slab for OSD object allocation */
174 struct kmem_cache *lod_object_kmem;
175
176 /* Slab for dt_txn_callback */
177 struct kmem_cache *lod_txn_callback_kmem;
178 static struct lu_kmem_descr lod_caches[] = {
179         {
180                 .ckd_cache = &lod_object_kmem,
181                 .ckd_name  = "lod_obj",
182                 .ckd_size  = sizeof(struct lod_object)
183         },
184         {
185                 .ckd_cache = &lod_txn_callback_kmem,
186                 .ckd_name  = "lod_txn_callback",
187                 .ckd_size  = sizeof(struct dt_txn_callback)
188         },
189         {
190                 .ckd_cache = NULL
191         }
192 };
193
194 static struct lu_device *lod_device_fini(const struct lu_env *env,
195                                          struct lu_device *d);
196
197 /**
198  * Implementation of lu_device_operations::ldo_object_alloc() for LOD
199  *
200  * Allocates and initializes LOD's slice in the given object.
201  *
202  * see include/lu_object.h for the details.
203  */
204 static struct lu_object *lod_object_alloc(const struct lu_env *env,
205                                           const struct lu_object_header *hdr,
206                                           struct lu_device *dev)
207 {
208         struct lod_object       *lod_obj;
209         struct lu_object        *lu_obj;
210         ENTRY;
211
212         OBD_SLAB_ALLOC_PTR_GFP(lod_obj, lod_object_kmem, GFP_NOFS);
213         if (lod_obj == NULL)
214                 RETURN(ERR_PTR(-ENOMEM));
215
216         lu_obj = lod2lu_obj(lod_obj);
217         dt_object_init(&lod_obj->ldo_obj, NULL, dev);
218         lod_obj->ldo_obj.do_ops = &lod_obj_ops;
219         lu_obj->lo_ops = &lod_lu_obj_ops;
220
221         RETURN(lu_obj);
222 }
223
224 /**
225  * Process the config log for all sub device.
226  *
227  * The function goes through all the targets in the given table
228  * and apply given configuration command on to the targets.
229  * Used to cleanup the targets at unmount.
230  *
231  * \param[in] env               LU environment provided by the caller
232  * \param[in] lod               lod device
233  * \param[in] ltd               target's table to go through
234  * \param[in] lcfg              configuration command to apply
235  *
236  * \retval 0                    on success
237  * \retval negative             negated errno on error
238  **/
239 static int lod_sub_process_config(const struct lu_env *env,
240                                  struct lod_device *lod,
241                                  struct lod_tgt_descs *ltd,
242                                  struct lustre_cfg *lcfg)
243 {
244         struct lu_device  *next;
245         int rc = 0;
246         unsigned int i;
247
248         lod_getref(ltd);
249         if (ltd->ltd_tgts_size <= 0) {
250                 lod_putref(lod, ltd);
251                 return 0;
252         }
253         cfs_foreach_bit(ltd->ltd_tgt_bitmap, i) {
254                 struct lod_tgt_desc *tgt;
255                 int rc1;
256
257                 tgt = LTD_TGT(ltd, i);
258                 LASSERT(tgt && tgt->ltd_tgt);
259                 next = &tgt->ltd_tgt->dd_lu_dev;
260                 rc1 = next->ld_ops->ldo_process_config(env, next, lcfg);
261                 if (rc1) {
262                         CERROR("%s: error cleaning up LOD index %u: cmd %#x"
263                                ": rc = %d\n", lod2obd(lod)->obd_name, i,
264                                lcfg->lcfg_command, rc1);
265                         rc = rc1;
266                 }
267         }
268         lod_putref(lod, ltd);
269         return rc;
270 }
271
272 struct lod_recovery_data {
273         struct lod_device       *lrd_lod;
274         struct lod_tgt_desc     *lrd_ltd;
275         struct ptlrpc_thread    *lrd_thread;
276         __u32                   lrd_idx;
277 };
278
279
280 /**
281  * process update recovery record
282  *
283  * Add the update recovery recode to the update recovery list in
284  * lod_recovery_data. Then the recovery thread (target_recovery_thread)
285  * will redo these updates.
286  *
287  * \param[in]env        execution environment
288  * \param[in]llh        log handle of update record
289  * \param[in]rec        update record to be replayed
290  * \param[in]data       update recovery data which holds the necessary
291  *                      arguments for recovery (see struct lod_recovery_data)
292  *
293  * \retval              0 if the record is processed successfully.
294  * \retval              negative errno if the record processing fails.
295  */
296 static int lod_process_recovery_updates(const struct lu_env *env,
297                                         struct llog_handle *llh,
298                                         struct llog_rec_hdr *rec,
299                                         void *data)
300 {
301         struct lod_recovery_data        *lrd = data;
302         struct llog_cookie      *cookie = &lod_env_info(env)->lti_cookie;
303         struct lu_target                *lut;
304         __u32                           index = 0;
305         ENTRY;
306
307         if (lrd->lrd_ltd == NULL) {
308                 int rc;
309
310                 rc = lodname2mdt_index(lod2obd(lrd->lrd_lod)->obd_name, &index);
311                 if (rc != 0)
312                         return rc;
313         } else {
314                 index = lrd->lrd_ltd->ltd_index;
315         }
316
317         if (rec->lrh_len !=
318                 llog_update_record_size((struct llog_update_record *)rec)) {
319                 CERROR("%s broken update record! index %u "DOSTID":%u :"
320                        " rc = %d\n", lod2obd(lrd->lrd_lod)->obd_name, index,
321                        POSTID(&llh->lgh_id.lgl_oi), rec->lrh_index, -EIO);
322                 return -EIO;
323         }
324
325         cookie->lgc_lgl = llh->lgh_id;
326         cookie->lgc_index = rec->lrh_index;
327         cookie->lgc_subsys = LLOG_UPDATELOG_ORIG_CTXT;
328
329         CDEBUG(D_HA, "%s: process recovery updates "DOSTID":%u\n",
330                lod2obd(lrd->lrd_lod)->obd_name,
331                POSTID(&llh->lgh_id.lgl_oi), rec->lrh_index);
332         lut = lod2lu_dev(lrd->lrd_lod)->ld_site->ls_tgt;
333
334         return insert_update_records_to_replay_list(lut->lut_tdtd,
335                                         (struct llog_update_record *)rec,
336                                         cookie, index);
337 }
338
339 /**
340  * recovery thread for update log
341  *
342  * Start recovery thread and prepare the sub llog, then it will retrieve
343  * the update records from the correpondent MDT and do recovery.
344  *
345  * \param[in] arg       pointer to the recovery data
346  *
347  * \retval              0 if recovery succeeds
348  * \retval              negative errno if recovery failed.
349  */
350 static int lod_sub_recovery_thread(void *arg)
351 {
352         struct lod_recovery_data        *lrd = arg;
353         struct lod_device               *lod = lrd->lrd_lod;
354         struct dt_device                *dt;
355         struct ptlrpc_thread            *thread = lrd->lrd_thread;
356         struct llog_ctxt                *ctxt;
357         struct lu_env                   env;
358         int                             rc;
359         ENTRY;
360
361         thread->t_flags = SVC_RUNNING;
362         wake_up(&thread->t_ctl_waitq);
363
364         rc = lu_env_init(&env, LCT_LOCAL | LCT_MD_THREAD);
365         if (rc != 0) {
366                 OBD_FREE_PTR(lrd);
367                 CERROR("%s: can't initialize env: rc = %d\n",
368                        lod2obd(lod)->obd_name, rc);
369                 RETURN(rc);
370         }
371
372         if (lrd->lrd_ltd == NULL)
373                 dt = lod->lod_child;
374         else
375                 dt = lrd->lrd_ltd->ltd_tgt;
376
377         rc = lod_sub_prep_llog(&env, lod, dt, lrd->lrd_idx);
378         if (rc != 0)
379                 GOTO(out, rc);
380
381         /* Process the recovery record */
382         ctxt = llog_get_context(dt->dd_lu_dev.ld_obd, LLOG_UPDATELOG_ORIG_CTXT);
383         LASSERT(ctxt != NULL);
384         LASSERT(ctxt->loc_handle != NULL);
385
386         rc = llog_cat_process(&env, ctxt->loc_handle,
387                               lod_process_recovery_updates, lrd, 0, 0);
388         llog_ctxt_put(ctxt);
389
390         if (rc < 0) {
391                 CERROR("%s getting update log failed: rc = %d\n",
392                        dt->dd_lu_dev.ld_obd->obd_name, rc);
393                 GOTO(out, rc);
394         }
395
396         CDEBUG(D_HA, "%s retrieve update log: rc = %d\n",
397                dt->dd_lu_dev.ld_obd->obd_name, rc);
398
399         if (lrd->lrd_ltd == NULL)
400                 lod->lod_child_got_update_log = 1;
401         else
402                 lrd->lrd_ltd->ltd_got_update_log = 1;
403
404         if (lod->lod_child_got_update_log) {
405                 struct lod_tgt_descs    *ltd = &lod->lod_mdt_descs;
406                 struct lod_tgt_desc     *tgt = NULL;
407                 bool                    all_got_log = true;
408                 int                     i;
409
410                 cfs_foreach_bit(ltd->ltd_tgt_bitmap, i) {
411                         tgt = LTD_TGT(ltd, i);
412                         if (!tgt->ltd_got_update_log) {
413                                 all_got_log = false;
414                                 break;
415                         }
416                 }
417
418                 if (all_got_log) {
419                         struct lu_target *lut;
420
421                         lut = lod2lu_dev(lod)->ld_site->ls_tgt;
422                         CDEBUG(D_HA, "%s got update logs from all MDTs.\n",
423                                lut->lut_obd->obd_name);
424                         lut->lut_tdtd->tdtd_replay_ready = 1;
425                         wake_up(&lut->lut_obd->obd_next_transno_waitq);
426                 }
427         }
428
429 out:
430         OBD_FREE_PTR(lrd);
431         thread->t_flags = SVC_STOPPED;
432         wake_up(&thread->t_ctl_waitq);
433         lu_env_fini(&env);
434         RETURN(rc);
435 }
436
437 /**
438  * finish sub llog context
439  *
440  * Stop update recovery thread for the sub device, then cleanup the
441  * correspondent llog ctxt.
442  *
443  * \param[in] env      execution environment
444  * \param[in] lod      lod device to do update recovery
445  * \param[in] thread   recovery thread on this sub device
446  */
447 void lod_sub_fini_llog(const struct lu_env *env,
448                        struct dt_device *dt, struct ptlrpc_thread *thread)
449 {
450         struct obd_device       *obd;
451         struct llog_ctxt        *ctxt;
452         ENTRY;
453
454         obd = dt->dd_lu_dev.ld_obd;
455         CDEBUG(D_INFO, "%s: finish sub llog\n", obd->obd_name);
456         /* Stop recovery thread first */
457         if (thread != NULL && thread->t_flags & SVC_RUNNING) {
458                 thread->t_flags = SVC_STOPPING;
459                 wake_up(&thread->t_ctl_waitq);
460                 wait_event(thread->t_ctl_waitq, thread->t_flags & SVC_STOPPED);
461         }
462
463         ctxt = llog_get_context(obd, LLOG_UPDATELOG_ORIG_CTXT);
464         if (ctxt == NULL)
465                 RETURN_EXIT;
466
467         if (ctxt->loc_handle != NULL)
468                 llog_cat_close(env, ctxt->loc_handle);
469
470         llog_cleanup(env, ctxt);
471
472         RETURN_EXIT;
473 }
474
475 /**
476  * Extract MDT target index from a device name.
477  *
478  * a helper function to extract index from the given device name
479  * like "fsname-MDTxxxx-mdtlov"
480  *
481  * \param[in] lodname           device name
482  * \param[out] mdt_index        extracted index
483  *
484  * \retval 0            on success
485  * \retval -EINVAL      if the name is invalid
486  */
487 int lodname2mdt_index(char *lodname, __u32 *mdt_index)
488 {
489         unsigned long index;
490         char *ptr, *tmp;
491
492         /* 1.8 configs don't have "-MDT0000" at the end */
493         ptr = strstr(lodname, "-MDT");
494         if (ptr == NULL) {
495                 *mdt_index = 0;
496                 return 0;
497         }
498
499         ptr = strrchr(lodname, '-');
500         if (ptr == NULL) {
501                 CERROR("invalid MDT index in '%s'\n", lodname);
502                 return -EINVAL;
503         }
504
505         if (strncmp(ptr, "-mdtlov", 7) != 0) {
506                 CERROR("invalid MDT index in '%s'\n", lodname);
507                 return -EINVAL;
508         }
509
510         if ((unsigned long)ptr - (unsigned long)lodname <= 8) {
511                 CERROR("invalid MDT index in '%s'\n", lodname);
512                 return -EINVAL;
513         }
514
515         if (strncmp(ptr - 8, "-MDT", 4) != 0) {
516                 CERROR("invalid MDT index in '%s'\n", lodname);
517                 return -EINVAL;
518         }
519
520         index = simple_strtol(ptr - 4, &tmp, 16);
521         if (*tmp != '-' || index > INT_MAX) {
522                 CERROR("invalid MDT index in '%s'\n", lodname);
523                 return -EINVAL;
524         }
525         *mdt_index = index;
526         return 0;
527 }
528
529 /**
530  * Init sub llog context
531  *
532  * Setup update llog ctxt for update recovery threads, then start the
533  * recovery thread (lod_sub_recovery_thread) to read update llog from
534  * the correspondent MDT to do update recovery.
535  *
536  * \param[in] env       execution environment
537  * \param[in] lod       lod device to do update recovery
538  * \param[in] dt        sub dt device for which the recovery thread is
539  *
540  * \retval              0 if initialization succeeds.
541  * \retval              negative errno if initialization fails.
542  */
543 int lod_sub_init_llog(const struct lu_env *env, struct lod_device *lod,
544                       struct dt_device *dt)
545 {
546         struct obd_device               *obd;
547         struct lod_recovery_data        *lrd = NULL;
548         struct ptlrpc_thread            *thread;
549         struct task_struct              *task;
550         struct l_wait_info              lwi = { 0 };
551         struct lod_tgt_desc             *sub_ltd = NULL;
552         __u32                           index;
553         __u32                           master_index;
554         int                             rc;
555         ENTRY;
556
557         rc = lodname2mdt_index(lod2obd(lod)->obd_name, &master_index);
558         if (rc != 0)
559                 RETURN(rc);
560
561         OBD_ALLOC_PTR(lrd);
562         if (lrd == NULL)
563                 RETURN(-ENOMEM);
564
565         if (lod->lod_child == dt) {
566                 thread = &lod->lod_child_recovery_thread;
567                 index = master_index;
568         } else {
569                 struct lod_tgt_descs    *ltd = &lod->lod_mdt_descs;
570                 struct lod_tgt_desc     *tgt = NULL;
571                 unsigned int            i;
572
573                 cfs_foreach_bit(ltd->ltd_tgt_bitmap, i) {
574                         tgt = LTD_TGT(ltd, i);
575                         if (tgt->ltd_tgt == dt) {
576                                 index = tgt->ltd_index;
577                                 sub_ltd = tgt;
578                                 break;
579                         }
580                 }
581                 LASSERT(sub_ltd != NULL);
582                 OBD_ALLOC_PTR(sub_ltd->ltd_recovery_thread);
583                 if (sub_ltd->ltd_recovery_thread == NULL)
584                         GOTO(free_lrd, rc = -ENOMEM);
585
586                 thread = sub_ltd->ltd_recovery_thread;
587         }
588
589         CDEBUG(D_INFO, "%s init sub log %s\n", lod2obd(lod)->obd_name,
590                dt->dd_lu_dev.ld_obd->obd_name);
591         lrd->lrd_lod = lod;
592         lrd->lrd_ltd = sub_ltd;
593         lrd->lrd_thread = thread;
594         lrd->lrd_idx = index;
595         init_waitqueue_head(&thread->t_ctl_waitq);
596
597         obd = dt->dd_lu_dev.ld_obd;
598         obd->obd_lvfs_ctxt.dt = dt;
599         rc = llog_setup(env, obd, &obd->obd_olg, LLOG_UPDATELOG_ORIG_CTXT,
600                         NULL, &llog_common_cat_ops);
601         if (rc < 0) {
602                 CERROR("%s: cannot setup updatelog llog: rc = %d\n",
603                        obd->obd_name, rc);
604                 GOTO(free_thread, rc);
605         }
606
607         /* Start the recovery thread */
608         task = kthread_run(lod_sub_recovery_thread, lrd, "lod%04x_rec%04x",
609                            master_index, index);
610         if (IS_ERR(task)) {
611                 rc = PTR_ERR(task);
612                 CERROR("%s: cannot start recovery thread: rc = %d\n",
613                        obd->obd_name, rc);
614                 GOTO(out_llog, rc);
615         }
616
617         l_wait_event(thread->t_ctl_waitq, thread->t_flags & SVC_RUNNING ||
618                                           thread->t_flags & SVC_STOPPED, &lwi);
619
620         RETURN(0);
621 out_llog:
622         lod_sub_fini_llog(env, dt, thread);
623 free_thread:
624         if (lod->lod_child != dt) {
625                 OBD_FREE_PTR(sub_ltd->ltd_recovery_thread);
626                 sub_ltd->ltd_recovery_thread = NULL;
627         }
628 free_lrd:
629         OBD_FREE_PTR(lrd);
630         RETURN(rc);
631 }
632
633 /**
634  * Stop sub recovery thread
635  *
636  * Stop sub recovery thread on all subs.
637  *
638  * \param[in] env       execution environment
639  * \param[in] lod       lod device to do update recovery
640  */
641 static void lod_sub_stop_recovery_threads(const struct lu_env *env,
642                                           struct lod_device *lod)
643 {
644         struct lod_tgt_descs *ltd = &lod->lod_mdt_descs;
645         struct ptlrpc_thread    *thread;
646         unsigned int i;
647
648         /* Stop the update log commit cancel threads and finish master
649          * llog ctxt */
650         thread = &lod->lod_child_recovery_thread;
651         /* Stop recovery thread first */
652         if (thread != NULL && thread->t_flags & SVC_RUNNING) {
653                 thread->t_flags = SVC_STOPPING;
654                 wake_up(&thread->t_ctl_waitq);
655                 wait_event(thread->t_ctl_waitq, thread->t_flags & SVC_STOPPED);
656         }
657
658         lod_getref(ltd);
659         cfs_foreach_bit(ltd->ltd_tgt_bitmap, i) {
660                 struct lod_tgt_desc     *tgt;
661
662                 tgt = LTD_TGT(ltd, i);
663                 thread = tgt->ltd_recovery_thread;
664                 if (thread != NULL && thread->t_flags & SVC_RUNNING) {
665                         thread->t_flags = SVC_STOPPING;
666                         wake_up(&thread->t_ctl_waitq);
667                         wait_event(thread->t_ctl_waitq,
668                                    thread->t_flags & SVC_STOPPED);
669                         OBD_FREE_PTR(tgt->ltd_recovery_thread);
670                         tgt->ltd_recovery_thread = NULL;
671                 }
672         }
673
674         lod_putref(lod, ltd);
675 }
676
677 /**
678  * finish all sub llog
679  *
680  * cleanup all of sub llog ctxt on the LOD.
681  *
682  * \param[in] env       execution environment
683  * \param[in] lod       lod device to do update recovery
684  */
685 static void lod_sub_fini_all_llogs(const struct lu_env *env,
686                                    struct lod_device *lod)
687 {
688         struct lod_tgt_descs *ltd = &lod->lod_mdt_descs;
689         unsigned int i;
690
691         /* Stop the update log commit cancel threads and finish master
692          * llog ctxt */
693         lod_sub_fini_llog(env, lod->lod_child,
694                           &lod->lod_child_recovery_thread);
695         lod_getref(ltd);
696         cfs_foreach_bit(ltd->ltd_tgt_bitmap, i) {
697                 struct lod_tgt_desc     *tgt;
698
699                 tgt = LTD_TGT(ltd, i);
700                 lod_sub_fini_llog(env, tgt->ltd_tgt,
701                                   tgt->ltd_recovery_thread);
702         }
703
704         lod_putref(lod, ltd);
705 }
706
707 /**
708  * Prepare distribute txn
709  *
710  * Prepare distribute txn structure for LOD
711  *
712  * \param[in] env       execution environment
713  * \param[in] lod_device  LOD device
714  *
715  * \retval              0 if preparation succeeds.
716  * \retval              negative errno if preparation fails.
717  */
718 static int lod_prepare_distribute_txn(const struct lu_env *env,
719                                       struct lod_device *lod)
720 {
721         struct target_distribute_txn_data *tdtd;
722         struct lu_target                  *lut;
723         int                               rc;
724         ENTRY;
725
726         /* Init update recovery data */
727         OBD_ALLOC_PTR(tdtd);
728         if (tdtd == NULL)
729                 RETURN(-ENOMEM);
730
731         lut = lod2lu_dev(lod)->ld_site->ls_tgt;
732
733         rc = distribute_txn_init(env, lut, tdtd,
734                 lu_site2seq(lod2lu_dev(lod)->ld_site)->ss_node_id);
735
736         if (rc < 0) {
737                 CERROR("%s: cannot init distribute txn: rc = %d\n",
738                        lod2obd(lod)->obd_name, rc);
739                 OBD_FREE_PTR(tdtd);
740                 RETURN(rc);
741         }
742
743         tdtd->tdtd_dt = &lod->lod_dt_dev;
744         INIT_LIST_HEAD(&tdtd->tdtd_replay_list);
745         spin_lock_init(&tdtd->tdtd_replay_list_lock);
746         tdtd->tdtd_replay_handler = distribute_txn_replay_handle;
747         tdtd->tdtd_replay_ready = 0;
748
749         lut->lut_tdtd = tdtd;
750
751         RETURN(0);
752 }
753
754 /**
755  * Finish distribute txn
756  *
757  * Release the resource holding by distribute txn, i.e. stop distribute
758  * txn thread.
759  *
760  * \param[in] env       execution environment
761  * \param[in] lod       lod device
762  */
763 static void lod_fini_distribute_txn(const struct lu_env *env,
764                                     struct lod_device *lod)
765 {
766         struct lu_target                  *lut;
767
768         lut = lod2lu_dev(lod)->ld_site->ls_tgt;
769         if (lut->lut_tdtd == NULL)
770                 return;
771
772         distribute_txn_fini(env, lut->lut_tdtd);
773
774         OBD_FREE_PTR(lut->lut_tdtd);
775         lut->lut_tdtd = NULL;
776 }
777
778 /**
779  * Implementation of lu_device_operations::ldo_process_config() for LOD
780  *
781  * The method is called by the configuration subsystem during setup,
782  * cleanup and when the configuration changes. The method processes
783  * few specific commands like adding/removing the targets, changing
784  * the runtime parameters.
785
786  * \param[in] env               LU environment provided by the caller
787  * \param[in] dev               lod device
788  * \param[in] lcfg              configuration command to apply
789  *
790  * \retval 0                    on success
791  * \retval negative             negated errno on error
792  *
793  * The examples are below.
794  *
795  * Add osc config log:
796  * marker  20 (flags=0x01, v2.2.49.56) lustre-OST0001  'add osc'
797  * add_uuid  nid=192.168.122.162@tcp(0x20000c0a87aa2)  0:  1:nidxxx
798  * attach    0:lustre-OST0001-osc-MDT0001  1:osc  2:lustre-MDT0001-mdtlov_UUID
799  * setup     0:lustre-OST0001-osc-MDT0001  1:lustre-OST0001_UUID  2:nid
800  * lov_modify_tgts add 0:lustre-MDT0001-mdtlov  1:lustre-OST0001_UUID  2:1  3:1
801  * marker  20 (flags=0x02, v2.2.49.56) lustre-OST0001  'add osc'
802  *
803  * Add mdc config log:
804  * marker  10 (flags=0x01, v2.2.49.56) lustre-MDT0000  'add osp'
805  * add_uuid  nid=192.168.122.162@tcp(0x20000c0a87aa2)  0:  1:nid
806  * attach 0:lustre-MDT0000-osp-MDT0001  1:osp  2:lustre-MDT0001-mdtlov_UUID
807  * setup     0:lustre-MDT0000-osp-MDT0001  1:lustre-MDT0000_UUID  2:nid
808  * modify_mdc_tgts add 0:lustre-MDT0001  1:lustre-MDT0000_UUID  2:0  3:1
809  * marker  10 (flags=0x02, v2.2.49.56) lustre-MDT0000_UUID  'add osp'
810  */
811 static int lod_process_config(const struct lu_env *env,
812                               struct lu_device *dev,
813                               struct lustre_cfg *lcfg)
814 {
815         struct lod_device *lod = lu2lod_dev(dev);
816         struct lu_device  *next = &lod->lod_child->dd_lu_dev;
817         char              *arg1;
818         int                rc = 0;
819         ENTRY;
820
821         switch(lcfg->lcfg_command) {
822         case LCFG_LOV_DEL_OBD:
823         case LCFG_LOV_ADD_INA:
824         case LCFG_LOV_ADD_OBD:
825         case LCFG_ADD_MDC: {
826                 __u32 index;
827                 __u32 mdt_index;
828                 int gen;
829                 /* lov_modify_tgts add  0:lov_mdsA  1:osp  2:0  3:1
830                  * modify_mdc_tgts add  0:lustre-MDT0001
831                  *                    1:lustre-MDT0001-mdc0002
832                  *                    2:2  3:1*/
833                 arg1 = lustre_cfg_string(lcfg, 1);
834
835                 if (sscanf(lustre_cfg_buf(lcfg, 2), "%d", &index) != 1)
836                         GOTO(out, rc = -EINVAL);
837                 if (sscanf(lustre_cfg_buf(lcfg, 3), "%d", &gen) != 1)
838                         GOTO(out, rc = -EINVAL);
839
840                 if (lcfg->lcfg_command == LCFG_LOV_ADD_OBD) {
841                         __u32 mdt_index;
842
843                         rc = lodname2mdt_index(lustre_cfg_string(lcfg, 0),
844                                                &mdt_index);
845                         if (rc != 0)
846                                 GOTO(out, rc);
847
848                         rc = lod_add_device(env, lod, arg1, index, gen,
849                                             mdt_index, LUSTRE_OSC_NAME, 1);
850                 } else if (lcfg->lcfg_command == LCFG_ADD_MDC) {
851                         mdt_index = index;
852                         rc = lod_add_device(env, lod, arg1, index, gen,
853                                             mdt_index, LUSTRE_MDC_NAME, 1);
854                 } else if (lcfg->lcfg_command == LCFG_LOV_ADD_INA) {
855                         /*FIXME: Add mdt_index for LCFG_LOV_ADD_INA*/
856                         mdt_index = 0;
857                         rc = lod_add_device(env, lod, arg1, index, gen,
858                                             mdt_index, LUSTRE_OSC_NAME, 0);
859                 } else {
860                         rc = lod_del_device(env, lod,
861                                             &lod->lod_ost_descs,
862                                             arg1, index, gen, true);
863                 }
864
865                 break;
866         }
867
868         case LCFG_PARAM: {
869                 struct obd_device *obd;
870                 char *param;
871
872                 /* Check if it is activate/deactivate mdc
873                  * lustre-MDTXXXX-osp-MDTXXXX.active=1 */
874                 param = lustre_cfg_buf(lcfg, 1);
875                 if (strstr(param, "osp") != NULL &&
876                     strstr(param, ".active=") != NULL) {
877                         struct lod_tgt_descs    *ltd = &lod->lod_mdt_descs;
878                         struct lod_tgt_desc     *sub_tgt = NULL;
879                         char *ptr;
880                         char *tmp;
881                         int i;
882
883                         ptr = strstr(param, ".");
884                         *ptr = '\0';
885                         obd = class_name2obd(param);
886                         if (obd == NULL) {
887                                 CERROR("%s: can not find %s: rc = %d\n",
888                                        lod2obd(lod)->obd_name, param, -EINVAL);
889                                 *ptr = '.';
890                                 GOTO(out, rc);
891                         }
892
893                         cfs_foreach_bit(ltd->ltd_tgt_bitmap, i) {
894                                 struct lod_tgt_desc *tgt;
895
896                                 tgt = LTD_TGT(ltd, i);
897                                 if (tgt->ltd_tgt->dd_lu_dev.ld_obd == obd) {
898                                         sub_tgt = tgt;
899                                         break;
900                                 }
901                         }
902
903                         if (sub_tgt == NULL) {
904                                 CERROR("%s: can not find %s: rc = %d\n",
905                                        lod2obd(lod)->obd_name, param, -EINVAL);
906                                 *ptr = '.';
907                                 GOTO(out, rc);
908                         }
909
910                         *ptr = '.';
911                         tmp = strstr(param, "=");
912                         tmp++;
913                         if (*tmp == '1') {
914                                 struct llog_ctxt *ctxt;
915
916                                 obd = sub_tgt->ltd_tgt->dd_lu_dev.ld_obd;
917                                 ctxt = llog_get_context(obd,
918                                                 LLOG_UPDATELOG_ORIG_CTXT);
919                                 if (ctxt == NULL) {
920                                         rc = llog_setup(env, obd, &obd->obd_olg,
921                                                        LLOG_UPDATELOG_ORIG_CTXT,
922                                                     NULL, &llog_common_cat_ops);
923                                         if (rc < 0)
924                                                 GOTO(out, rc);
925                                 } else {
926                                         llog_ctxt_put(ctxt);
927                                 }
928                                 rc = lod_sub_prep_llog(env, lod,
929                                                        sub_tgt->ltd_tgt,
930                                                        sub_tgt->ltd_index);
931                                 if (rc == 0)
932                                         sub_tgt->ltd_active = 1;
933                         } else {
934                                 lod_sub_fini_llog(env, sub_tgt->ltd_tgt,
935                                                   NULL);
936                                 sub_tgt->ltd_active = 0;
937                         }
938                         GOTO(out, rc);
939                 }
940
941                 obd = lod2obd(lod);
942                 rc = class_process_proc_param(PARAM_LOV, obd->obd_vars,
943                                               lcfg, obd);
944                 if (rc > 0)
945                         rc = 0;
946                 GOTO(out, rc);
947         }
948         case LCFG_PRE_CLEANUP: {
949                 lod_sub_process_config(env, lod, &lod->lod_mdt_descs, lcfg);
950                 lod_sub_process_config(env, lod, &lod->lod_ost_descs, lcfg);
951                 next = &lod->lod_child->dd_lu_dev;
952                 rc = next->ld_ops->ldo_process_config(env, next, lcfg);
953                 if (rc != 0)
954                         CDEBUG(D_HA, "%s: can't process %u: %d\n",
955                                lod2obd(lod)->obd_name, lcfg->lcfg_command, rc);
956
957                 lod_sub_stop_recovery_threads(env, lod);
958                 lod_fini_distribute_txn(env, lod);
959                 lod_sub_fini_all_llogs(env, lod);
960                 break;
961         }
962         case LCFG_CLEANUP: {
963                 /*
964                  * do cleanup on underlying storage only when
965                  * all OSPs are cleaned up, as they use that OSD as well
966                  */
967                 lu_dev_del_linkage(dev->ld_site, dev);
968                 lod_sub_process_config(env, lod, &lod->lod_mdt_descs, lcfg);
969                 lod_sub_process_config(env, lod, &lod->lod_ost_descs, lcfg);
970                 next = &lod->lod_child->dd_lu_dev;
971                 rc = next->ld_ops->ldo_process_config(env, next, lcfg);
972                 if (rc)
973                         CERROR("%s: can't process %u: %d\n",
974                                lod2obd(lod)->obd_name, lcfg->lcfg_command, rc);
975
976                 rc = obd_disconnect(lod->lod_child_exp);
977                 if (rc)
978                         CERROR("error in disconnect from storage: %d\n", rc);
979                 break;
980         }
981         default:
982                CERROR("%s: unknown command %u\n", lod2obd(lod)->obd_name,
983                       lcfg->lcfg_command);
984                rc = -EINVAL;
985                break;
986         }
987
988 out:
989         RETURN(rc);
990 }
991
992 /**
993  * Implementation of lu_device_operations::ldo_recovery_complete() for LOD
994  *
995  * The method is called once the recovery is complete. This implementation
996  * distributes the notification to all the known targets.
997  *
998  * see include/lu_object.h for the details
999  */
1000 static int lod_recovery_complete(const struct lu_env *env,
1001                                  struct lu_device *dev)
1002 {
1003         struct lod_device   *lod = lu2lod_dev(dev);
1004         struct lu_device    *next = &lod->lod_child->dd_lu_dev;
1005         unsigned int         i;
1006         int                  rc;
1007         ENTRY;
1008
1009         LASSERT(lod->lod_recovery_completed == 0);
1010         lod->lod_recovery_completed = 1;
1011
1012         rc = next->ld_ops->ldo_recovery_complete(env, next);
1013
1014         lod_getref(&lod->lod_ost_descs);
1015         if (lod->lod_osts_size > 0) {
1016                 cfs_foreach_bit(lod->lod_ost_bitmap, i) {
1017                         struct lod_tgt_desc *tgt;
1018                         tgt = OST_TGT(lod, i);
1019                         LASSERT(tgt && tgt->ltd_tgt);
1020                         next = &tgt->ltd_ost->dd_lu_dev;
1021                         rc = next->ld_ops->ldo_recovery_complete(env, next);
1022                         if (rc)
1023                                 CERROR("%s: can't complete recovery on #%d:"
1024                                         "%d\n", lod2obd(lod)->obd_name, i, rc);
1025                 }
1026         }
1027         lod_putref(lod, &lod->lod_ost_descs);
1028         RETURN(rc);
1029 }
1030
1031 /**
1032  * Init update logs on all sub device
1033  *
1034  * LOD initialize update logs on all of sub devices. Because the initialization
1035  * process might need FLD lookup, see llog_osd_open()->dt_locate()->...->
1036  * lod_object_init(), this API has to be called after LOD is initialized.
1037  * \param[in] env       execution environment
1038  * \param[in] lod       lod device
1039  *
1040  * \retval              0 if update log is initialized successfully.
1041  * \retval              negative errno if initialization fails.
1042  */
1043 static int lod_sub_init_llogs(const struct lu_env *env, struct lod_device *lod)
1044 {
1045         struct lod_tgt_descs    *ltd = &lod->lod_mdt_descs;
1046         int                     rc;
1047         unsigned int            i;
1048         ENTRY;
1049
1050         /* llog must be setup after LOD is initialized, because llog
1051          * initialization include FLD lookup */
1052         LASSERT(lod->lod_initialized);
1053
1054         /* Init the llog in its own stack */
1055         rc = lod_sub_init_llog(env, lod, lod->lod_child);
1056         if (rc < 0)
1057                 RETURN(rc);
1058
1059         cfs_foreach_bit(ltd->ltd_tgt_bitmap, i) {
1060                 struct lod_tgt_desc     *tgt;
1061
1062                 tgt = LTD_TGT(ltd, i);
1063                 rc = lod_sub_init_llog(env, lod, tgt->ltd_tgt);
1064                 if (rc != 0)
1065                         break;
1066         }
1067
1068         RETURN(rc);
1069 }
1070
1071 /**
1072  * Implementation of lu_device_operations::ldo_prepare() for LOD
1073  *
1074  * see include/lu_object.h for the details.
1075  */
1076 static int lod_prepare(const struct lu_env *env, struct lu_device *pdev,
1077                        struct lu_device *cdev)
1078 {
1079         struct lod_device       *lod = lu2lod_dev(cdev);
1080         struct lu_device        *next = &lod->lod_child->dd_lu_dev;
1081         struct lu_fid           *fid = &lod_env_info(env)->lti_fid;
1082         int                     rc;
1083         struct dt_object        *root;
1084         struct dt_object        *dto;
1085         __u32                   index;
1086         ENTRY;
1087
1088         rc = next->ld_ops->ldo_prepare(env, pdev, next);
1089         if (rc != 0) {
1090                 CERROR("%s: prepare bottom error: rc = %d\n",
1091                        lod2obd(lod)->obd_name, rc);
1092                 RETURN(rc);
1093         }
1094
1095         lod->lod_initialized = 1;
1096
1097         rc = dt_root_get(env, lod->lod_child, fid);
1098         if (rc < 0)
1099                 RETURN(rc);
1100
1101         root = dt_locate(env, lod->lod_child, fid);
1102         if (IS_ERR(root))
1103                 RETURN(PTR_ERR(root));
1104
1105         /* Create update log object */
1106         index = lu_site2seq(lod2lu_dev(lod)->ld_site)->ss_node_id;
1107         lu_update_log_fid(fid, index);
1108
1109         dto = local_file_find_or_create_with_fid(env, lod->lod_child,
1110                                                  fid, root,
1111                                                  lod_update_log_name,
1112                                                  S_IFREG | S_IRUGO | S_IWUSR);
1113         if (IS_ERR(dto))
1114                 GOTO(out_put, rc = PTR_ERR(dto));
1115
1116         lu_object_put(env, &dto->do_lu);
1117
1118         /* Create update log dir */
1119         lu_update_log_dir_fid(fid, index);
1120         dto = local_file_find_or_create_with_fid(env, lod->lod_child,
1121                                                  fid, root,
1122                                                  lod_update_log_dir_name,
1123                                                  S_IFDIR | S_IRUGO | S_IWUSR);
1124         if (IS_ERR(dto))
1125                 GOTO(out_put, rc = PTR_ERR(dto));
1126
1127         lu_object_put(env, &dto->do_lu);
1128
1129         rc = lod_prepare_distribute_txn(env, lod);
1130         if (rc != 0)
1131                 GOTO(out_put, rc);
1132
1133         rc = lod_sub_init_llogs(env, lod);
1134         if (rc != 0)
1135                 GOTO(out_put, rc);
1136
1137 out_put:
1138         lu_object_put(env, &root->do_lu);
1139
1140         RETURN(rc);
1141 }
1142
1143 const struct lu_device_operations lod_lu_ops = {
1144         .ldo_object_alloc       = lod_object_alloc,
1145         .ldo_process_config     = lod_process_config,
1146         .ldo_recovery_complete  = lod_recovery_complete,
1147         .ldo_prepare            = lod_prepare,
1148 };
1149
1150 /**
1151  * Implementation of dt_device_operations::dt_root_get() for LOD
1152  *
1153  * see include/dt_object.h for the details.
1154  */
1155 static int lod_root_get(const struct lu_env *env,
1156                         struct dt_device *dev, struct lu_fid *f)
1157 {
1158         return dt_root_get(env, dt2lod_dev(dev)->lod_child, f);
1159 }
1160
1161 /**
1162  * Implementation of dt_device_operations::dt_statfs() for LOD
1163  *
1164  * see include/dt_object.h for the details.
1165  */
1166 static int lod_statfs(const struct lu_env *env,
1167                       struct dt_device *dev, struct obd_statfs *sfs)
1168 {
1169         return dt_statfs(env, dt2lod_dev(dev)->lod_child, sfs);
1170 }
1171
1172 /**
1173  * Implementation of dt_device_operations::dt_trans_create() for LOD
1174  *
1175  * Creates a transaction using local (to this node) OSD.
1176  *
1177  * see include/dt_object.h for the details.
1178  */
1179 static struct thandle *lod_trans_create(const struct lu_env *env,
1180                                         struct dt_device *dt)
1181 {
1182         struct thandle *th;
1183
1184         th = top_trans_create(env, dt2lod_dev(dt)->lod_child);
1185         if (IS_ERR(th))
1186                 return th;
1187
1188         th->th_dev = dt;
1189
1190         return th;
1191 }
1192
1193 /**
1194  * Implementation of dt_device_operations::dt_trans_start() for LOD
1195  *
1196  * Starts the set of local transactions using the targets involved
1197  * in declare phase. Initial support for the distributed transactions.
1198  *
1199  * see include/dt_object.h for the details.
1200  */
1201 static int lod_trans_start(const struct lu_env *env, struct dt_device *dt,
1202                            struct thandle *th)
1203 {
1204         return top_trans_start(env, dt2lod_dev(dt)->lod_child, th);
1205 }
1206
1207 static int lod_trans_cb_add(struct thandle *th,
1208                             struct dt_txn_commit_cb *dcb)
1209 {
1210         struct top_thandle      *top_th = container_of(th, struct top_thandle,
1211                                                        tt_super);
1212         return dt_trans_cb_add(top_th->tt_master_sub_thandle, dcb);
1213 }
1214
1215 /**
1216  * add noop update to the update records
1217  *
1218  * Add noop updates to the update records, which is only used in
1219  * test right now.
1220  *
1221  * \param[in] env       execution environment
1222  * \param[in] dt        dt device of lod
1223  * \param[in] th        thandle
1224  * \param[in] count     the count of update records to be added.
1225  *
1226  * \retval              0 if adding succeeds.
1227  * \retval              negative errno if adding fails.
1228  */
1229 static int lod_add_noop_records(const struct lu_env *env,
1230                                 struct dt_device *dt, struct thandle *th,
1231                                 int count)
1232 {
1233         struct top_thandle *top_th;
1234         struct lu_fid *fid = &lod_env_info(env)->lti_fid;
1235         int i;
1236         int rc = 0;
1237
1238         top_th = container_of(th, struct top_thandle, tt_super);
1239         if (top_th->tt_multiple_thandle == NULL)
1240                 return 0;
1241
1242         fid_zero(fid);
1243         for (i = 0; i < count; i++) {
1244                 rc = update_record_pack(noop, th, fid);
1245                 if (rc < 0)
1246                         return rc;
1247         }
1248         return rc;
1249 }
1250
1251 /**
1252  * Implementation of dt_device_operations::dt_trans_stop() for LOD
1253  *
1254  * Stops the set of local transactions using the targets involved
1255  * in declare phase. Initial support for the distributed transactions.
1256  *
1257  * see include/dt_object.h for the details.
1258  */
1259 static int lod_trans_stop(const struct lu_env *env, struct dt_device *dt,
1260                           struct thandle *th)
1261 {
1262         if (OBD_FAIL_CHECK(OBD_FAIL_SPLIT_UPDATE_REC)) {
1263                 int rc;
1264
1265                 rc = lod_add_noop_records(env, dt, th, 5000);
1266                 if (rc < 0)
1267                         RETURN(rc);
1268         }
1269         return top_trans_stop(env, dt2lod_dev(dt)->lod_child, th);
1270 }
1271
1272 /**
1273  * Implementation of dt_device_operations::dt_conf_get() for LOD
1274  *
1275  * Currently returns the configuration provided by the local OSD.
1276  *
1277  * see include/dt_object.h for the details.
1278  */
1279 static void lod_conf_get(const struct lu_env *env,
1280                          const struct dt_device *dev,
1281                          struct dt_device_param *param)
1282 {
1283         dt_conf_get(env, dt2lod_dev((struct dt_device *)dev)->lod_child, param);
1284 }
1285
1286 /**
1287  * Implementation of dt_device_operations::dt_sync() for LOD
1288  *
1289  * Syncs all known OST targets. Very very expensive and used
1290  * rarely by LFSCK now. Should not be used in general.
1291  *
1292  * see include/dt_object.h for the details.
1293  */
1294 static int lod_sync(const struct lu_env *env, struct dt_device *dev)
1295 {
1296         struct lod_device   *lod = dt2lod_dev(dev);
1297         struct lod_ost_desc *ost;
1298         unsigned int         i;
1299         int                  rc = 0;
1300         ENTRY;
1301
1302         lod_getref(&lod->lod_ost_descs);
1303         lod_foreach_ost(lod, i) {
1304                 ost = OST_TGT(lod, i);
1305                 LASSERT(ost && ost->ltd_ost);
1306                 rc = dt_sync(env, ost->ltd_ost);
1307                 if (rc) {
1308                         CERROR("%s: can't sync %u: %d\n",
1309                                lod2obd(lod)->obd_name, i, rc);
1310                         break;
1311                 }
1312         }
1313         lod_putref(lod, &lod->lod_ost_descs);
1314         if (rc == 0)
1315                 rc = dt_sync(env, lod->lod_child);
1316
1317         RETURN(rc);
1318 }
1319
1320 /**
1321  * Implementation of dt_device_operations::dt_ro() for LOD
1322  *
1323  * Turns local OSD read-only, used for the testing only.
1324  *
1325  * see include/dt_object.h for the details.
1326  */
1327 static int lod_ro(const struct lu_env *env, struct dt_device *dev)
1328 {
1329         return dt_ro(env, dt2lod_dev(dev)->lod_child);
1330 }
1331
1332 /**
1333  * Implementation of dt_device_operations::dt_commit_async() for LOD
1334  *
1335  * Asks local OSD to commit sooner.
1336  *
1337  * see include/dt_object.h for the details.
1338  */
1339 static int lod_commit_async(const struct lu_env *env, struct dt_device *dev)
1340 {
1341         return dt_commit_async(env, dt2lod_dev(dev)->lod_child);
1342 }
1343
1344 static const struct dt_device_operations lod_dt_ops = {
1345         .dt_root_get         = lod_root_get,
1346         .dt_statfs           = lod_statfs,
1347         .dt_trans_create     = lod_trans_create,
1348         .dt_trans_start      = lod_trans_start,
1349         .dt_trans_stop       = lod_trans_stop,
1350         .dt_conf_get         = lod_conf_get,
1351         .dt_sync             = lod_sync,
1352         .dt_ro               = lod_ro,
1353         .dt_commit_async     = lod_commit_async,
1354         .dt_trans_cb_add     = lod_trans_cb_add,
1355 };
1356
1357 /**
1358  * Connect to a local OSD.
1359  *
1360  * Used to connect to the local OSD at mount. OSD name is taken from the
1361  * configuration command passed. This connection is used to identify LU
1362  * site and pin the OSD from early removal.
1363  *
1364  * \param[in] env               LU environment provided by the caller
1365  * \param[in] lod               lod device
1366  * \param[in] cfg               configuration command to apply
1367  *
1368  * \retval 0                    on success
1369  * \retval negative             negated errno on error
1370  **/
1371 static int lod_connect_to_osd(const struct lu_env *env, struct lod_device *lod,
1372                               struct lustre_cfg *cfg)
1373 {
1374         struct obd_connect_data *data = NULL;
1375         struct obd_device       *obd;
1376         char                    *nextdev = NULL, *p, *s;
1377         int                      rc, len = 0;
1378         ENTRY;
1379
1380         LASSERT(cfg);
1381         LASSERT(lod->lod_child_exp == NULL);
1382
1383         /* compatibility hack: we still use old config logs
1384          * which specify LOV, but we need to learn underlying
1385          * OSD device, which is supposed to be:
1386          *  <fsname>-MDTxxxx-osd
1387          *
1388          * 2.x MGS generates lines like the following:
1389          *   #03 (176)lov_setup 0:lustre-MDT0000-mdtlov  1:(struct lov_desc)
1390          * 1.8 MGS generates lines like the following:
1391          *   #03 (168)lov_setup 0:lustre-mdtlov  1:(struct lov_desc)
1392          *
1393          * we use "-MDT" to differentiate 2.x from 1.8 */
1394
1395         if ((p = lustre_cfg_string(cfg, 0)) && strstr(p, "-mdtlov")) {
1396                 len = strlen(p) + 6;
1397                 OBD_ALLOC(nextdev, len);
1398                 if (nextdev == NULL)
1399                         GOTO(out, rc = -ENOMEM);
1400
1401                 strcpy(nextdev, p);
1402                 s = strstr(nextdev, "-mdtlov");
1403                 if (unlikely(s == NULL)) {
1404                         CERROR("unable to parse device name %s\n",
1405                                lustre_cfg_string(cfg, 0));
1406                         GOTO(out, rc = -EINVAL);
1407                 }
1408
1409                 if (strstr(nextdev, "-MDT")) {
1410                         /* 2.x config */
1411                         strcpy(s, "-osd");
1412                 } else {
1413                         /* 1.8 config */
1414                         strcpy(s, "-MDT0000-osd");
1415                 }
1416         } else {
1417                 CERROR("unable to parse device name %s\n",
1418                        lustre_cfg_string(cfg, 0));
1419                 GOTO(out, rc = -EINVAL);
1420         }
1421
1422         OBD_ALLOC_PTR(data);
1423         if (data == NULL)
1424                 GOTO(out, rc = -ENOMEM);
1425
1426         obd = class_name2obd(nextdev);
1427         if (obd == NULL) {
1428                 CERROR("can not locate next device: %s\n", nextdev);
1429                 GOTO(out, rc = -ENOTCONN);
1430         }
1431
1432         data->ocd_connect_flags = OBD_CONNECT_VERSION;
1433         data->ocd_version = LUSTRE_VERSION_CODE;
1434
1435         rc = obd_connect(env, &lod->lod_child_exp, obd, &obd->obd_uuid,
1436                          data, NULL);
1437         if (rc) {
1438                 CERROR("cannot connect to next dev %s (%d)\n", nextdev, rc);
1439                 GOTO(out, rc);
1440         }
1441
1442         lod->lod_dt_dev.dd_lu_dev.ld_site =
1443                 lod->lod_child_exp->exp_obd->obd_lu_dev->ld_site;
1444         LASSERT(lod->lod_dt_dev.dd_lu_dev.ld_site);
1445         lod->lod_child = lu2dt_dev(lod->lod_child_exp->exp_obd->obd_lu_dev);
1446
1447 out:
1448         if (data)
1449                 OBD_FREE_PTR(data);
1450         if (nextdev)
1451                 OBD_FREE(nextdev, len);
1452         RETURN(rc);
1453 }
1454
1455 /**
1456  * Allocate and initialize target table.
1457  *
1458  * A helper function to initialize the target table and allocate
1459  * a bitmap of the available targets.
1460  *
1461  * \param[in] ltd               target's table to initialize
1462  *
1463  * \retval 0                    on success
1464  * \retval negative             negated errno on error
1465  **/
1466 static int lod_tgt_desc_init(struct lod_tgt_descs *ltd)
1467 {
1468         mutex_init(&ltd->ltd_mutex);
1469         init_rwsem(&ltd->ltd_rw_sem);
1470
1471         /* the OST array and bitmap are allocated/grown dynamically as OSTs are
1472          * added to the LOD, see lod_add_device() */
1473         ltd->ltd_tgt_bitmap = CFS_ALLOCATE_BITMAP(32);
1474         if (ltd->ltd_tgt_bitmap == NULL)
1475                 RETURN(-ENOMEM);
1476
1477         ltd->ltd_tgts_size  = 32;
1478         ltd->ltd_tgtnr      = 0;
1479
1480         ltd->ltd_death_row = 0;
1481         ltd->ltd_refcount  = 0;
1482         return 0;
1483 }
1484
1485 /**
1486  * Initialize LOD device at setup.
1487  *
1488  * Initializes the given LOD device using the original configuration command.
1489  * The function initiates a connection to the local OSD and initializes few
1490  * internal structures like pools, target tables, etc.
1491  *
1492  * \param[in] env               LU environment provided by the caller
1493  * \param[in] lod               lod device
1494  * \param[in] ldt               not used
1495  * \param[in] cfg               configuration command
1496  *
1497  * \retval 0                    on success
1498  * \retval negative             negated errno on error
1499  **/
1500 static int lod_init0(const struct lu_env *env, struct lod_device *lod,
1501                      struct lu_device_type *ldt, struct lustre_cfg *cfg)
1502 {
1503         struct dt_device_param ddp;
1504         struct obd_device     *obd;
1505         int                    rc;
1506         ENTRY;
1507
1508         obd = class_name2obd(lustre_cfg_string(cfg, 0));
1509         if (obd == NULL) {
1510                 CERROR("Cannot find obd with name %s\n",
1511                        lustre_cfg_string(cfg, 0));
1512                 RETURN(-ENODEV);
1513         }
1514
1515         obd->obd_lu_dev = &lod->lod_dt_dev.dd_lu_dev;
1516         lod->lod_dt_dev.dd_lu_dev.ld_obd = obd;
1517         lod->lod_dt_dev.dd_lu_dev.ld_ops = &lod_lu_ops;
1518         lod->lod_dt_dev.dd_ops = &lod_dt_ops;
1519
1520         rc = lod_connect_to_osd(env, lod, cfg);
1521         if (rc)
1522                 RETURN(rc);
1523
1524         dt_conf_get(env, &lod->lod_dt_dev, &ddp);
1525         lod->lod_osd_max_easize = ddp.ddp_max_ea_size;
1526
1527         /* setup obd to be used with old lov code */
1528         rc = lod_pools_init(lod, cfg);
1529         if (rc)
1530                 GOTO(out_disconnect, rc);
1531
1532         rc = lod_procfs_init(lod);
1533         if (rc)
1534                 GOTO(out_pools, rc);
1535
1536         spin_lock_init(&lod->lod_desc_lock);
1537         spin_lock_init(&lod->lod_connects_lock);
1538         lod_tgt_desc_init(&lod->lod_mdt_descs);
1539         lod_tgt_desc_init(&lod->lod_ost_descs);
1540
1541         RETURN(0);
1542
1543 out_pools:
1544         lod_pools_fini(lod);
1545 out_disconnect:
1546         obd_disconnect(lod->lod_child_exp);
1547         RETURN(rc);
1548 }
1549
1550 /**
1551  * Implementation of lu_device_type_operations::ldto_device_free() for LOD
1552  *
1553  * Releases the memory allocated for LOD device.
1554  *
1555  * see include/lu_object.h for the details.
1556  */
1557 static struct lu_device *lod_device_free(const struct lu_env *env,
1558                                          struct lu_device *lu)
1559 {
1560         struct lod_device *lod = lu2lod_dev(lu);
1561         struct lu_device  *next = &lod->lod_child->dd_lu_dev;
1562         ENTRY;
1563
1564         LASSERTF(atomic_read(&lu->ld_ref) == 0, "lu is %p\n", lu);
1565         dt_device_fini(&lod->lod_dt_dev);
1566         OBD_FREE_PTR(lod);
1567         RETURN(next);
1568 }
1569
1570 /**
1571  * Implementation of lu_device_type_operations::ldto_device_alloc() for LOD
1572  *
1573  * Allocates LOD device and calls the helpers to initialize it.
1574  *
1575  * see include/lu_object.h for the details.
1576  */
1577 static struct lu_device *lod_device_alloc(const struct lu_env *env,
1578                                           struct lu_device_type *type,
1579                                           struct lustre_cfg *lcfg)
1580 {
1581         struct lod_device *lod;
1582         struct lu_device  *lu_dev;
1583
1584         OBD_ALLOC_PTR(lod);
1585         if (lod == NULL) {
1586                 lu_dev = ERR_PTR(-ENOMEM);
1587         } else {
1588                 int rc;
1589
1590                 lu_dev = lod2lu_dev(lod);
1591                 dt_device_init(&lod->lod_dt_dev, type);
1592                 rc = lod_init0(env, lod, type, lcfg);
1593                 if (rc != 0) {
1594                         lod_device_free(env, lu_dev);
1595                         lu_dev = ERR_PTR(rc);
1596                 }
1597         }
1598
1599         return lu_dev;
1600 }
1601
1602 /**
1603  * Implementation of lu_device_type_operations::ldto_device_fini() for LOD
1604  *
1605  * Releases the internal resources used by LOD device.
1606  *
1607  * see include/lu_object.h for the details.
1608  */
1609 static struct lu_device *lod_device_fini(const struct lu_env *env,
1610                                          struct lu_device *d)
1611 {
1612         struct lod_device *lod = lu2lod_dev(d);
1613         int                rc;
1614         ENTRY;
1615
1616         lod_pools_fini(lod);
1617
1618         lod_procfs_fini(lod);
1619
1620         rc = lod_fini_tgt(env, lod, &lod->lod_ost_descs, true);
1621         if (rc)
1622                 CERROR("%s:can not fini ost descs %d\n",
1623                         lod2obd(lod)->obd_name, rc);
1624
1625         rc = lod_fini_tgt(env, lod, &lod->lod_mdt_descs, false);
1626         if (rc)
1627                 CERROR("%s:can not fini mdt descs %d\n",
1628                         lod2obd(lod)->obd_name, rc);
1629
1630         RETURN(NULL);
1631 }
1632
1633 /**
1634  * Implementation of obd_ops::o_connect() for LOD
1635  *
1636  * Used to track all the users of this specific LOD device,
1637  * so the device stays up until the last user disconnected.
1638  *
1639  * \param[in] env               LU environment provided by the caller
1640  * \param[out] exp              export the caller will be using to access LOD
1641  * \param[in] obd               OBD device representing LOD device
1642  * \param[in] cluuid            unique identifier of the caller
1643  * \param[in] data              not used
1644  * \param[in] localdata         not used
1645  *
1646  * \retval 0                    on success
1647  * \retval negative             negated errno on error
1648  **/
1649 static int lod_obd_connect(const struct lu_env *env, struct obd_export **exp,
1650                            struct obd_device *obd, struct obd_uuid *cluuid,
1651                            struct obd_connect_data *data, void *localdata)
1652 {
1653         struct lod_device    *lod = lu2lod_dev(obd->obd_lu_dev);
1654         struct lustre_handle  conn;
1655         int                   rc;
1656         ENTRY;
1657
1658         CDEBUG(D_CONFIG, "connect #%d\n", lod->lod_connects);
1659
1660         rc = class_connect(&conn, obd, cluuid);
1661         if (rc)
1662                 RETURN(rc);
1663
1664         *exp = class_conn2export(&conn);
1665
1666         spin_lock(&lod->lod_connects_lock);
1667         lod->lod_connects++;
1668         /* at the moment we expect the only user */
1669         LASSERT(lod->lod_connects == 1);
1670         spin_unlock(&lod->lod_connects_lock);
1671
1672         RETURN(0);
1673 }
1674
1675 /**
1676  *
1677  * Implementation of obd_ops::o_disconnect() for LOD
1678  *
1679  * When the caller doesn't need to use this LOD instance, it calls
1680  * obd_disconnect() and LOD releases corresponding export/reference count.
1681  * Once all the users gone, LOD device is released.
1682  *
1683  * \param[in] exp               export provided to the caller in obd_connect()
1684  *
1685  * \retval 0                    on success
1686  * \retval negative             negated errno on error
1687  **/
1688 static int lod_obd_disconnect(struct obd_export *exp)
1689 {
1690         struct obd_device *obd = exp->exp_obd;
1691         struct lod_device *lod = lu2lod_dev(obd->obd_lu_dev);
1692         int                rc, release = 0;
1693         ENTRY;
1694
1695         /* Only disconnect the underlying layers on the final disconnect. */
1696         spin_lock(&lod->lod_connects_lock);
1697         lod->lod_connects--;
1698         if (lod->lod_connects != 0) {
1699                 /* why should there be more than 1 connect? */
1700                 spin_unlock(&lod->lod_connects_lock);
1701                 CERROR("%s: disconnect #%d\n", exp->exp_obd->obd_name,
1702                        lod->lod_connects);
1703                 goto out;
1704         }
1705         spin_unlock(&lod->lod_connects_lock);
1706
1707         /* the last user of lod has gone, let's release the device */
1708         release = 1;
1709
1710 out:
1711         rc = class_disconnect(exp); /* bz 9811 */
1712
1713         if (rc == 0 && release)
1714                 class_manual_cleanup(obd);
1715         RETURN(rc);
1716 }
1717
1718 LU_KEY_INIT(lod, struct lod_thread_info);
1719
1720 static void lod_key_fini(const struct lu_context *ctx,
1721                 struct lu_context_key *key, void *data)
1722 {
1723         struct lod_thread_info *info = data;
1724         /* allocated in lod_get_lov_ea
1725          * XXX: this is overload, a tread may have such store but used only
1726          * once. Probably better would be pool of such stores per LOD.
1727          */
1728         if (info->lti_ea_store) {
1729                 OBD_FREE_LARGE(info->lti_ea_store, info->lti_ea_store_size);
1730                 info->lti_ea_store = NULL;
1731                 info->lti_ea_store_size = 0;
1732         }
1733         lu_buf_free(&info->lti_linkea_buf);
1734         OBD_FREE_PTR(info);
1735 }
1736
1737 /* context key: lod_thread_key */
1738 LU_CONTEXT_KEY_DEFINE(lod, LCT_MD_THREAD);
1739
1740 LU_TYPE_INIT_FINI(lod, &lod_thread_key);
1741
1742 static struct lu_device_type_operations lod_device_type_ops = {
1743         .ldto_init           = lod_type_init,
1744         .ldto_fini           = lod_type_fini,
1745
1746         .ldto_start          = lod_type_start,
1747         .ldto_stop           = lod_type_stop,
1748
1749         .ldto_device_alloc   = lod_device_alloc,
1750         .ldto_device_free    = lod_device_free,
1751
1752         .ldto_device_fini    = lod_device_fini
1753 };
1754
1755 static struct lu_device_type lod_device_type = {
1756         .ldt_tags     = LU_DEVICE_DT,
1757         .ldt_name     = LUSTRE_LOD_NAME,
1758         .ldt_ops      = &lod_device_type_ops,
1759         .ldt_ctx_tags = LCT_MD_THREAD,
1760 };
1761
1762 /**
1763  * Implementation of obd_ops::o_get_info() for LOD
1764  *
1765  * Currently, there is only one supported key: KEY_OSP_CONNECTED , to provide
1766  * the caller binary status whether LOD has seen connection to any OST target.
1767  * It will also check if the MDT update log context being initialized (if
1768  * needed).
1769  *
1770  * \param[in] env               LU environment provided by the caller
1771  * \param[in] exp               export of the caller
1772  * \param[in] keylen            len of the key
1773  * \param[in] key               the key
1774  * \param[in] vallen            not used
1775  * \param[in] val               not used
1776  *
1777  * \retval                      0 if a connection was seen
1778  * \retval                      -EAGAIN if LOD isn't running yet or no
1779  *                              connection has been seen yet
1780  * \retval                      -EINVAL if not supported key is requested
1781  **/
1782 static int lod_obd_get_info(const struct lu_env *env, struct obd_export *exp,
1783                             __u32 keylen, void *key, __u32 *vallen, void *val)
1784 {
1785         int rc = -EINVAL;
1786
1787         if (KEY_IS(KEY_OSP_CONNECTED)) {
1788                 struct obd_device       *obd = exp->exp_obd;
1789                 struct lod_device       *d;
1790                 struct lod_tgt_desc     *tgt;
1791                 unsigned int            i;
1792                 int                     rc = 1;
1793
1794                 if (!obd->obd_set_up || obd->obd_stopping)
1795                         RETURN(-EAGAIN);
1796
1797                 d = lu2lod_dev(obd->obd_lu_dev);
1798                 lod_getref(&d->lod_ost_descs);
1799                 lod_foreach_ost(d, i) {
1800                         tgt = OST_TGT(d, i);
1801                         LASSERT(tgt && tgt->ltd_tgt);
1802                         rc = obd_get_info(env, tgt->ltd_exp, keylen, key,
1803                                           vallen, val);
1804                         /* one healthy device is enough */
1805                         if (rc == 0)
1806                                 break;
1807                 }
1808                 lod_putref(d, &d->lod_ost_descs);
1809
1810                 lod_getref(&d->lod_mdt_descs);
1811                 lod_foreach_mdt(d, i) {
1812                         struct llog_ctxt *ctxt;
1813
1814                         tgt = MDT_TGT(d, i);
1815                         LASSERT(tgt != NULL);
1816                         LASSERT(tgt->ltd_tgt != NULL);
1817                         if (!tgt->ltd_active)
1818                                 continue;
1819
1820                         ctxt = llog_get_context(tgt->ltd_tgt->dd_lu_dev.ld_obd,
1821                                                 LLOG_UPDATELOG_ORIG_CTXT);
1822                         if (ctxt == NULL) {
1823                                 CDEBUG(D_INFO, "%s: %s is not ready.\n",
1824                                        obd->obd_name,
1825                                       tgt->ltd_tgt->dd_lu_dev.ld_obd->obd_name);
1826                                 rc = -EAGAIN;
1827                                 break;
1828                         }
1829                         if (ctxt->loc_handle == NULL) {
1830                                 CDEBUG(D_INFO, "%s: %s is not ready.\n",
1831                                        obd->obd_name,
1832                                       tgt->ltd_tgt->dd_lu_dev.ld_obd->obd_name);
1833                                 rc = -EAGAIN;
1834                                 llog_ctxt_put(ctxt);
1835                                 break;
1836                         }
1837                         llog_ctxt_put(ctxt);
1838                 }
1839                 lod_putref(d, &d->lod_mdt_descs);
1840
1841                 RETURN(rc);
1842         }
1843
1844         RETURN(rc);
1845 }
1846
1847 static struct obd_ops lod_obd_device_ops = {
1848         .o_owner        = THIS_MODULE,
1849         .o_connect      = lod_obd_connect,
1850         .o_disconnect   = lod_obd_disconnect,
1851         .o_get_info     = lod_obd_get_info,
1852         .o_pool_new     = lod_pool_new,
1853         .o_pool_rem     = lod_pool_remove,
1854         .o_pool_add     = lod_pool_add,
1855         .o_pool_del     = lod_pool_del,
1856 };
1857
1858 static int __init lod_mod_init(void)
1859 {
1860         struct obd_type *type;
1861         int rc;
1862
1863         rc = lu_kmem_init(lod_caches);
1864         if (rc)
1865                 return rc;
1866
1867         rc = class_register_type(&lod_obd_device_ops, NULL, true, NULL,
1868                                  LUSTRE_LOD_NAME, &lod_device_type);
1869         if (rc) {
1870                 lu_kmem_fini(lod_caches);
1871                 return rc;
1872         }
1873
1874         /* create "lov" entry in procfs for compatibility purposes */
1875         type = class_search_type(LUSTRE_LOV_NAME);
1876         if (type != NULL && type->typ_procroot != NULL)
1877                 return rc;
1878
1879         type = class_search_type(LUSTRE_LOD_NAME);
1880         type->typ_procsym = lprocfs_register("lov", proc_lustre_root,
1881                                              NULL, NULL);
1882         if (IS_ERR(type->typ_procsym)) {
1883                 CERROR("lod: can't create compat entry \"lov\": %d\n",
1884                        (int)PTR_ERR(type->typ_procsym));
1885                 type->typ_procsym = NULL;
1886         }
1887         return rc;
1888 }
1889
1890 static void __exit lod_mod_exit(void)
1891 {
1892         class_unregister_type(LUSTRE_LOD_NAME);
1893         lu_kmem_fini(lod_caches);
1894 }
1895
1896 MODULE_AUTHOR("Intel Corporation. <https://wiki.hpdd.intel.com/>");
1897 MODULE_DESCRIPTION("Lustre Logical Object Device ("LUSTRE_LOD_NAME")");
1898 MODULE_LICENSE("GPL");
1899
1900 module_init(lod_mod_init);
1901 module_exit(lod_mod_exit);
1902