Whamcloud - gitweb
LU-6070 libcfs: provide separate buffers for libcfs_*2str()
[fs/lustre-release.git] / lustre / obdclass / obd_mount_server.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2013, 2014, Intel Corporation.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  *
36  * lustre/obdclass/obd_mount_server.c
37  *
38  * Server mount routines
39  *
40  * Author: Nathan Rutman <nathan@clusterfs.com>
41  */
42
43
44 #define DEBUG_SUBSYSTEM S_CLASS
45 #define D_MOUNT (D_SUPER | D_CONFIG /* | D_WARNING */)
46 #define PRINT_CMD CDEBUG
47 #define PRINT_MASK (D_SUPER | D_CONFIG)
48
49 #include <linux/statfs.h>
50 #include <obd.h>
51 #include <obd_class.h>
52 #include <lustre/lustre_user.h>
53 #include <linux/version.h>
54 #include <lustre_ioctl.h>
55 #include <lustre_log.h>
56 #include <lustre_disk.h>
57 #include <lustre_param.h>
58 #ifdef HAVE_KERNEL_LOCKED
59 #include <linux/smp_lock.h>
60 #endif
61 #ifdef HAVE_SELINUX_IS_ENABLED
62 #include <linux/selinux.h>
63 #endif
64
65 /*********** mount lookup *********/
66
67 static DEFINE_MUTEX(lustre_mount_info_lock);
68 static struct list_head server_mount_info_list =
69         LIST_HEAD_INIT(server_mount_info_list);
70
71 static struct lustre_mount_info *server_find_mount(const char *name)
72 {
73         struct list_head *tmp;
74         struct lustre_mount_info *lmi;
75         ENTRY;
76
77         list_for_each(tmp, &server_mount_info_list) {
78                 lmi = list_entry(tmp, struct lustre_mount_info,
79                                  lmi_list_chain);
80                 if (strcmp(name, lmi->lmi_name) == 0)
81                         RETURN(lmi);
82         }
83         RETURN(NULL);
84 }
85
86 /* we must register an obd for a mount before we call the setup routine.
87  *_setup will call lustre_get_mount to get the mnt struct
88  by obd_name, since we can't pass the pointer to setup. */
89 static int server_register_mount(const char *name, struct super_block *sb)
90 {
91         struct lustre_mount_info *lmi;
92         char *name_cp;
93         ENTRY;
94
95         LASSERT(sb);
96
97         OBD_ALLOC(lmi, sizeof(*lmi));
98         if (!lmi)
99                 RETURN(-ENOMEM);
100         OBD_ALLOC(name_cp, strlen(name) + 1);
101         if (!name_cp) {
102                 OBD_FREE(lmi, sizeof(*lmi));
103                 RETURN(-ENOMEM);
104         }
105         strcpy(name_cp, name);
106
107         mutex_lock(&lustre_mount_info_lock);
108
109         if (server_find_mount(name)) {
110                 mutex_unlock(&lustre_mount_info_lock);
111                 OBD_FREE(lmi, sizeof(*lmi));
112                 OBD_FREE(name_cp, strlen(name) + 1);
113                 CERROR("Already registered %s\n", name);
114                 RETURN(-EEXIST);
115         }
116         lmi->lmi_name = name_cp;
117         lmi->lmi_sb = sb;
118         list_add(&lmi->lmi_list_chain, &server_mount_info_list);
119
120         mutex_unlock(&lustre_mount_info_lock);
121
122         CDEBUG(D_MOUNT, "register mount %p from %s\n", sb, name);
123
124         RETURN(0);
125 }
126
127 /* when an obd no longer needs a mount */
128 static int server_deregister_mount(const char *name)
129 {
130         struct lustre_mount_info *lmi;
131         ENTRY;
132
133         mutex_lock(&lustre_mount_info_lock);
134         lmi = server_find_mount(name);
135         if (!lmi) {
136                 mutex_unlock(&lustre_mount_info_lock);
137                 CERROR("%s not registered\n", name);
138                 RETURN(-ENOENT);
139         }
140
141         CDEBUG(D_MOUNT, "deregister mount %p from %s\n", lmi->lmi_sb, name);
142
143         OBD_FREE(lmi->lmi_name, strlen(lmi->lmi_name) + 1);
144         list_del(&lmi->lmi_list_chain);
145         OBD_FREE(lmi, sizeof(*lmi));
146         mutex_unlock(&lustre_mount_info_lock);
147
148         RETURN(0);
149 }
150
151 /* obd's look up a registered mount using their obdname. This is just
152    for initial obd setup to find the mount struct.  It should not be
153    called every time you want to mntget. */
154 struct lustre_mount_info *server_get_mount(const char *name)
155 {
156         struct lustre_mount_info *lmi;
157         struct lustre_sb_info *lsi;
158         ENTRY;
159
160         mutex_lock(&lustre_mount_info_lock);
161         lmi = server_find_mount(name);
162         mutex_unlock(&lustre_mount_info_lock);
163         if (!lmi) {
164                 CERROR("Can't find mount for %s\n", name);
165                 RETURN(NULL);
166         }
167         lsi = s2lsi(lmi->lmi_sb);
168
169         atomic_inc(&lsi->lsi_mounts);
170
171         CDEBUG(D_MOUNT, "get mount %p from %s, refs=%d\n", lmi->lmi_sb,
172                name, atomic_read(&lsi->lsi_mounts));
173
174         RETURN(lmi);
175 }
176 EXPORT_SYMBOL(server_get_mount);
177
178 /**
179  * server_put_mount: to be called from obd_cleanup methods
180  * @name:       obd name
181  * @dereg_mnt:  0 or 1 depending on whether the mount is to be deregistered or
182  * not
183  *
184  * The caller decides whether server_deregister_mount() needs to be called or
185  * not. Calling of server_deregister_mount() does not depend on refcounting on
186  * lsi because we could have say the mgs and mds on the same node and we
187  * unmount the mds, then the ref on the lsi would still be non-zero but we
188  * would still want to deregister the mds mount.
189  */
190 int server_put_mount(const char *name, bool dereg_mnt)
191 {
192         struct lustre_mount_info *lmi;
193         struct lustre_sb_info *lsi;
194         ENTRY;
195
196         mutex_lock(&lustre_mount_info_lock);
197         lmi = server_find_mount(name);
198         mutex_unlock(&lustre_mount_info_lock);
199         if (!lmi) {
200                 CERROR("Can't find mount for %s\n", name);
201                 RETURN(-ENOENT);
202         }
203         lsi = s2lsi(lmi->lmi_sb);
204
205         CDEBUG(D_MOUNT, "put mount %p from %s, refs=%d\n",
206                lmi->lmi_sb, name, atomic_read(&lsi->lsi_mounts));
207
208         if (lustre_put_lsi(lmi->lmi_sb))
209                 CDEBUG(D_MOUNT, "Last put of mount %p from %s\n",
210                        lmi->lmi_sb, name);
211
212         if (dereg_mnt)
213                 /* this obd should never need the mount again */
214                 server_deregister_mount(name);
215
216         RETURN(0);
217 }
218 EXPORT_SYMBOL(server_put_mount);
219
220 /* Set up a MGS to serve startup logs */
221 static int server_start_mgs(struct super_block *sb)
222 {
223         struct lustre_sb_info    *lsi = s2lsi(sb);
224         struct lustre_mount_info *lmi;
225         int    rc = 0;
226         ENTRY;
227
228         /* It is impossible to have more than 1 MGS per node, since
229            MGC wouldn't know which to connect to */
230         lmi = server_find_mount(LUSTRE_MGS_OBDNAME);
231         if (lmi) {
232                 lsi = s2lsi(lmi->lmi_sb);
233                 LCONSOLE_ERROR_MSG(0x15d, "The MGS service was already started"
234                                    " from server\n");
235                 RETURN(-EALREADY);
236         }
237
238         CDEBUG(D_CONFIG, "Start MGS service %s\n", LUSTRE_MGS_OBDNAME);
239
240         rc = server_register_mount(LUSTRE_MGS_OBDNAME, sb);
241
242         if (!rc) {
243                 rc = lustre_start_simple(LUSTRE_MGS_OBDNAME, LUSTRE_MGS_NAME,
244                                          LUSTRE_MGS_OBDNAME, NULL, NULL,
245                                          lsi->lsi_osd_obdname, NULL);
246                 /* server_deregister_mount() is not called previously, for lsi
247                  * and other stuff can't be freed cleanly when mgs calls
248                  * server_put_mount() in error handling case (see b=17758),
249                  * this problem is caused by a bug in mgs_init0, which forgot
250                  * calling server_put_mount in error case. */
251
252                 if (rc)
253                         server_deregister_mount(LUSTRE_MGS_OBDNAME);
254         }
255
256         if (rc)
257                 LCONSOLE_ERROR_MSG(0x15e, "Failed to start MGS '%s' (%d). "
258                                    "Is the 'mgs' module loaded?\n",
259                                    LUSTRE_MGS_OBDNAME, rc);
260         RETURN(rc);
261 }
262
263 static int server_stop_mgs(struct super_block *sb)
264 {
265         struct obd_device *obd;
266         int rc;
267         ENTRY;
268
269         CDEBUG(D_MOUNT, "Stop MGS service %s\n", LUSTRE_MGS_OBDNAME);
270
271         /* There better be only one MGS */
272         obd = class_name2obd(LUSTRE_MGS_OBDNAME);
273         if (!obd) {
274                 CDEBUG(D_CONFIG, "mgs %s not running\n", LUSTRE_MGS_OBDNAME);
275                 RETURN(-EALREADY);
276         }
277
278         /* The MGS should always stop when we say so */
279         obd->obd_force = 1;
280         rc = class_manual_cleanup(obd);
281         RETURN(rc);
282 }
283
284 /* Since there's only one mgc per node, we have to change it's fs to get
285    access to the right disk. */
286 static int server_mgc_set_fs(struct obd_device *mgc, struct super_block *sb)
287 {
288         struct lustre_sb_info *lsi = s2lsi(sb);
289         int rc;
290         ENTRY;
291
292         CDEBUG(D_MOUNT, "Set mgc disk for %s\n", lsi->lsi_lmd->lmd_dev);
293
294         /* cl_mgc_sem in mgc insures we sleep if the mgc_fs is busy */
295         rc = obd_set_info_async(NULL, mgc->obd_self_export,
296                                 sizeof(KEY_SET_FS), KEY_SET_FS,
297                                 sizeof(*sb), sb, NULL);
298         if (rc != 0)
299                 CERROR("can't set_fs %d\n", rc);
300
301         RETURN(rc);
302 }
303
304 static int server_mgc_clear_fs(struct obd_device *mgc)
305 {
306         int rc;
307         ENTRY;
308
309         CDEBUG(D_MOUNT, "Unassign mgc disk\n");
310
311         rc = obd_set_info_async(NULL, mgc->obd_self_export,
312                                 sizeof(KEY_CLEAR_FS), KEY_CLEAR_FS,
313                                 0, NULL, NULL);
314         RETURN(rc);
315 }
316
317 static inline bool is_mdc_device(const char *devname)
318 {
319         char *ptr;
320
321         ptr = strrchr(devname, '-');
322         return ptr != NULL && strcmp(ptr, "-mdc") == 0;
323 }
324
325 static inline bool tgt_is_mdt(const char *tgtname, __u32 *idx)
326 {
327         int type;
328
329         type = server_name2index(tgtname, idx, NULL);
330
331         return type == LDD_F_SV_TYPE_MDT;
332 }
333
334 /**
335  * Convert OST/MDT name(fsname-{MDT,OST}xxxx) to a lwp name with the @idx:yyyy
336  * (fsname-MDTyyyy-lwp-{MDT,OST}xxxx)
337  **/
338 int tgt_name2lwp_name(const char *tgt_name, char *lwp_name, int len, __u32 idx)
339 {
340         char            *fsname;
341         const char      *tgt;
342         int             rc;
343         ENTRY;
344
345         OBD_ALLOC(fsname, MTI_NAME_MAXLEN);
346         if (fsname == NULL)
347                 RETURN(-ENOMEM);
348
349         rc = server_name2fsname(tgt_name, fsname, &tgt);
350         if (rc != 0) {
351                 CERROR("%s: failed to get fsname from tgt_name: rc = %d\n",
352                        tgt_name, rc);
353                 GOTO(cleanup, rc);
354         }
355
356         if (*tgt != '-' && *tgt != ':') {
357                 CERROR("%s: invalid tgt_name name!\n", tgt_name);
358                 GOTO(cleanup, rc = -EINVAL);
359         }
360
361         tgt++;
362         if (strncmp(tgt, "OST", 3) != 0 && strncmp(tgt, "MDT", 3) != 0) {
363                 CERROR("%s is not an OST or MDT target!\n", tgt_name);
364                 GOTO(cleanup, rc = -EINVAL);
365         }
366         snprintf(lwp_name, len, "%s-MDT%04x-%s-%s",
367                  fsname, idx, LUSTRE_LWP_NAME, tgt);
368
369         GOTO(cleanup, rc = 0);
370
371 cleanup:
372         if (fsname != NULL)
373                 OBD_FREE(fsname, MTI_NAME_MAXLEN);
374
375         return rc;
376 }
377 EXPORT_SYMBOL(tgt_name2lwp_name);
378
379 static struct list_head lwp_register_list =
380         LIST_HEAD_INIT(lwp_register_list);
381 static DEFINE_MUTEX(lwp_register_list_lock);
382
383 int lustre_register_lwp_item(const char *lwpname, struct obd_export **exp,
384                              register_lwp_cb cb_func, void *cb_data)
385 {
386         struct obd_device        *lwp;
387         struct lwp_register_item *lri;
388         ENTRY;
389
390         LASSERTF(strlen(lwpname) < MTI_NAME_MAXLEN, "lwpname is too long %s\n",
391                  lwpname);
392         LASSERT(exp != NULL && *exp == NULL);
393
394         OBD_ALLOC_PTR(lri);
395         if (lri == NULL)
396                 RETURN(-ENOMEM);
397
398         mutex_lock(&lwp_register_list_lock);
399
400         lwp = class_name2obd(lwpname);
401         if (lwp != NULL && lwp->obd_set_up == 1) {
402                 struct obd_uuid *uuid;
403
404                 OBD_ALLOC_PTR(uuid);
405                 if (uuid == NULL) {
406                         mutex_unlock(&lwp_register_list_lock);
407                         OBD_FREE_PTR(lri);
408                         RETURN(-ENOMEM);
409                 }
410                 memcpy(uuid->uuid, lwpname, strlen(lwpname));
411                 *exp = cfs_hash_lookup(lwp->obd_uuid_hash, uuid);
412                 OBD_FREE_PTR(uuid);
413         }
414
415         memcpy(lri->lri_name, lwpname, strlen(lwpname));
416         lri->lri_exp = exp;
417         lri->lri_cb_func = cb_func;
418         lri->lri_cb_data = cb_data;
419         INIT_LIST_HEAD(&lri->lri_list);
420         list_add(&lri->lri_list, &lwp_register_list);
421
422         if (*exp != NULL && cb_func != NULL)
423                 cb_func(cb_data);
424
425         mutex_unlock(&lwp_register_list_lock);
426         RETURN(0);
427 }
428 EXPORT_SYMBOL(lustre_register_lwp_item);
429
430 void lustre_deregister_lwp_item(struct obd_export **exp)
431 {
432         struct lwp_register_item *lri, *tmp;
433
434         mutex_lock(&lwp_register_list_lock);
435         list_for_each_entry_safe(lri, tmp, &lwp_register_list, lri_list) {
436                 if (exp == lri->lri_exp) {
437                         if (*exp)
438                                 class_export_put(*exp);
439                         list_del(&lri->lri_list);
440                         OBD_FREE_PTR(lri);
441                         break;
442                 }
443         }
444         mutex_unlock(&lwp_register_list_lock);
445 }
446 EXPORT_SYMBOL(lustre_deregister_lwp_item);
447
448 struct obd_export *lustre_find_lwp_by_index(const char *dev, __u32 idx)
449 {
450         struct lustre_mount_info *lmi;
451         struct lustre_sb_info    *lsi;
452         struct obd_device        *lwp;
453         struct obd_export        *exp = NULL;
454         char                      fsname[16];
455         char                      lwp_name[24];
456         int                       rc;
457
458         lmi = server_get_mount(dev);
459         if (lmi == NULL)
460                 return NULL;
461
462         lsi = s2lsi(lmi->lmi_sb);
463         rc = server_name2fsname(lsi->lsi_svname, fsname, NULL);
464         if (rc != 0) {
465                 CERROR("%s: failed to get fsname: rc = %d\n",
466                        lsi->lsi_svname, rc);
467                 goto err_lmi;
468         }
469
470         snprintf(lwp_name, sizeof(lwp_name), "%s-MDT%04x", fsname, idx);
471         spin_lock(&lsi->lsi_lwp_lock);
472         list_for_each_entry(lwp, &lsi->lsi_lwp_list, obd_lwp_list) {
473                 char *ptr = strstr(lwp->obd_name, lwp_name);
474
475                 if (ptr != NULL) {
476                         exp = class_export_get(lwp->obd_lwp_export);
477                         break;
478                 }
479         }
480         spin_unlock(&lsi->lsi_lwp_lock);
481
482 err_lmi:
483         server_put_mount(dev, false);
484
485         return exp;
486 }
487 EXPORT_SYMBOL(lustre_find_lwp_by_index);
488
489 static void lustre_notify_lwp_list(struct obd_export *exp)
490 {
491         struct lwp_register_item *lri, *tmp;
492         LASSERT(exp != NULL);
493
494         mutex_lock(&lwp_register_list_lock);
495         list_for_each_entry_safe(lri, tmp, &lwp_register_list, lri_list) {
496                 if (strcmp(exp->exp_obd->obd_name, lri->lri_name))
497                         continue;
498                 if (*lri->lri_exp != NULL)
499                         continue;
500                 *lri->lri_exp = class_export_get(exp);
501                 if (lri->lri_cb_func != NULL)
502                         lri->lri_cb_func(lri->lri_cb_data);
503         }
504         mutex_unlock(&lwp_register_list_lock);
505 }
506
507 static int lustre_lwp_connect(struct obd_device *lwp)
508 {
509         struct lu_env            env;
510         struct lu_context        session_ctx;
511         struct obd_export       *exp;
512         struct obd_uuid         *uuid = NULL;
513         struct obd_connect_data *data = NULL;
514         int                      rc;
515         ENTRY;
516
517         /* log has been fully processed, let clients connect */
518         rc = lu_env_init(&env, lwp->obd_lu_dev->ld_type->ldt_ctx_tags);
519         if (rc != 0)
520                 RETURN(rc);
521
522         lu_context_init(&session_ctx, LCT_SERVER_SESSION);
523         session_ctx.lc_thread = NULL;
524         lu_context_enter(&session_ctx);
525         env.le_ses = &session_ctx;
526
527         OBD_ALLOC_PTR(data);
528         if (data == NULL)
529                 GOTO(out, rc = -ENOMEM);
530
531         data->ocd_connect_flags = OBD_CONNECT_VERSION | OBD_CONNECT_INDEX;
532         data->ocd_version = LUSTRE_VERSION_CODE;
533         data->ocd_connect_flags |= OBD_CONNECT_MDS_MDS | OBD_CONNECT_FID |
534                 OBD_CONNECT_AT | OBD_CONNECT_LRU_RESIZE |
535                 OBD_CONNECT_FULL20 | OBD_CONNECT_LVB_TYPE |
536                 OBD_CONNECT_LIGHTWEIGHT | OBD_CONNECT_LFSCK;
537         OBD_ALLOC_PTR(uuid);
538         if (uuid == NULL)
539                 GOTO(out, rc = -ENOMEM);
540
541         if (strlen(lwp->obd_name) > sizeof(uuid->uuid)) {
542                 CERROR("%s: Too long lwp name %s, max_size is %d\n",
543                        lwp->obd_name, lwp->obd_name, (int)sizeof(uuid->uuid));
544                 GOTO(out, rc = -EINVAL);
545         }
546
547         /* Use lwp name as the uuid, so we find the export by lwp name later */
548         memcpy(uuid->uuid, lwp->obd_name, strlen(lwp->obd_name));
549         rc = obd_connect(&env, &exp, lwp, uuid, data, NULL);
550         if (rc != 0) {
551                 CERROR("%s: connect failed: rc = %d\n", lwp->obd_name, rc);
552         } else {
553                 if (unlikely(lwp->obd_lwp_export != NULL))
554                         class_export_put(lwp->obd_lwp_export);
555                 lwp->obd_lwp_export = class_export_get(exp);
556                 lustre_notify_lwp_list(exp);
557         }
558
559         GOTO(out, rc);
560
561 out:
562         if (data != NULL)
563                 OBD_FREE_PTR(data);
564         if (uuid != NULL)
565                 OBD_FREE_PTR(uuid);
566
567         lu_env_fini(&env);
568         lu_context_exit(&session_ctx);
569         lu_context_fini(&session_ctx);
570
571         return rc;
572 }
573
574 /**
575  * lwp is used by slaves (Non-MDT0 targets) to manage the connection to MDT0,
576  * or from the OSTx to MDTy.
577  **/
578 static int lustre_lwp_setup(struct lustre_cfg *lcfg, struct lustre_sb_info *lsi,
579                             __u32 idx)
580 {
581         struct obd_device       *obd;
582         char                    *lwpname = NULL;
583         char                    *lwpuuid = NULL;
584         int                      rc;
585         ENTRY;
586
587         rc = class_add_uuid(lustre_cfg_string(lcfg, 1),
588                             lcfg->lcfg_nid);
589         if (rc != 0) {
590                 CERROR("%s: Can't add uuid: rc =%d\n", lsi->lsi_svname, rc);
591                 RETURN(rc);
592         }
593
594         OBD_ALLOC(lwpname, MTI_NAME_MAXLEN);
595         if (lwpname == NULL)
596                 GOTO(out, rc = -ENOMEM);
597
598         rc = tgt_name2lwp_name(lsi->lsi_svname, lwpname, MTI_NAME_MAXLEN, idx);
599         if (rc != 0) {
600                 CERROR("%s: failed to generate lwp name: rc = %d\n",
601                        lsi->lsi_svname, rc);
602                 GOTO(out, rc);
603         }
604
605         OBD_ALLOC(lwpuuid, MTI_NAME_MAXLEN);
606         if (lwpuuid == NULL)
607                 GOTO(out, rc = -ENOMEM);
608
609         sprintf(lwpuuid, "%s_UUID", lwpname);
610         rc = lustre_start_simple(lwpname, LUSTRE_LWP_NAME,
611                                  lwpuuid, lustre_cfg_string(lcfg, 1),
612                                  NULL, NULL, NULL);
613         if (rc) {
614                 CERROR("%s: setup up failed: rc %d\n", lwpname, rc);
615                 GOTO(out, rc);
616         }
617
618         obd = class_name2obd(lwpname);
619         LASSERT(obd != NULL);
620
621         rc = lustre_lwp_connect(obd);
622         if (rc == 0) {
623                 obd->u.cli.cl_max_mds_easize = MAX_MD_SIZE;
624                 spin_lock(&lsi->lsi_lwp_lock);
625                 list_add_tail(&obd->obd_lwp_list, &lsi->lsi_lwp_list);
626                 spin_unlock(&lsi->lsi_lwp_lock);
627         } else {
628                 CERROR("%s: connect failed: rc = %d\n", lwpname, rc);
629         }
630
631         GOTO(out, rc);
632
633 out:
634         if (lwpname != NULL)
635                 OBD_FREE(lwpname, MTI_NAME_MAXLEN);
636         if (lwpuuid != NULL)
637                 OBD_FREE(lwpuuid, MTI_NAME_MAXLEN);
638
639         return rc;
640 }
641
642 /* the caller is responsible for memory free */
643 static struct obd_device *lustre_find_lwp(struct lustre_sb_info *lsi,
644                                           char **lwpname, __u32 idx)
645 {
646         struct obd_device       *lwp;
647         int                      rc = 0;
648         ENTRY;
649
650         LASSERT(lwpname != NULL);
651         LASSERT(IS_OST(lsi) || IS_MDT(lsi));
652
653         OBD_ALLOC(*lwpname, MTI_NAME_MAXLEN);
654         if (*lwpname == NULL)
655                 RETURN(ERR_PTR(-ENOMEM));
656
657         rc = tgt_name2lwp_name(lsi->lsi_svname, *lwpname, MTI_NAME_MAXLEN, idx);
658         if (rc != 0) {
659                 CERROR("%s: failed to generate lwp name: rc = %d\n",
660                        lsi->lsi_svname, rc);
661                 GOTO(out, rc = -EINVAL);
662         }
663
664         lwp = class_name2obd(*lwpname);
665
666 out:
667         if (rc != 0) {
668                 if (*lwpname != NULL) {
669                         OBD_FREE(*lwpname, MTI_NAME_MAXLEN);
670                         *lwpname = NULL;
671                 }
672                 lwp = ERR_PTR(rc);
673         }
674
675         RETURN(lwp != NULL ? lwp : ERR_PTR(-ENOENT));
676 }
677
678 static int lustre_lwp_add_conn(struct lustre_cfg *cfg,
679                                struct lustre_sb_info *lsi, __u32 idx)
680 {
681         struct lustre_cfg_bufs *bufs = NULL;
682         struct lustre_cfg      *lcfg = NULL;
683         char                   *lwpname = NULL;
684         struct obd_device      *lwp;
685         int                     rc;
686         ENTRY;
687
688         lwp = lustre_find_lwp(lsi, &lwpname, idx);
689         if (IS_ERR(lwp)) {
690                 CERROR("%s: can't find lwp device.\n", lsi->lsi_svname);
691                 GOTO(out, rc = PTR_ERR(lwp));
692         }
693         LASSERT(lwpname != NULL);
694
695         OBD_ALLOC_PTR(bufs);
696         if (bufs == NULL)
697                 GOTO(out, rc = -ENOMEM);
698
699         lustre_cfg_bufs_reset(bufs, lwpname);
700         lustre_cfg_bufs_set_string(bufs, 1,
701                                    lustre_cfg_string(cfg, 1));
702
703         lcfg = lustre_cfg_new(LCFG_ADD_CONN, bufs);
704         if (lcfg == NULL)
705                 GOTO(out_cfg, rc = -ENOMEM);
706         rc = class_add_conn(lwp, lcfg);
707         if (rc)
708                 CERROR("%s: can't add conn: rc = %d\n", lwpname, rc);
709
710         if (lcfg != NULL)
711                 lustre_cfg_free(lcfg);
712 out_cfg:
713         if (bufs != NULL)
714                 OBD_FREE_PTR(bufs);
715 out:
716         if (lwpname != NULL)
717                 OBD_FREE(lwpname, MTI_NAME_MAXLEN);
718         RETURN(rc);
719 }
720
721 /**
722  * Retrieve MDT nids from the client log, then start the lwp device.
723  * there are only two scenarios which would include mdt nid.
724  * 1.
725  * marker   5 (flags=0x01, v2.1.54.0) lustre-MDTyyyy  'add mdc' xxx-
726  * add_uuid  nid=192.168.122.162@tcp(0x20000c0a87aa2)  0:  1:192.168.122.162@tcp
727  * attach    0:lustre-MDTyyyy-mdc  1:mdc  2:lustre-clilmv_UUID
728  * setup     0:lustre-MDTyyyy-mdc  1:lustre-MDTyyyy_UUID  2:192.168.122.162@tcp
729  * add_uuid  nid=192.168.172.1@tcp(0x20000c0a8ac01)  0:  1:192.168.172.1@tcp
730  * add_conn  0:lustre-MDTyyyy-mdc  1:192.168.172.1@tcp
731  * modify_mdc_tgts add 0:lustre-clilmv  1:lustre-MDTyyyy_UUID xxxx
732  * marker   5 (flags=0x02, v2.1.54.0) lustre-MDTyyyy  'add mdc' xxxx-
733  * 2.
734  * marker   7 (flags=0x01, v2.1.54.0) lustre-MDTyyyy  'add failnid' xxxx-
735  * add_uuid  nid=192.168.122.2@tcp(0x20000c0a87a02)  0:  1:192.168.122.2@tcp
736  * add_conn  0:lustre-MDTyyyy-mdc  1:192.168.122.2@tcp
737  * marker   7 (flags=0x02, v2.1.54.0) lustre-MDTyyyy  'add failnid' xxxx-
738  **/
739 static int client_lwp_config_process(const struct lu_env *env,
740                                      struct llog_handle *handle,
741                                      struct llog_rec_hdr *rec, void *data)
742 {
743         struct config_llog_instance *clli = data;
744         int                          cfg_len = rec->lrh_len;
745         char                        *cfg_buf = (char *) (rec + 1);
746         struct lustre_cfg           *lcfg = NULL;
747         struct lustre_sb_info       *lsi;
748         int                          rc = 0, swab = 0;
749         ENTRY;
750
751         if (rec->lrh_type != OBD_CFG_REC) {
752                 CERROR("Unknown llog record type %#x encountered\n",
753                        rec->lrh_type);
754                 RETURN(-EINVAL);
755         }
756
757         LASSERT(clli->cfg_sb != NULL);
758         lsi = s2lsi(clli->cfg_sb);
759
760         lcfg = (struct lustre_cfg *)cfg_buf;
761         if (lcfg->lcfg_version == __swab32(LUSTRE_CFG_VERSION)) {
762                 lustre_swab_lustre_cfg(lcfg);
763                 swab = 1;
764         }
765
766         rc = lustre_cfg_sanity_check(cfg_buf, cfg_len);
767         if (rc)
768                 GOTO(out, rc);
769
770         switch (lcfg->lcfg_command) {
771         case LCFG_MARKER: {
772                 struct cfg_marker *marker = lustre_cfg_buf(lcfg, 1);
773
774                 lustre_swab_cfg_marker(marker, swab,
775                                        LUSTRE_CFG_BUFLEN(lcfg, 1));
776                 if (marker->cm_flags & CM_SKIP ||
777                     marker->cm_flags & CM_EXCLUDE)
778                         GOTO(out, rc = 0);
779
780                 if (!tgt_is_mdt(marker->cm_tgtname, &clli->cfg_lwp_idx))
781                         GOTO(out, rc = 0);
782
783                 if (IS_MDT(lsi) && clli->cfg_lwp_idx != 0)
784                         GOTO(out, rc = 0);
785
786                 if (!strncmp(marker->cm_comment, "add mdc", 7) ||
787                     !strncmp(marker->cm_comment, "add failnid", 11)) {
788                         if (marker->cm_flags & CM_START) {
789                                 clli->cfg_flags = CFG_F_MARKER;
790                                 /* This hack is to differentiate the
791                                  * ADD_UUID is come from "add mdc" record
792                                  * or from "add failnid" record. */
793                                 if (!strncmp(marker->cm_comment,
794                                              "add failnid", 11))
795                                         clli->cfg_flags |= CFG_F_SKIP;
796                         } else if (marker->cm_flags & CM_END) {
797                                 clli->cfg_flags = 0;
798                         }
799                 }
800                 break;
801         }
802         case LCFG_ADD_UUID: {
803                 if (clli->cfg_flags == CFG_F_MARKER) {
804                         rc = lustre_lwp_setup(lcfg, lsi, clli->cfg_lwp_idx);
805                         /* XXX: process only the first nid as
806                          * we don't need another instance of lwp */
807                         clli->cfg_flags |= CFG_F_SKIP;
808                 } else if (clli->cfg_flags == (CFG_F_MARKER | CFG_F_SKIP)) {
809                         rc = class_add_uuid(lustre_cfg_string(lcfg, 1),
810                                             lcfg->lcfg_nid);
811                         if (rc)
812                                 CERROR("%s: Fail to add uuid, rc:%d\n",
813                                        lsi->lsi_svname, rc);
814                 }
815                 break;
816         }
817         case LCFG_ADD_CONN: {
818                 char *devname = lustre_cfg_string(lcfg, 0);
819                 char *ptr;
820                 __u32 idx     = 0;
821
822                 if (!is_mdc_device(devname))
823                         break;
824
825                 ptr = strrchr(devname, '-');
826                 if (ptr == NULL)
827                         break;
828
829                 *ptr = 0;
830                 if (!tgt_is_mdt(devname, &idx)) {
831                         *ptr = '-';
832                         break;
833                 }
834                 *ptr = '-';
835
836                 if (IS_MDT(lsi) && idx != 0)
837                         break;
838
839                 rc = lustre_lwp_add_conn(lcfg, lsi, idx);
840                 break;
841         }
842         default:
843                 break;
844         }
845 out:
846         RETURN(rc);
847 }
848
849 static int lustre_disconnect_lwp(struct super_block *sb)
850 {
851         struct lustre_sb_info           *lsi     = s2lsi(sb);
852         struct obd_device               *lwp;
853         char                            *logname = NULL;
854         struct lustre_cfg_bufs          *bufs    = NULL;
855         struct config_llog_instance     *cfg     = NULL;
856         int                              rc      = 0;
857         int                              rc1     = 0;
858         ENTRY;
859
860         if (likely(lsi->lsi_lwp_started)) {
861                 OBD_ALLOC(logname, MTI_NAME_MAXLEN);
862                 if (logname == NULL)
863                         RETURN(-ENOMEM);
864
865                 rc = server_name2fsname(lsi->lsi_svname, logname, NULL);
866                 if (rc != 0) {
867                         CERROR("%s: failed to get fsname from svname: "
868                                "rc = %d\n", lsi->lsi_svname, rc);
869                         GOTO(out, rc = -EINVAL);
870                 }
871
872                 strcat(logname, "-client");
873                 OBD_ALLOC_PTR(cfg);
874                 if (cfg == NULL)
875                         GOTO(out, rc = -ENOMEM);
876
877                 /* end log first */
878                 cfg->cfg_instance = sb;
879                 rc = lustre_end_log(sb, logname, cfg);
880                 if (rc != 0)
881                         GOTO(out, rc);
882
883                 lsi->lsi_lwp_started = 0;
884         }
885
886         OBD_ALLOC_PTR(bufs);
887         if (bufs == NULL)
888                 GOTO(out, rc = -ENOMEM);
889
890         list_for_each_entry(lwp, &lsi->lsi_lwp_list, obd_lwp_list) {
891                 struct lustre_cfg *lcfg;
892
893                 if (likely(lwp->obd_lwp_export != NULL)) {
894                         class_export_put(lwp->obd_lwp_export);
895                         lwp->obd_lwp_export = NULL;
896                 }
897
898                 lustre_cfg_bufs_reset(bufs, lwp->obd_name);
899                 lustre_cfg_bufs_set_string(bufs, 1, NULL);
900                 lcfg = lustre_cfg_new(LCFG_CLEANUP, bufs);
901                 if (lcfg == NULL)
902                         GOTO(out, rc = -ENOMEM);
903
904                 /* Disconnect import first. NULL is passed for the '@env',
905                  * since it will not be used. */
906                 rc = lwp->obd_lu_dev->ld_ops->ldo_process_config(NULL,
907                                                         lwp->obd_lu_dev, lcfg);
908                 lustre_cfg_free(lcfg);
909                 if (rc != 0 && rc != -ETIMEDOUT) {
910                         CERROR("%s: fail to disconnect LWP: rc = %d\n",
911                                lwp->obd_name, rc);
912                         rc1 = rc;
913                 }
914         }
915
916         GOTO(out, rc);
917
918 out:
919         if (bufs != NULL)
920                 OBD_FREE_PTR(bufs);
921         if (cfg != NULL)
922                 OBD_FREE_PTR(cfg);
923         if (logname != NULL)
924                 OBD_FREE(logname, MTI_NAME_MAXLEN);
925
926         return rc1 != 0 ? rc1 : rc;
927 }
928
929 /**
930  * Stop the lwp for an OST/MDT target.
931  **/
932 static int lustre_stop_lwp(struct super_block *sb)
933 {
934         struct lustre_sb_info   *lsi = s2lsi(sb);
935         struct obd_device       *lwp;
936         int                      rc  = 0;
937         int                      rc1 = 0;
938         ENTRY;
939
940         while (!list_empty(&lsi->lsi_lwp_list)) {
941                 lwp = list_entry(lsi->lsi_lwp_list.next, struct obd_device,
942                                  obd_lwp_list);
943                 list_del_init(&lwp->obd_lwp_list);
944                 lwp->obd_force = 1;
945                 rc = class_manual_cleanup(lwp);
946                 if (rc != 0) {
947                         CERROR("%s: fail to stop LWP: rc = %d\n",
948                                lwp->obd_name, rc);
949                         rc1 = rc;
950                 }
951         }
952
953         RETURN(rc1 != 0 ? rc1 : rc);
954 }
955
956 /**
957  * Start the lwp(fsname-MDTyyyy-lwp-{MDT,OST}xxxx) for a MDT/OST or MDT target.
958  **/
959 static int lustre_start_lwp(struct super_block *sb)
960 {
961         struct lustre_sb_info       *lsi = s2lsi(sb);
962         struct config_llog_instance *cfg = NULL;
963         char                        *logname;
964         int                          rc;
965         ENTRY;
966
967         if (unlikely(lsi->lsi_lwp_started))
968                 RETURN(0);
969
970         OBD_ALLOC(logname, MTI_NAME_MAXLEN);
971         if (logname == NULL)
972                 RETURN(-ENOMEM);
973
974         rc = server_name2fsname(lsi->lsi_svname, logname, NULL);
975         if (rc != 0) {
976                 CERROR("%s: failed to get fsname from svname: rc = %d\n",
977                        lsi->lsi_svname, rc);
978                 GOTO(out, rc = -EINVAL);
979         }
980
981         strcat(logname, "-client");
982         OBD_ALLOC_PTR(cfg);
983         if (cfg == NULL)
984                 GOTO(out, rc = -ENOMEM);
985
986         cfg->cfg_callback = client_lwp_config_process;
987         cfg->cfg_instance = sb;
988         rc = lustre_process_log(sb, logname, cfg);
989         if (rc == 0)
990                 lsi->lsi_lwp_started = 1;
991
992         GOTO(out, rc);
993
994 out:
995         OBD_FREE(logname, MTI_NAME_MAXLEN);
996         if (cfg != NULL)
997                 OBD_FREE_PTR(cfg);
998
999         return rc;
1000 }
1001
1002 static DEFINE_MUTEX(server_start_lock);
1003
1004 /* Stop MDS/OSS if nobody is using them */
1005 static int server_stop_servers(int lsiflags)
1006 {
1007         struct obd_device *obd = NULL;
1008         struct obd_type *type = NULL;
1009         int rc = 0;
1010         ENTRY;
1011
1012         mutex_lock(&server_start_lock);
1013
1014         /* Either an MDT or an OST or neither  */
1015         /* if this was an MDT, and there are no more MDT's, clean up the MDS */
1016         if (lsiflags & LDD_F_SV_TYPE_MDT) {
1017                 obd = class_name2obd(LUSTRE_MDS_OBDNAME);
1018                 if (obd != NULL)
1019                         type = class_search_type(LUSTRE_MDT_NAME);
1020         }
1021
1022         /* if this was an OST, and there are no more OST's, clean up the OSS */
1023         if (lsiflags & LDD_F_SV_TYPE_OST) {
1024                 obd = class_name2obd(LUSTRE_OSS_OBDNAME);
1025                 if (obd != NULL)
1026                         type = class_search_type(LUSTRE_OST_NAME);
1027         }
1028
1029         if (obd != NULL && (type == NULL || type->typ_refcnt == 0)) {
1030                 obd->obd_force = 1;
1031                 /* obd_fail doesn't mean much on a server obd */
1032                 rc = class_manual_cleanup(obd);
1033         }
1034
1035         mutex_unlock(&server_start_lock);
1036
1037         RETURN(rc);
1038 }
1039
1040 int server_mti_print(const char *title, struct mgs_target_info *mti)
1041 {
1042         PRINT_CMD(PRINT_MASK, "mti %s\n", title);
1043         PRINT_CMD(PRINT_MASK, "server: %s\n", mti->mti_svname);
1044         PRINT_CMD(PRINT_MASK, "fs:     %s\n", mti->mti_fsname);
1045         PRINT_CMD(PRINT_MASK, "uuid:   %s\n", mti->mti_uuid);
1046         PRINT_CMD(PRINT_MASK, "ver: %d  flags: %#x\n",
1047                   mti->mti_config_ver, mti->mti_flags);
1048         return 0;
1049 }
1050
1051 /* Generate data for registration */
1052 static int server_lsi2mti(struct lustre_sb_info *lsi,
1053                           struct mgs_target_info *mti)
1054 {
1055         lnet_process_id_t id;
1056         int rc, i = 0;
1057         int cplen = 0;
1058         ENTRY;
1059
1060         if (!IS_SERVER(lsi))
1061                 RETURN(-EINVAL);
1062
1063         if (strlcpy(mti->mti_svname, lsi->lsi_svname, sizeof(mti->mti_svname))
1064             >= sizeof(mti->mti_svname))
1065                 RETURN(-E2BIG);
1066
1067         mti->mti_nid_count = 0;
1068         while (LNetGetId(i++, &id) != -ENOENT) {
1069                 if (LNET_NETTYP(LNET_NIDNET(id.nid)) == LOLND)
1070                         continue;
1071
1072                 /* server use --servicenode param, only allow specified
1073                  * nids be registered */
1074                 if ((lsi->lsi_lmd->lmd_flags & LMD_FLG_NO_PRIMNODE) != 0 &&
1075                     class_match_nid(lsi->lsi_lmd->lmd_params,
1076                                     PARAM_FAILNODE, id.nid) < 1)
1077                         continue;
1078
1079                 /* match specified network */
1080                 if (!class_match_net(lsi->lsi_lmd->lmd_params,
1081                                      PARAM_NETWORK, LNET_NIDNET(id.nid)))
1082                         continue;
1083
1084                 mti->mti_nids[mti->mti_nid_count] = id.nid;
1085                 mti->mti_nid_count++;
1086                 if (mti->mti_nid_count >= MTI_NIDS_MAX) {
1087                         CWARN("Only using first %d nids for %s\n",
1088                               mti->mti_nid_count, mti->mti_svname);
1089                         break;
1090                 }
1091         }
1092
1093         mti->mti_lustre_ver = LUSTRE_VERSION_CODE;
1094         mti->mti_config_ver = 0;
1095
1096         rc = server_name2fsname(lsi->lsi_svname, mti->mti_fsname, NULL);
1097         if (rc != 0)
1098                 return rc;
1099
1100         rc = server_name2index(lsi->lsi_svname, &mti->mti_stripe_index, NULL);
1101         if (rc < 0)
1102                 return rc;
1103         /* Orion requires index to be set */
1104         LASSERT(!(rc & LDD_F_NEED_INDEX));
1105         /* keep only LDD flags */
1106         mti->mti_flags = lsi->lsi_flags & LDD_F_MASK;
1107         if (mti->mti_flags & (LDD_F_WRITECONF | LDD_F_VIRGIN))
1108                 mti->mti_flags |= LDD_F_UPDATE;
1109         cplen = strlcpy(mti->mti_params, lsi->lsi_lmd->lmd_params,
1110                         sizeof(mti->mti_params));
1111         if (cplen >= sizeof(mti->mti_params))
1112                 return -E2BIG;
1113         return 0;
1114 }
1115
1116 /* Register an old or new target with the MGS. If needed MGS will construct
1117    startup logs and assign index */
1118 static int server_register_target(struct lustre_sb_info *lsi)
1119 {
1120         struct obd_device *mgc = lsi->lsi_mgc;
1121         struct mgs_target_info *mti = NULL;
1122         bool writeconf;
1123         int rc;
1124         ENTRY;
1125
1126         LASSERT(mgc);
1127
1128         if (!IS_SERVER(lsi))
1129                 RETURN(-EINVAL);
1130
1131         OBD_ALLOC_PTR(mti);
1132         if (!mti)
1133                 RETURN(-ENOMEM);
1134
1135         rc = server_lsi2mti(lsi, mti);
1136         if (rc)
1137                 GOTO(out, rc);
1138
1139         CDEBUG(D_MOUNT, "Registration %s, fs=%s, %s, index=%04x, flags=%#x\n",
1140                mti->mti_svname, mti->mti_fsname,
1141                libcfs_nid2str(mti->mti_nids[0]), mti->mti_stripe_index,
1142                mti->mti_flags);
1143
1144         /* if write_conf is true, the registration must succeed */
1145         writeconf = !!(lsi->lsi_flags & (LDD_F_NEED_INDEX | LDD_F_UPDATE));
1146         mti->mti_flags |= LDD_F_OPC_REG;
1147
1148         /* Register the target */
1149         /* FIXME use mgc_process_config instead */
1150         rc = obd_set_info_async(NULL, mgc->u.cli.cl_mgc_mgsexp,
1151                                 sizeof(KEY_REGISTER_TARGET),
1152                                 KEY_REGISTER_TARGET,
1153                                 sizeof(*mti), mti, NULL);
1154         if (rc) {
1155                 if (mti->mti_flags & LDD_F_ERROR) {
1156                         LCONSOLE_ERROR_MSG(0x160,
1157                                 "%s: the MGS refuses to allow this server "
1158                                 "to start: rc = %d. Please see messages on "
1159                                 "the MGS.\n", lsi->lsi_svname, rc);
1160                 } else if (writeconf) {
1161                         LCONSOLE_ERROR_MSG(0x15f,
1162                                 "%s: cannot register this server with the MGS: "
1163                                 "rc = %d. Is the MGS running?\n",
1164                                 lsi->lsi_svname, rc);
1165                 } else {
1166                         CERROR("%s: error registering with the MGS: rc = %d "
1167                                "(not fatal)\n", lsi->lsi_svname, rc);
1168                         /* reset the error code for non-fatal error. */
1169                         rc = 0;
1170                 }
1171                 GOTO(out, rc);
1172         }
1173
1174 out:
1175         if (mti)
1176                 OBD_FREE_PTR(mti);
1177         RETURN(rc);
1178 }
1179
1180 /**
1181  * Notify the MGS that this target is ready.
1182  * Used by IR - if the MGS receives this message, it will notify clients.
1183  */
1184 static int server_notify_target(struct super_block *sb, struct obd_device *obd)
1185 {
1186         struct lustre_sb_info *lsi = s2lsi(sb);
1187         struct obd_device *mgc = lsi->lsi_mgc;
1188         struct mgs_target_info *mti = NULL;
1189         int rc;
1190         ENTRY;
1191
1192         LASSERT(mgc);
1193
1194         if (!(IS_SERVER(lsi)))
1195                 RETURN(-EINVAL);
1196
1197         OBD_ALLOC_PTR(mti);
1198         if (!mti)
1199                 RETURN(-ENOMEM);
1200         rc = server_lsi2mti(lsi, mti);
1201         if (rc)
1202                 GOTO(out, rc);
1203
1204         mti->mti_instance = obd->u.obt.obt_instance;
1205         mti->mti_flags |= LDD_F_OPC_READY;
1206
1207         /* FIXME use mgc_process_config instead */
1208         rc = obd_set_info_async(NULL, mgc->u.cli.cl_mgc_mgsexp,
1209                                 sizeof(KEY_REGISTER_TARGET),
1210                                 KEY_REGISTER_TARGET,
1211                                 sizeof(*mti), mti, NULL);
1212
1213         /* Imperative recovery: if the mgs informs us to use IR? */
1214         if (!rc && !(mti->mti_flags & LDD_F_ERROR) &&
1215             (mti->mti_flags & LDD_F_IR_CAPABLE))
1216                 lsi->lsi_flags |= LDD_F_IR_CAPABLE;
1217
1218 out:
1219         if (mti)
1220                 OBD_FREE_PTR(mti);
1221         RETURN(rc);
1222
1223 }
1224
1225 /** Start server targets: MDTs and OSTs
1226  */
1227 static int server_start_targets(struct super_block *sb)
1228 {
1229         struct obd_device *obd;
1230         struct lustre_sb_info *lsi = s2lsi(sb);
1231         struct config_llog_instance cfg;
1232         struct lu_env env;
1233         struct lu_device *dev;
1234         int rc;
1235         ENTRY;
1236
1237         CDEBUG(D_MOUNT, "starting target %s\n", lsi->lsi_svname);
1238
1239         if (IS_MDT(lsi)) {
1240                 /* make sure the MDS is started */
1241                 mutex_lock(&server_start_lock);
1242                 obd = class_name2obd(LUSTRE_MDS_OBDNAME);
1243                 if (!obd) {
1244                         rc = lustre_start_simple(LUSTRE_MDS_OBDNAME,
1245                                                  LUSTRE_MDS_NAME,
1246                                                  LUSTRE_MDS_OBDNAME"_uuid",
1247                                                  NULL, NULL, NULL, NULL);
1248                         if (rc) {
1249                                 mutex_unlock(&server_start_lock);
1250                                 CERROR("failed to start MDS: %d\n", rc);
1251                                 RETURN(rc);
1252                         }
1253                 }
1254                 mutex_unlock(&server_start_lock);
1255         }
1256
1257         /* If we're an OST, make sure the global OSS is running */
1258         if (IS_OST(lsi)) {
1259                 /* make sure OSS is started */
1260                 mutex_lock(&server_start_lock);
1261                 obd = class_name2obd(LUSTRE_OSS_OBDNAME);
1262                 if (!obd) {
1263                         rc = lustre_start_simple(LUSTRE_OSS_OBDNAME,
1264                                                  LUSTRE_OSS_NAME,
1265                                                  LUSTRE_OSS_OBDNAME"_uuid",
1266                                                  NULL, NULL, NULL, NULL);
1267                         if (rc) {
1268                                 mutex_unlock(&server_start_lock);
1269                                 CERROR("failed to start OSS: %d\n", rc);
1270                                 RETURN(rc);
1271                         }
1272                 }
1273                 mutex_unlock(&server_start_lock);
1274         }
1275
1276         /* Set the mgc fs to our server disk.  This allows the MGC to
1277          * read and write configs locally, in case it can't talk to the MGS. */
1278         rc = server_mgc_set_fs(lsi->lsi_mgc, sb);
1279         if (rc)
1280                 GOTO(out_stop_service, rc);
1281
1282         /* Register with MGS */
1283         rc = server_register_target(lsi);
1284         if (rc)
1285                 GOTO(out_mgc, rc);
1286
1287         /* Let the target look up the mount using the target's name
1288            (we can't pass the sb or mnt through class_process_config.) */
1289         rc = server_register_mount(lsi->lsi_svname, sb);
1290         if (rc)
1291                 GOTO(out_mgc, rc);
1292
1293         /* Start targets using the llog named for the target */
1294         memset(&cfg, 0, sizeof(cfg));
1295         cfg.cfg_callback = class_config_llog_handler;
1296         rc = lustre_process_log(sb, lsi->lsi_svname, &cfg);
1297         if (rc) {
1298                 CERROR("failed to start server %s: %d\n",
1299                        lsi->lsi_svname, rc);
1300                 /* Do NOT call server_deregister_mount() here. This makes it
1301                  * impossible to find mount later in cleanup time and leaves
1302                  * @lsi and othder stuff leaked. -umka */
1303                 GOTO(out_mgc, rc);
1304         }
1305
1306         obd = class_name2obd(lsi->lsi_svname);
1307         if (!obd) {
1308                 CERROR("no server named %s was started\n", lsi->lsi_svname);
1309                 GOTO(out_mgc, rc = -ENXIO);
1310         }
1311
1312         if (IS_OST(lsi) || IS_MDT(lsi)) {
1313                 rc = lustre_start_lwp(sb);
1314                 if (rc) {
1315                         CERROR("%s: failed to start LWP: %d\n",
1316                                lsi->lsi_svname, rc);
1317                         GOTO(out_mgc, rc);
1318                 }
1319         }
1320
1321         server_notify_target(sb, obd);
1322
1323         /* calculate recovery timeout, do it after lustre_process_log */
1324         server_calc_timeout(lsi, obd);
1325
1326         /* log has been fully processed */
1327         obd_notify(obd, NULL, OBD_NOTIFY_CONFIG, (void *)CONFIG_LOG);
1328
1329         /* log has been fully processed, let clients connect */
1330         dev = obd->obd_lu_dev;
1331         if (dev && dev->ld_ops->ldo_prepare) {
1332                 rc = lu_env_init(&env, dev->ld_type->ldt_ctx_tags);
1333                 if (rc == 0) {
1334                         struct lu_context  session_ctx;
1335
1336                         lu_context_init(&session_ctx, LCT_SERVER_SESSION);
1337                         session_ctx.lc_thread = NULL;
1338                         lu_context_enter(&session_ctx);
1339                         env.le_ses = &session_ctx;
1340
1341                         rc = dev->ld_ops->ldo_prepare(&env, NULL, dev);
1342
1343                         lu_env_fini(&env);
1344                         lu_context_exit(&session_ctx);
1345                         lu_context_fini(&session_ctx);
1346                 }
1347         }
1348
1349         /* abort recovery only on the complete stack:
1350          * many devices can be involved */
1351         if ((lsi->lsi_lmd->lmd_flags & LMD_FLG_ABORT_RECOV) &&
1352             (OBP(obd, iocontrol))) {
1353                 obd_iocontrol(OBD_IOC_ABORT_RECOVERY, obd->obd_self_export, 0,
1354                               NULL, NULL);
1355         }
1356
1357 out_mgc:
1358         /* Release the mgc fs for others to use */
1359         server_mgc_clear_fs(lsi->lsi_mgc);
1360
1361 out_stop_service:
1362         if (rc != 0)
1363                 server_stop_servers(lsi->lsi_flags);
1364
1365         RETURN(rc);
1366 }
1367
1368 static int lsi_prepare(struct lustre_sb_info *lsi)
1369 {
1370         const char *osd_type;
1371         const char *fstype;
1372         __u32 index;
1373         int rc;
1374         ENTRY;
1375
1376         LASSERT(lsi);
1377         LASSERT(lsi->lsi_lmd);
1378
1379         /* The server name is given as a mount line option */
1380         if (lsi->lsi_lmd->lmd_profile == NULL) {
1381                 LCONSOLE_ERROR("Can't determine server name\n");
1382                 RETURN(-EINVAL);
1383         }
1384
1385         /* Determine osd type */
1386         if (lsi->lsi_lmd->lmd_osd_type == NULL) {
1387                 osd_type = LUSTRE_OSD_LDISKFS_NAME;
1388                 fstype = "ldiskfs";
1389         } else {
1390                 osd_type = lsi->lsi_lmd->lmd_osd_type;
1391                 fstype = lsi->lsi_lmd->lmd_osd_type;
1392         }
1393
1394         if (strlen(lsi->lsi_lmd->lmd_profile) >= sizeof(lsi->lsi_svname) ||
1395             strlen(osd_type) >= sizeof(lsi->lsi_osd_type) ||
1396             strlen(fstype) >= sizeof(lsi->lsi_fstype))
1397                 RETURN(-ENAMETOOLONG);
1398
1399         strlcpy(lsi->lsi_svname, lsi->lsi_lmd->lmd_profile,
1400                 sizeof(lsi->lsi_svname));
1401         strlcpy(lsi->lsi_osd_type, osd_type, sizeof(lsi->lsi_osd_type));
1402         /* XXX: a temp. solution for components using ldiskfs
1403          *      to be removed in one of the subsequent patches */
1404         strlcpy(lsi->lsi_fstype, fstype, sizeof(lsi->lsi_fstype));
1405
1406         /* Determine server type */
1407         rc = server_name2index(lsi->lsi_svname, &index, NULL);
1408         if (rc < 0) {
1409                 if (lsi->lsi_lmd->lmd_flags & LMD_FLG_MGS) {
1410                         /* Assume we're a bare MGS */
1411                         rc = 0;
1412                         lsi->lsi_lmd->lmd_flags |= LMD_FLG_NOSVC;
1413                 } else {
1414                         LCONSOLE_ERROR("Can't determine server type of '%s'\n",
1415                                        lsi->lsi_svname);
1416                         RETURN(rc);
1417                 }
1418         }
1419         lsi->lsi_flags |= rc;
1420
1421         /* Add mount line flags that used to be in ldd:
1422          * writeconf, mgs, anything else?
1423          */
1424         lsi->lsi_flags |= (lsi->lsi_lmd->lmd_flags & LMD_FLG_WRITECONF) ?
1425                 LDD_F_WRITECONF : 0;
1426         lsi->lsi_flags |= (lsi->lsi_lmd->lmd_flags & LMD_FLG_VIRGIN) ?
1427                 LDD_F_VIRGIN : 0;
1428         lsi->lsi_flags |= (lsi->lsi_lmd->lmd_flags & LMD_FLG_UPDATE) ?
1429                 LDD_F_UPDATE : 0;
1430         lsi->lsi_flags |= (lsi->lsi_lmd->lmd_flags & LMD_FLG_MGS) ?
1431                 LDD_F_SV_TYPE_MGS : 0;
1432         lsi->lsi_flags |= (lsi->lsi_lmd->lmd_flags & LMD_FLG_NO_PRIMNODE) ?
1433                 LDD_F_NO_PRIMNODE : 0;
1434
1435         RETURN(0);
1436 }
1437
1438 /*************** server mount ******************/
1439
1440 /** Start the shutdown of servers at umount.
1441  */
1442 static void server_put_super(struct super_block *sb)
1443 {
1444         struct lustre_sb_info *lsi = s2lsi(sb);
1445         struct obd_device     *obd;
1446         char *tmpname, *extraname = NULL;
1447         int tmpname_sz;
1448         int lsiflags = lsi->lsi_flags;
1449         ENTRY;
1450
1451         LASSERT(IS_SERVER(lsi));
1452
1453         tmpname_sz = strlen(lsi->lsi_svname) + 1;
1454         OBD_ALLOC(tmpname, tmpname_sz);
1455         memcpy(tmpname, lsi->lsi_svname, tmpname_sz);
1456         CDEBUG(D_MOUNT, "server put_super %s\n", tmpname);
1457         if (IS_MDT(lsi) && (lsi->lsi_lmd->lmd_flags & LMD_FLG_NOSVC))
1458                 snprintf(tmpname, tmpname_sz, "MGS");
1459
1460         /* disconnect the lwp first to drain off the inflight request */
1461         if (IS_OST(lsi) || IS_MDT(lsi)) {
1462                 int     rc;
1463
1464                 rc = lustre_disconnect_lwp(sb);
1465                 if (rc != 0 && rc != -ETIMEDOUT &&
1466                     rc != -ENOTCONN && rc != -ESHUTDOWN)
1467                         CWARN("%s: failed to disconnect lwp: rc= %d\n",
1468                               tmpname, rc);
1469         }
1470
1471         /* Stop the target */
1472         if (!(lsi->lsi_lmd->lmd_flags & LMD_FLG_NOSVC) &&
1473             (IS_MDT(lsi) || IS_OST(lsi))) {
1474                 struct lustre_profile *lprof = NULL;
1475
1476                 /* tell the mgc to drop the config log */
1477                 lustre_end_log(sb, lsi->lsi_svname, NULL);
1478
1479                 /* COMPAT_146 - profile may get deleted in mgc_cleanup.
1480                    If there are any setup/cleanup errors, save the lov
1481                    name for safety cleanup later. */
1482                 lprof = class_get_profile(lsi->lsi_svname);
1483                 if (lprof && lprof->lp_dt) {
1484                         OBD_ALLOC(extraname, strlen(lprof->lp_dt) + 1);
1485                         strcpy(extraname, lprof->lp_dt);
1486                 }
1487
1488                 obd = class_name2obd(lsi->lsi_svname);
1489                 if (obd) {
1490                         CDEBUG(D_MOUNT, "stopping %s\n", obd->obd_name);
1491                         if (lsiflags & LSI_UMOUNT_FAILOVER)
1492                                 obd->obd_fail = 1;
1493                         /* We can't seem to give an error return code
1494                          * to .put_super, so we better make sure we clean up! */
1495                         obd->obd_force = 1;
1496                         class_manual_cleanup(obd);
1497                 } else {
1498                         CERROR("no obd %s\n", lsi->lsi_svname);
1499                         server_deregister_mount(lsi->lsi_svname);
1500                 }
1501         }
1502
1503         /* If they wanted the mgs to stop separately from the mdt, they
1504            should have put it on a different device. */
1505         if (IS_MGS(lsi)) {
1506                 /* if MDS start with --nomgs, don't stop MGS then */
1507                 if (!(lsi->lsi_lmd->lmd_flags & LMD_FLG_NOMGS))
1508                         server_stop_mgs(sb);
1509         }
1510
1511         if (IS_OST(lsi) || IS_MDT(lsi)) {
1512                 if (lustre_stop_lwp(sb) < 0)
1513                         CERROR("%s: failed to stop lwp!\n", tmpname);
1514         }
1515
1516         /* Clean the mgc and sb */
1517         lustre_common_put_super(sb);
1518
1519         /* wait till all in-progress cleanups are done
1520          * specifically we're interested in ofd cleanup
1521          * as it pins OSS */
1522         obd_zombie_barrier();
1523
1524         /* Stop the servers (MDS, OSS) if no longer needed.  We must wait
1525            until the target is really gone so that our type refcount check
1526            is right. */
1527         server_stop_servers(lsiflags);
1528
1529         /* In case of startup or cleanup err, stop related obds */
1530         if (extraname) {
1531                 obd = class_name2obd(extraname);
1532                 if (obd) {
1533                         CWARN("Cleaning orphaned obd %s\n", extraname);
1534                         obd->obd_force = 1;
1535                         class_manual_cleanup(obd);
1536                 }
1537                 OBD_FREE(extraname, strlen(extraname) + 1);
1538         }
1539
1540         LCONSOLE_WARN("server umount %s complete\n", tmpname);
1541         OBD_FREE(tmpname, tmpname_sz);
1542         EXIT;
1543 }
1544
1545 /** Called only for 'umount -f'
1546  */
1547 static void server_umount_begin(struct super_block *sb)
1548 {
1549         struct lustre_sb_info *lsi = s2lsi(sb);
1550         ENTRY;
1551
1552         CDEBUG(D_MOUNT, "umount -f\n");
1553         /* umount = failover
1554            umount -f = force
1555            no third way to do non-force, non-failover */
1556         lsi->lsi_flags &= ~LSI_UMOUNT_FAILOVER;
1557         EXIT;
1558 }
1559
1560 static int server_statfs(struct dentry *dentry, struct kstatfs *buf)
1561 {
1562         struct super_block *sb = dentry->d_sb;
1563         struct lustre_sb_info *lsi = s2lsi(sb);
1564         struct obd_statfs statfs;
1565         int rc;
1566         ENTRY;
1567
1568         if (lsi->lsi_dt_dev) {
1569                 rc = dt_statfs(NULL, lsi->lsi_dt_dev, &statfs);
1570                 if (rc == 0) {
1571                         statfs_unpack(buf, &statfs);
1572                         buf->f_type = sb->s_magic;
1573                         RETURN(0);
1574                 }
1575         }
1576
1577         /* just return 0 */
1578         buf->f_type = sb->s_magic;
1579         buf->f_bsize = sb->s_blocksize;
1580         buf->f_blocks = 1;
1581         buf->f_bfree = 0;
1582         buf->f_bavail = 0;
1583         buf->f_files = 1;
1584         buf->f_ffree = 0;
1585         buf->f_namelen = NAME_MAX;
1586         RETURN(0);
1587 }
1588
1589 /** The operations we support directly on the superblock:
1590  * mount, umount, and df.
1591  */
1592 static struct super_operations server_ops = {
1593         .put_super      = server_put_super,
1594         .umount_begin   = server_umount_begin, /* umount -f */
1595         .statfs         = server_statfs,
1596 };
1597
1598 /*
1599  * Xattr support for Lustre servers
1600  */
1601 static ssize_t lustre_getxattr(struct dentry *dentry, const char *name,
1602                                 void *buffer, size_t size)
1603 {
1604         if (!selinux_is_enabled())
1605                 return -EOPNOTSUPP;
1606         return -ENODATA;
1607 }
1608
1609 static int lustre_setxattr(struct dentry *dentry, const char *name,
1610                             const void *value, size_t size, int flags)
1611 {
1612         return -EOPNOTSUPP;
1613 }
1614
1615 static ssize_t lustre_listxattr(struct dentry *d_entry, char *name,
1616                                 size_t size)
1617 {
1618         return -EOPNOTSUPP;
1619 }
1620
1621 static const struct inode_operations server_inode_operations = {
1622         .setxattr       = lustre_setxattr,
1623         .getxattr       = lustre_getxattr,
1624         .listxattr      = lustre_listxattr,
1625 };
1626
1627 #define log2(n) ffz(~(n))
1628 #define LUSTRE_SUPER_MAGIC 0x0BD00BD1
1629
1630 static int server_fill_super_common(struct super_block *sb)
1631 {
1632         struct inode *root = NULL;
1633         ENTRY;
1634
1635         CDEBUG(D_MOUNT, "Server sb, dev=%d\n", (int)sb->s_dev);
1636
1637         sb->s_blocksize = 4096;
1638         sb->s_blocksize_bits = log2(sb->s_blocksize);
1639         sb->s_magic = LUSTRE_SUPER_MAGIC;
1640         sb->s_maxbytes = 0; /* we don't allow file IO on server mountpoints */
1641         sb->s_flags |= MS_RDONLY;
1642         sb->s_op = &server_ops;
1643
1644         root = new_inode(sb);
1645         if (!root) {
1646                 CERROR("Can't make root inode\n");
1647                 RETURN(-EIO);
1648         }
1649
1650         /* returns -EIO for every operation */
1651         /* make_bad_inode(root); -- badness - can't umount */
1652         /* apparently we need to be a directory for the mount to finish */
1653         root->i_mode = S_IFDIR;
1654         root->i_op = &server_inode_operations;
1655         sb->s_root = d_make_root(root);
1656         if (!sb->s_root) {
1657                 CERROR("%s: can't make root dentry\n", sb->s_id);
1658                 RETURN(-EIO);
1659         }
1660
1661         RETURN(0);
1662 }
1663
1664 static int osd_start(struct lustre_sb_info *lsi, unsigned long mflags)
1665 {
1666         struct lustre_mount_data *lmd = lsi->lsi_lmd;
1667         struct obd_device        *obd;
1668         struct dt_device_param    p;
1669         char                      flagstr[16];
1670         int                       rc;
1671         ENTRY;
1672
1673         CDEBUG(D_MOUNT,
1674                "Attempting to start %s, type=%s, lsifl=%x, mountfl=%lx\n",
1675                lsi->lsi_svname, lsi->lsi_osd_type, lsi->lsi_flags, mflags);
1676
1677         sprintf(lsi->lsi_osd_obdname, "%s-osd", lsi->lsi_svname);
1678         strcpy(lsi->lsi_osd_uuid, lsi->lsi_osd_obdname);
1679         strcat(lsi->lsi_osd_uuid, "_UUID");
1680         sprintf(flagstr, "%lu:%lu", mflags, (unsigned long) lmd->lmd_flags);
1681
1682         obd = class_name2obd(lsi->lsi_osd_obdname);
1683         if (obd == NULL) {
1684                 rc = lustre_start_simple(lsi->lsi_osd_obdname,
1685                                          lsi->lsi_osd_type,
1686                                          lsi->lsi_osd_uuid, lmd->lmd_dev,
1687                                          flagstr, lsi->lsi_lmd->lmd_opts,
1688                                          lsi->lsi_svname);
1689                 if (rc)
1690                         GOTO(out, rc);
1691                 obd = class_name2obd(lsi->lsi_osd_obdname);
1692                 LASSERT(obd);
1693         } else {
1694                 CDEBUG(D_MOUNT, "%s already started\n", lsi->lsi_osd_obdname);
1695                 /* but continue setup to allow special case of MDT and internal
1696                  * MGT being started separately. */
1697                 if (!((IS_MGS(lsi) && (lsi->lsi_lmd->lmd_flags &
1698                                       LMD_FLG_NOMGS)) ||
1699                      (IS_MDT(lsi) && (lsi->lsi_lmd->lmd_flags &
1700                                       LMD_FLG_NOSVC))))
1701                         RETURN(-EALREADY);
1702         }
1703
1704         rc = obd_connect(NULL, &lsi->lsi_osd_exp,
1705                          obd, &obd->obd_uuid, NULL, NULL);
1706
1707         OBD_FAIL_TIMEOUT(OBD_FAIL_TGT_DELAY_CONNECT, 10);
1708
1709         if (rc) {
1710                 obd->obd_force = 1;
1711                 class_manual_cleanup(obd);
1712                 lsi->lsi_dt_dev = NULL;
1713                 RETURN(rc);
1714         }
1715
1716         LASSERT(obd->obd_lu_dev);
1717         lu_device_get(obd->obd_lu_dev);
1718         lsi->lsi_dt_dev = lu2dt_dev(obd->obd_lu_dev);
1719         LASSERT(lsi->lsi_dt_dev);
1720
1721         /* set disk context for llog usage */
1722         OBD_SET_CTXT_MAGIC(&obd->obd_lvfs_ctxt);
1723         obd->obd_lvfs_ctxt.dt = lsi->lsi_dt_dev;
1724
1725         dt_conf_get(NULL, lsi->lsi_dt_dev, &p);
1726 out:
1727         RETURN(rc);
1728 }
1729
1730 /** Fill in the superblock info for a Lustre server.
1731  * Mount the device with the correct options.
1732  * Read the on-disk config file.
1733  * Start the services.
1734  */
1735 int server_fill_super(struct super_block *sb)
1736 {
1737         struct lustre_sb_info *lsi = s2lsi(sb);
1738         int rc;
1739         ENTRY;
1740
1741         rc = lsi_prepare(lsi);
1742         if (rc)
1743                 RETURN(rc);
1744
1745         /* Start low level OSD */
1746         rc = osd_start(lsi, sb->s_flags);
1747         if (rc) {
1748                 CERROR("Unable to start osd on %s: %d\n",
1749                        lsi->lsi_lmd->lmd_dev, rc);
1750                 lustre_put_lsi(sb);
1751                 RETURN(rc);
1752         }
1753
1754         CDEBUG(D_MOUNT, "Found service %s on device %s\n",
1755                lsi->lsi_svname, lsi->lsi_lmd->lmd_dev);
1756
1757         if (class_name2obd(lsi->lsi_svname)) {
1758                 LCONSOLE_ERROR_MSG(0x161, "The target named %s is already "
1759                                    "running. Double-mount may have compromised"
1760                                    " the disk journal.\n",
1761                                    lsi->lsi_svname);
1762                 lustre_put_lsi(sb);
1763                 RETURN(-EALREADY);
1764         }
1765
1766         /* Start MGS before MGC */
1767         if (IS_MGS(lsi) && !(lsi->lsi_lmd->lmd_flags & LMD_FLG_NOMGS)) {
1768                 rc = server_start_mgs(sb);
1769                 if (rc)
1770                         GOTO(out_mnt, rc);
1771         }
1772
1773         /* Start MGC before servers */
1774         rc = lustre_start_mgc(sb);
1775         if (rc)
1776                 GOTO(out_mnt, rc);
1777
1778         /* Set up all obd devices for service */
1779         if (!(lsi->lsi_lmd->lmd_flags & LMD_FLG_NOSVC) &&
1780             (IS_OST(lsi) || IS_MDT(lsi))) {
1781                 rc = server_start_targets(sb);
1782                 if (rc < 0) {
1783                         CERROR("Unable to start targets: %d\n", rc);
1784                         GOTO(out_mnt, rc);
1785                 }
1786                 /* FIXME overmount client here, or can we just start a
1787                  * client log and client_fill_super on this sb?  We
1788                  * need to make sure server_put_super gets called too
1789                  * - ll_put_super calls lustre_common_put_super; check
1790                  * there for LSI_SERVER flag, call s_p_s if so.
1791                  *
1792                  * Probably should start client from new thread so we
1793                  * can return.  Client will not finish until all
1794                  * servers are connected.  Note - MGS-only server does
1795                  * NOT get a client, since there is no lustre fs
1796                  * associated - the MGS is for all lustre fs's */
1797         }
1798
1799         rc = server_fill_super_common(sb);
1800         if (rc)
1801                 GOTO(out_mnt, rc);
1802
1803         RETURN(0);
1804 out_mnt:
1805         /* We jump here in case of failure while starting targets or MGS.
1806          * In this case we can't just put @mnt and have to do real cleanup
1807          * with stoping targets, etc. */
1808         server_put_super(sb);
1809         return rc;
1810 }
1811
1812 /*
1813  * Calculate timeout value for a target.
1814  */
1815 void server_calc_timeout(struct lustre_sb_info *lsi, struct obd_device *obd)
1816 {
1817         struct lustre_mount_data *lmd;
1818         int soft = 0;
1819         int hard = 0;
1820         int factor = 0;
1821         bool has_ir = !!(lsi->lsi_flags & LDD_F_IR_CAPABLE);
1822         int min = OBD_RECOVERY_TIME_MIN;
1823
1824         LASSERT(IS_SERVER(lsi));
1825
1826         lmd = lsi->lsi_lmd;
1827         if (lmd) {
1828                 soft   = lmd->lmd_recovery_time_soft;
1829                 hard   = lmd->lmd_recovery_time_hard;
1830                 has_ir = has_ir && !(lmd->lmd_flags & LMD_FLG_NOIR);
1831                 obd->obd_no_ir = !has_ir;
1832         }
1833
1834         if (soft == 0)
1835                 soft = OBD_RECOVERY_TIME_SOFT;
1836         if (hard == 0)
1837                 hard = OBD_RECOVERY_TIME_HARD;
1838
1839         /* target may have ir_factor configured. */
1840         factor = OBD_IR_FACTOR_DEFAULT;
1841         if (obd->obd_recovery_ir_factor)
1842                 factor = obd->obd_recovery_ir_factor;
1843
1844         if (has_ir) {
1845                 int new_soft = soft;
1846                 int new_hard = hard;
1847
1848                 /* adjust timeout value by imperative recovery */
1849
1850                 new_soft = (soft * factor) / OBD_IR_FACTOR_MAX;
1851                 new_hard = (hard * factor) / OBD_IR_FACTOR_MAX;
1852
1853                 /* make sure the timeout is not too short */
1854                 new_soft = max(min, new_soft);
1855                 new_hard = max(new_soft, new_hard);
1856
1857                 LCONSOLE_INFO("%s: Imperative Recovery enabled, recovery "
1858                               "window shrunk from %d-%d down to %d-%d\n",
1859                               obd->obd_name, soft, hard, new_soft, new_hard);
1860
1861                 soft = new_soft;
1862                 hard = new_hard;
1863         }
1864
1865         /* we're done */
1866         obd->obd_recovery_timeout   = max(obd->obd_recovery_timeout, soft);
1867         obd->obd_recovery_time_hard = hard;
1868         obd->obd_recovery_ir_factor = factor;
1869 }