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