Whamcloud - gitweb
LU-4528 llog: don't write llog in 3-steps
[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
832                 *ptr = '-';
833                 rc = lustre_lwp_add_conn(lcfg, lsi, idx);
834                 break;
835         }
836         default:
837                 break;
838         }
839 out:
840         RETURN(rc);
841 }
842
843 static int lustre_disconnect_lwp(struct super_block *sb)
844 {
845         struct lustre_sb_info           *lsi     = s2lsi(sb);
846         struct obd_device               *lwp;
847         char                            *logname = NULL;
848         struct lustre_cfg_bufs          *bufs    = NULL;
849         struct config_llog_instance     *cfg     = NULL;
850         int                              rc      = 0;
851         int                              rc1     = 0;
852         ENTRY;
853
854         if (likely(lsi->lsi_lwp_started)) {
855                 OBD_ALLOC(logname, MTI_NAME_MAXLEN);
856                 if (logname == NULL)
857                         RETURN(-ENOMEM);
858
859                 rc = server_name2fsname(lsi->lsi_svname, logname, NULL);
860                 if (rc != 0) {
861                         CERROR("%s: failed to get fsname from svname: "
862                                "rc = %d\n", lsi->lsi_svname, rc);
863                         GOTO(out, rc = -EINVAL);
864                 }
865
866                 strcat(logname, "-client");
867                 OBD_ALLOC_PTR(cfg);
868                 if (cfg == NULL)
869                         GOTO(out, rc = -ENOMEM);
870
871                 /* end log first */
872                 cfg->cfg_instance = sb;
873                 rc = lustre_end_log(sb, logname, cfg);
874                 if (rc != 0)
875                         GOTO(out, rc);
876
877                 lsi->lsi_lwp_started = 0;
878         }
879
880         OBD_ALLOC_PTR(bufs);
881         if (bufs == NULL)
882                 GOTO(out, rc = -ENOMEM);
883
884         list_for_each_entry(lwp, &lsi->lsi_lwp_list, obd_lwp_list) {
885                 struct lustre_cfg *lcfg;
886
887                 if (likely(lwp->obd_lwp_export != NULL)) {
888                         class_export_put(lwp->obd_lwp_export);
889                         lwp->obd_lwp_export = NULL;
890                 }
891
892                 lustre_cfg_bufs_reset(bufs, lwp->obd_name);
893                 lustre_cfg_bufs_set_string(bufs, 1, NULL);
894                 lcfg = lustre_cfg_new(LCFG_CLEANUP, bufs);
895                 if (lcfg == NULL)
896                         GOTO(out, rc = -ENOMEM);
897
898                 /* Disconnect import first. NULL is passed for the '@env',
899                  * since it will not be used. */
900                 rc = lwp->obd_lu_dev->ld_ops->ldo_process_config(NULL,
901                                                         lwp->obd_lu_dev, lcfg);
902                 lustre_cfg_free(lcfg);
903                 if (rc != 0 && rc != -ETIMEDOUT) {
904                         CERROR("%s: fail to disconnect LWP: rc = %d\n",
905                                lwp->obd_name, rc);
906                         rc1 = rc;
907                 }
908         }
909
910         GOTO(out, rc);
911
912 out:
913         if (bufs != NULL)
914                 OBD_FREE_PTR(bufs);
915         if (cfg != NULL)
916                 OBD_FREE_PTR(cfg);
917         if (logname != NULL)
918                 OBD_FREE(logname, MTI_NAME_MAXLEN);
919
920         return rc1 != 0 ? rc1 : rc;
921 }
922
923 /**
924  * Stop the lwp for an OST/MDT target.
925  **/
926 static int lustre_stop_lwp(struct super_block *sb)
927 {
928         struct lustre_sb_info   *lsi = s2lsi(sb);
929         struct obd_device       *lwp;
930         int                      rc  = 0;
931         int                      rc1 = 0;
932         ENTRY;
933
934         while (!list_empty(&lsi->lsi_lwp_list)) {
935                 lwp = list_entry(lsi->lsi_lwp_list.next, struct obd_device,
936                                  obd_lwp_list);
937                 list_del_init(&lwp->obd_lwp_list);
938                 lwp->obd_force = 1;
939                 rc = class_manual_cleanup(lwp);
940                 if (rc != 0) {
941                         CERROR("%s: fail to stop LWP: rc = %d\n",
942                                lwp->obd_name, rc);
943                         rc1 = rc;
944                 }
945         }
946
947         RETURN(rc1 != 0 ? rc1 : rc);
948 }
949
950 /**
951  * Start the lwp(fsname-MDTyyyy-lwp-{MDT,OST}xxxx) for a MDT/OST or MDT target.
952  **/
953 static int lustre_start_lwp(struct super_block *sb)
954 {
955         struct lustre_sb_info       *lsi = s2lsi(sb);
956         struct config_llog_instance *cfg = NULL;
957         char                        *logname;
958         int                          rc;
959         ENTRY;
960
961         if (unlikely(lsi->lsi_lwp_started))
962                 RETURN(0);
963
964         OBD_ALLOC(logname, MTI_NAME_MAXLEN);
965         if (logname == NULL)
966                 RETURN(-ENOMEM);
967
968         rc = server_name2fsname(lsi->lsi_svname, logname, NULL);
969         if (rc != 0) {
970                 CERROR("%s: failed to get fsname from svname: rc = %d\n",
971                        lsi->lsi_svname, rc);
972                 GOTO(out, rc = -EINVAL);
973         }
974
975         strcat(logname, "-client");
976         OBD_ALLOC_PTR(cfg);
977         if (cfg == NULL)
978                 GOTO(out, rc = -ENOMEM);
979
980         cfg->cfg_callback = client_lwp_config_process;
981         cfg->cfg_instance = sb;
982         rc = lustre_process_log(sb, logname, cfg);
983         if (rc == 0)
984                 lsi->lsi_lwp_started = 1;
985
986         GOTO(out, rc);
987
988 out:
989         OBD_FREE(logname, MTI_NAME_MAXLEN);
990         if (cfg != NULL)
991                 OBD_FREE_PTR(cfg);
992
993         return rc;
994 }
995
996 DEFINE_MUTEX(server_start_lock);
997
998 /* Stop MDS/OSS if nobody is using them */
999 static int server_stop_servers(int lsiflags)
1000 {
1001         struct obd_device *obd = NULL;
1002         struct obd_type *type = NULL;
1003         int rc = 0;
1004         ENTRY;
1005
1006         mutex_lock(&server_start_lock);
1007
1008         /* Either an MDT or an OST or neither  */
1009         /* if this was an MDT, and there are no more MDT's, clean up the MDS */
1010         if (lsiflags & LDD_F_SV_TYPE_MDT) {
1011                 obd = class_name2obd(LUSTRE_MDS_OBDNAME);
1012                 if (obd != NULL)
1013                         type = class_search_type(LUSTRE_MDT_NAME);
1014         }
1015
1016         /* if this was an OST, and there are no more OST's, clean up the OSS */
1017         if (lsiflags & LDD_F_SV_TYPE_OST) {
1018                 obd = class_name2obd(LUSTRE_OSS_OBDNAME);
1019                 if (obd != NULL)
1020                         type = class_search_type(LUSTRE_OST_NAME);
1021         }
1022
1023         if (obd != NULL && (type == NULL || type->typ_refcnt == 0)) {
1024                 obd->obd_force = 1;
1025                 /* obd_fail doesn't mean much on a server obd */
1026                 rc = class_manual_cleanup(obd);
1027         }
1028
1029         mutex_unlock(&server_start_lock);
1030
1031         RETURN(rc);
1032 }
1033
1034 int server_mti_print(const char *title, struct mgs_target_info *mti)
1035 {
1036         PRINT_CMD(PRINT_MASK, "mti %s\n", title);
1037         PRINT_CMD(PRINT_MASK, "server: %s\n", mti->mti_svname);
1038         PRINT_CMD(PRINT_MASK, "fs:     %s\n", mti->mti_fsname);
1039         PRINT_CMD(PRINT_MASK, "uuid:   %s\n", mti->mti_uuid);
1040         PRINT_CMD(PRINT_MASK, "ver: %d  flags: %#x\n",
1041                   mti->mti_config_ver, mti->mti_flags);
1042         return 0;
1043 }
1044 EXPORT_SYMBOL(server_mti_print);
1045
1046 /* Generate data for registration */
1047 static int server_lsi2mti(struct lustre_sb_info *lsi,
1048                           struct mgs_target_info *mti)
1049 {
1050         lnet_process_id_t id;
1051         int rc, i = 0;
1052         int cplen = 0;
1053         ENTRY;
1054
1055         if (!IS_SERVER(lsi))
1056                 RETURN(-EINVAL);
1057
1058         if (strlcpy(mti->mti_svname, lsi->lsi_svname, sizeof(mti->mti_svname))
1059             >= sizeof(mti->mti_svname))
1060                 RETURN(-E2BIG);
1061
1062         mti->mti_nid_count = 0;
1063         while (LNetGetId(i++, &id) != -ENOENT) {
1064                 if (LNET_NETTYP(LNET_NIDNET(id.nid)) == LOLND)
1065                         continue;
1066
1067                 /* server use --servicenode param, only allow specified
1068                  * nids be registered */
1069                 if ((lsi->lsi_lmd->lmd_flags & LMD_FLG_NO_PRIMNODE) != 0 &&
1070                     class_match_nid(lsi->lsi_lmd->lmd_params,
1071                                     PARAM_FAILNODE, id.nid) < 1)
1072                         continue;
1073
1074                 /* match specified network */
1075                 if (!class_match_net(lsi->lsi_lmd->lmd_params,
1076                                      PARAM_NETWORK, LNET_NIDNET(id.nid)))
1077                         continue;
1078
1079                 mti->mti_nids[mti->mti_nid_count] = id.nid;
1080                 mti->mti_nid_count++;
1081                 if (mti->mti_nid_count >= MTI_NIDS_MAX) {
1082                         CWARN("Only using first %d nids for %s\n",
1083                               mti->mti_nid_count, mti->mti_svname);
1084                         break;
1085                 }
1086         }
1087
1088         mti->mti_lustre_ver = LUSTRE_VERSION_CODE;
1089         mti->mti_config_ver = 0;
1090
1091         rc = server_name2fsname(lsi->lsi_svname, mti->mti_fsname, NULL);
1092         if (rc != 0)
1093                 return rc;
1094
1095         rc = server_name2index(lsi->lsi_svname, &mti->mti_stripe_index, NULL);
1096         if (rc < 0)
1097                 return rc;
1098         /* Orion requires index to be set */
1099         LASSERT(!(rc & LDD_F_NEED_INDEX));
1100         /* keep only LDD flags */
1101         mti->mti_flags = lsi->lsi_flags & LDD_F_MASK;
1102         if (mti->mti_flags & (LDD_F_WRITECONF | LDD_F_VIRGIN))
1103                 mti->mti_flags |= LDD_F_UPDATE;
1104         cplen = strlcpy(mti->mti_params, lsi->lsi_lmd->lmd_params,
1105                         sizeof(mti->mti_params));
1106         if (cplen >= sizeof(mti->mti_params))
1107                 return -E2BIG;
1108         return 0;
1109 }
1110
1111 /* Register an old or new target with the MGS. If needed MGS will construct
1112    startup logs and assign index */
1113 static int server_register_target(struct lustre_sb_info *lsi)
1114 {
1115         struct obd_device *mgc = lsi->lsi_mgc;
1116         struct mgs_target_info *mti = NULL;
1117         bool writeconf;
1118         int rc;
1119         ENTRY;
1120
1121         LASSERT(mgc);
1122
1123         if (!IS_SERVER(lsi))
1124                 RETURN(-EINVAL);
1125
1126         OBD_ALLOC_PTR(mti);
1127         if (!mti)
1128                 RETURN(-ENOMEM);
1129
1130         rc = server_lsi2mti(lsi, mti);
1131         if (rc)
1132                 GOTO(out, rc);
1133
1134         CDEBUG(D_MOUNT, "Registration %s, fs=%s, %s, index=%04x, flags=%#x\n",
1135                mti->mti_svname, mti->mti_fsname,
1136                libcfs_nid2str(mti->mti_nids[0]), mti->mti_stripe_index,
1137                mti->mti_flags);
1138
1139         /* if write_conf is true, the registration must succeed */
1140         writeconf = !!(lsi->lsi_flags & (LDD_F_NEED_INDEX | LDD_F_UPDATE));
1141         mti->mti_flags |= LDD_F_OPC_REG;
1142
1143         /* Register the target */
1144         /* FIXME use mgc_process_config instead */
1145         rc = obd_set_info_async(NULL, mgc->u.cli.cl_mgc_mgsexp,
1146                                 sizeof(KEY_REGISTER_TARGET),
1147                                 KEY_REGISTER_TARGET,
1148                                 sizeof(*mti), mti, NULL);
1149         if (rc) {
1150                 if (mti->mti_flags & LDD_F_ERROR) {
1151                         LCONSOLE_ERROR_MSG(0x160,
1152                                 "%s: the MGS refuses to allow this server "
1153                                 "to start: rc = %d. Please see messages on "
1154                                 "the MGS.\n", lsi->lsi_svname, rc);
1155                 } else if (writeconf) {
1156                         LCONSOLE_ERROR_MSG(0x15f,
1157                                 "%s: cannot register this server with the MGS: "
1158                                 "rc = %d. Is the MGS running?\n",
1159                                 lsi->lsi_svname, rc);
1160                 } else {
1161                         CERROR("%s: error registering with the MGS: rc = %d "
1162                                "(not fatal)\n", lsi->lsi_svname, rc);
1163                         /* reset the error code for non-fatal error. */
1164                         rc = 0;
1165                 }
1166                 GOTO(out, rc);
1167         }
1168
1169 out:
1170         if (mti)
1171                 OBD_FREE_PTR(mti);
1172         RETURN(rc);
1173 }
1174
1175 /**
1176  * Notify the MGS that this target is ready.
1177  * Used by IR - if the MGS receives this message, it will notify clients.
1178  */
1179 static int server_notify_target(struct super_block *sb, struct obd_device *obd)
1180 {
1181         struct lustre_sb_info *lsi = s2lsi(sb);
1182         struct obd_device *mgc = lsi->lsi_mgc;
1183         struct mgs_target_info *mti = NULL;
1184         int rc;
1185         ENTRY;
1186
1187         LASSERT(mgc);
1188
1189         if (!(IS_SERVER(lsi)))
1190                 RETURN(-EINVAL);
1191
1192         OBD_ALLOC_PTR(mti);
1193         if (!mti)
1194                 RETURN(-ENOMEM);
1195         rc = server_lsi2mti(lsi, mti);
1196         if (rc)
1197                 GOTO(out, rc);
1198
1199         mti->mti_instance = obd->u.obt.obt_instance;
1200         mti->mti_flags |= LDD_F_OPC_READY;
1201
1202         /* FIXME use mgc_process_config instead */
1203         rc = obd_set_info_async(NULL, mgc->u.cli.cl_mgc_mgsexp,
1204                                 sizeof(KEY_REGISTER_TARGET),
1205                                 KEY_REGISTER_TARGET,
1206                                 sizeof(*mti), mti, NULL);
1207
1208         /* Imperative recovery: if the mgs informs us to use IR? */
1209         if (!rc && !(mti->mti_flags & LDD_F_ERROR) &&
1210             (mti->mti_flags & LDD_F_IR_CAPABLE))
1211                 lsi->lsi_flags |= LDD_F_IR_CAPABLE;
1212
1213 out:
1214         if (mti)
1215                 OBD_FREE_PTR(mti);
1216         RETURN(rc);
1217
1218 }
1219
1220 /** Start server targets: MDTs and OSTs
1221  */
1222 static int server_start_targets(struct super_block *sb)
1223 {
1224         struct obd_device *obd;
1225         struct lustre_sb_info *lsi = s2lsi(sb);
1226         struct config_llog_instance cfg;
1227         struct lu_env env;
1228         struct lu_device *dev;
1229         int rc;
1230         ENTRY;
1231
1232         CDEBUG(D_MOUNT, "starting target %s\n", lsi->lsi_svname);
1233
1234         if (IS_MDT(lsi)) {
1235                 /* make sure the MDS is started */
1236                 mutex_lock(&server_start_lock);
1237                 obd = class_name2obd(LUSTRE_MDS_OBDNAME);
1238                 if (!obd) {
1239                         rc = lustre_start_simple(LUSTRE_MDS_OBDNAME,
1240                                                  LUSTRE_MDS_NAME,
1241                                                  LUSTRE_MDS_OBDNAME"_uuid",
1242                                                  0, 0, 0, 0);
1243                         if (rc) {
1244                                 mutex_unlock(&server_start_lock);
1245                                 CERROR("failed to start MDS: %d\n", rc);
1246                                 RETURN(rc);
1247                         }
1248                 }
1249                 mutex_unlock(&server_start_lock);
1250         }
1251
1252         /* If we're an OST, make sure the global OSS is running */
1253         if (IS_OST(lsi)) {
1254                 /* make sure OSS is started */
1255                 mutex_lock(&server_start_lock);
1256                 obd = class_name2obd(LUSTRE_OSS_OBDNAME);
1257                 if (!obd) {
1258                         rc = lustre_start_simple(LUSTRE_OSS_OBDNAME,
1259                                                  LUSTRE_OSS_NAME,
1260                                                  LUSTRE_OSS_OBDNAME"_uuid",
1261                                                  0, 0, 0, 0);
1262                         if (rc) {
1263                                 mutex_unlock(&server_start_lock);
1264                                 CERROR("failed to start OSS: %d\n", rc);
1265                                 RETURN(rc);
1266                         }
1267                 }
1268                 mutex_unlock(&server_start_lock);
1269         }
1270
1271         /* Set the mgc fs to our server disk.  This allows the MGC to
1272          * read and write configs locally, in case it can't talk to the MGS. */
1273         rc = server_mgc_set_fs(lsi->lsi_mgc, sb);
1274         if (rc)
1275                 GOTO(out_stop_service, rc);
1276
1277         /* Register with MGS */
1278         rc = server_register_target(lsi);
1279         if (rc)
1280                 GOTO(out_mgc, rc);
1281
1282         /* Let the target look up the mount using the target's name
1283            (we can't pass the sb or mnt through class_process_config.) */
1284         rc = server_register_mount(lsi->lsi_svname, sb);
1285         if (rc)
1286                 GOTO(out_mgc, rc);
1287
1288         /* Start targets using the llog named for the target */
1289         memset(&cfg, 0, sizeof(cfg));
1290         cfg.cfg_callback = class_config_llog_handler;
1291         rc = lustre_process_log(sb, lsi->lsi_svname, &cfg);
1292         if (rc) {
1293                 CERROR("failed to start server %s: %d\n",
1294                        lsi->lsi_svname, rc);
1295                 /* Do NOT call server_deregister_mount() here. This makes it
1296                  * impossible to find mount later in cleanup time and leaves
1297                  * @lsi and othder stuff leaked. -umka */
1298                 GOTO(out_mgc, rc);
1299         }
1300
1301         obd = class_name2obd(lsi->lsi_svname);
1302         if (!obd) {
1303                 CERROR("no server named %s was started\n", lsi->lsi_svname);
1304                 GOTO(out_mgc, rc = -ENXIO);
1305         }
1306
1307         if (IS_OST(lsi) || IS_MDT(lsi)) {
1308                 rc = lustre_start_lwp(sb);
1309                 if (rc) {
1310                         CERROR("%s: failed to start LWP: %d\n",
1311                                lsi->lsi_svname, rc);
1312                         GOTO(out_mgc, rc);
1313                 }
1314         }
1315
1316         server_notify_target(sb, obd);
1317
1318         /* calculate recovery timeout, do it after lustre_process_log */
1319         server_calc_timeout(lsi, obd);
1320
1321         /* log has been fully processed */
1322         obd_notify(obd, NULL, OBD_NOTIFY_CONFIG, (void *)CONFIG_LOG);
1323
1324         /* log has been fully processed, let clients connect */
1325         dev = obd->obd_lu_dev;
1326         if (dev && dev->ld_ops->ldo_prepare) {
1327                 rc = lu_env_init(&env, dev->ld_type->ldt_ctx_tags);
1328                 if (rc == 0) {
1329                         struct lu_context  session_ctx;
1330
1331                         lu_context_init(&session_ctx, LCT_SERVER_SESSION);
1332                         session_ctx.lc_thread = NULL;
1333                         lu_context_enter(&session_ctx);
1334                         env.le_ses = &session_ctx;
1335
1336                         rc = dev->ld_ops->ldo_prepare(&env, NULL, dev);
1337
1338                         lu_env_fini(&env);
1339                         lu_context_exit(&session_ctx);
1340                         lu_context_fini(&session_ctx);
1341                 }
1342         }
1343
1344         /* abort recovery only on the complete stack:
1345          * many devices can be involved */
1346         if ((lsi->lsi_lmd->lmd_flags & LMD_FLG_ABORT_RECOV) &&
1347             (OBP(obd, iocontrol))) {
1348                 obd_iocontrol(OBD_IOC_ABORT_RECOVERY, obd->obd_self_export, 0,
1349                               NULL, NULL);
1350         }
1351
1352 out_mgc:
1353         /* Release the mgc fs for others to use */
1354         server_mgc_clear_fs(lsi->lsi_mgc);
1355
1356 out_stop_service:
1357         if (rc != 0)
1358                 server_stop_servers(lsi->lsi_flags);
1359
1360         RETURN(rc);
1361 }
1362
1363 static int lsi_prepare(struct lustre_sb_info *lsi)
1364 {
1365         __u32 index;
1366         int rc;
1367         ENTRY;
1368
1369         LASSERT(lsi);
1370         LASSERT(lsi->lsi_lmd);
1371
1372         /* The server name is given as a mount line option */
1373         if (lsi->lsi_lmd->lmd_profile == NULL) {
1374                 LCONSOLE_ERROR("Can't determine server name\n");
1375                 RETURN(-EINVAL);
1376         }
1377
1378         if (strlen(lsi->lsi_lmd->lmd_profile) >= sizeof(lsi->lsi_svname))
1379                 RETURN(-ENAMETOOLONG);
1380
1381         strcpy(lsi->lsi_svname, lsi->lsi_lmd->lmd_profile);
1382
1383         /* Determine osd type */
1384         if (lsi->lsi_lmd->lmd_osd_type != NULL) {
1385                 if (strlen(lsi->lsi_lmd->lmd_osd_type) >=
1386                     sizeof(lsi->lsi_osd_type))
1387                         RETURN(-ENAMETOOLONG);
1388
1389                 strcpy(lsi->lsi_osd_type, lsi->lsi_lmd->lmd_osd_type);
1390         } else {
1391                 strcpy(lsi->lsi_osd_type, LUSTRE_OSD_LDISKFS_NAME);
1392         }
1393
1394         /* XXX: a temp. solution for components using ldiskfs
1395          *      to be removed in one of the subsequent patches */
1396         if (!strcmp(lsi->lsi_lmd->lmd_osd_type, "osd-ldiskfs"))
1397                 strcpy(lsi->lsi_fstype, "ldiskfs");
1398         else
1399                 strcpy(lsi->lsi_fstype, lsi->lsi_lmd->lmd_osd_type);
1400
1401         /* Determine server type */
1402         rc = server_name2index(lsi->lsi_svname, &index, NULL);
1403         if (rc < 0) {
1404                 if (lsi->lsi_lmd->lmd_flags & LMD_FLG_MGS) {
1405                         /* Assume we're a bare MGS */
1406                         rc = 0;
1407                         lsi->lsi_lmd->lmd_flags |= LMD_FLG_NOSVC;
1408                 } else {
1409                         LCONSOLE_ERROR("Can't determine server type of '%s'\n",
1410                                        lsi->lsi_svname);
1411                         RETURN(rc);
1412                 }
1413         }
1414         lsi->lsi_flags |= rc;
1415
1416         /* Add mount line flags that used to be in ldd:
1417          * writeconf, mgs, anything else?
1418          */
1419         lsi->lsi_flags |= (lsi->lsi_lmd->lmd_flags & LMD_FLG_WRITECONF) ?
1420                 LDD_F_WRITECONF : 0;
1421         lsi->lsi_flags |= (lsi->lsi_lmd->lmd_flags & LMD_FLG_VIRGIN) ?
1422                 LDD_F_VIRGIN : 0;
1423         lsi->lsi_flags |= (lsi->lsi_lmd->lmd_flags & LMD_FLG_UPDATE) ?
1424                 LDD_F_UPDATE : 0;
1425         lsi->lsi_flags |= (lsi->lsi_lmd->lmd_flags & LMD_FLG_MGS) ?
1426                 LDD_F_SV_TYPE_MGS : 0;
1427         lsi->lsi_flags |= (lsi->lsi_lmd->lmd_flags & LMD_FLG_NO_PRIMNODE) ?
1428                 LDD_F_NO_PRIMNODE : 0;
1429
1430         RETURN(0);
1431 }
1432
1433 /*************** server mount ******************/
1434
1435 /** Start the shutdown of servers at umount.
1436  */
1437 static void server_put_super(struct super_block *sb)
1438 {
1439         struct lustre_sb_info *lsi = s2lsi(sb);
1440         struct obd_device     *obd;
1441         char *tmpname, *extraname = NULL;
1442         int tmpname_sz;
1443         int lsiflags = lsi->lsi_flags;
1444         ENTRY;
1445
1446         LASSERT(IS_SERVER(lsi));
1447
1448         tmpname_sz = strlen(lsi->lsi_svname) + 1;
1449         OBD_ALLOC(tmpname, tmpname_sz);
1450         memcpy(tmpname, lsi->lsi_svname, tmpname_sz);
1451         CDEBUG(D_MOUNT, "server put_super %s\n", tmpname);
1452         if (IS_MDT(lsi) && (lsi->lsi_lmd->lmd_flags & LMD_FLG_NOSVC))
1453                 snprintf(tmpname, tmpname_sz, "MGS");
1454
1455         /* disconnect the lwp first to drain off the inflight request */
1456         if (IS_OST(lsi) || IS_MDT(lsi)) {
1457                 int     rc;
1458
1459                 rc = lustre_disconnect_lwp(sb);
1460                 if (rc != 0 && rc != -ETIMEDOUT &&
1461                     rc != -ENOTCONN && rc != -ESHUTDOWN)
1462                         CWARN("%s: failed to disconnect lwp: rc= %d\n",
1463                               tmpname, rc);
1464         }
1465
1466         /* Stop the target */
1467         if (!(lsi->lsi_lmd->lmd_flags & LMD_FLG_NOSVC) &&
1468             (IS_MDT(lsi) || IS_OST(lsi))) {
1469                 struct lustre_profile *lprof = NULL;
1470
1471                 /* tell the mgc to drop the config log */
1472                 lustre_end_log(sb, lsi->lsi_svname, NULL);
1473
1474                 /* COMPAT_146 - profile may get deleted in mgc_cleanup.
1475                    If there are any setup/cleanup errors, save the lov
1476                    name for safety cleanup later. */
1477                 lprof = class_get_profile(lsi->lsi_svname);
1478                 if (lprof && lprof->lp_dt) {
1479                         OBD_ALLOC(extraname, strlen(lprof->lp_dt) + 1);
1480                         strcpy(extraname, lprof->lp_dt);
1481                 }
1482
1483                 obd = class_name2obd(lsi->lsi_svname);
1484                 if (obd) {
1485                         CDEBUG(D_MOUNT, "stopping %s\n", obd->obd_name);
1486                         if (lsiflags & LSI_UMOUNT_FAILOVER)
1487                                 obd->obd_fail = 1;
1488                         /* We can't seem to give an error return code
1489                          * to .put_super, so we better make sure we clean up! */
1490                         obd->obd_force = 1;
1491                         class_manual_cleanup(obd);
1492                 } else {
1493                         CERROR("no obd %s\n", lsi->lsi_svname);
1494                         server_deregister_mount(lsi->lsi_svname);
1495                 }
1496         }
1497
1498         /* If they wanted the mgs to stop separately from the mdt, they
1499            should have put it on a different device. */
1500         if (IS_MGS(lsi)) {
1501                 /* if MDS start with --nomgs, don't stop MGS then */
1502                 if (!(lsi->lsi_lmd->lmd_flags & LMD_FLG_NOMGS))
1503                         server_stop_mgs(sb);
1504         }
1505
1506         if (IS_OST(lsi) || IS_MDT(lsi)) {
1507                 if (lustre_stop_lwp(sb) < 0)
1508                         CERROR("%s: failed to stop lwp!\n", tmpname);
1509         }
1510
1511         /* Clean the mgc and sb */
1512         lustre_common_put_super(sb);
1513
1514         /* wait till all in-progress cleanups are done
1515          * specifically we're interested in ofd cleanup
1516          * as it pins OSS */
1517         obd_zombie_barrier();
1518
1519         /* Stop the servers (MDS, OSS) if no longer needed.  We must wait
1520            until the target is really gone so that our type refcount check
1521            is right. */
1522         server_stop_servers(lsiflags);
1523
1524         /* In case of startup or cleanup err, stop related obds */
1525         if (extraname) {
1526                 obd = class_name2obd(extraname);
1527                 if (obd) {
1528                         CWARN("Cleaning orphaned obd %s\n", extraname);
1529                         obd->obd_force = 1;
1530                         class_manual_cleanup(obd);
1531                 }
1532                 OBD_FREE(extraname, strlen(extraname) + 1);
1533         }
1534
1535         LCONSOLE_WARN("server umount %s complete\n", tmpname);
1536         OBD_FREE(tmpname, tmpname_sz);
1537         EXIT;
1538 }
1539
1540 /** Called only for 'umount -f'
1541  */
1542 static void server_umount_begin(struct super_block *sb)
1543 {
1544         struct lustre_sb_info *lsi = s2lsi(sb);
1545         ENTRY;
1546
1547         CDEBUG(D_MOUNT, "umount -f\n");
1548         /* umount = failover
1549            umount -f = force
1550            no third way to do non-force, non-failover */
1551         lsi->lsi_flags &= ~LSI_UMOUNT_FAILOVER;
1552         EXIT;
1553 }
1554
1555 static int server_statfs(struct dentry *dentry, struct kstatfs *buf)
1556 {
1557         struct super_block *sb = dentry->d_sb;
1558         struct lustre_sb_info *lsi = s2lsi(sb);
1559         struct obd_statfs statfs;
1560         int rc;
1561         ENTRY;
1562
1563         if (lsi->lsi_dt_dev) {
1564                 rc = dt_statfs(NULL, lsi->lsi_dt_dev, &statfs);
1565                 if (rc == 0) {
1566                         statfs_unpack(buf, &statfs);
1567                         buf->f_type = sb->s_magic;
1568                         RETURN(0);
1569                 }
1570         }
1571
1572         /* just return 0 */
1573         buf->f_type = sb->s_magic;
1574         buf->f_bsize = sb->s_blocksize;
1575         buf->f_blocks = 1;
1576         buf->f_bfree = 0;
1577         buf->f_bavail = 0;
1578         buf->f_files = 1;
1579         buf->f_ffree = 0;
1580         buf->f_namelen = NAME_MAX;
1581         RETURN(0);
1582 }
1583
1584 /** The operations we support directly on the superblock:
1585  * mount, umount, and df.
1586  */
1587 static struct super_operations server_ops = {
1588         .put_super      = server_put_super,
1589         .umount_begin   = server_umount_begin, /* umount -f */
1590         .statfs         = server_statfs,
1591 };
1592
1593 /*
1594  * Xattr support for Lustre servers
1595  */
1596 static ssize_t lustre_getxattr(struct dentry *dentry, const char *name,
1597                                 void *buffer, size_t size)
1598 {
1599         if (!selinux_is_enabled())
1600                 return -EOPNOTSUPP;
1601         return -ENODATA;
1602 }
1603
1604 static int lustre_setxattr(struct dentry *dentry, const char *name,
1605                             const void *value, size_t size, int flags)
1606 {
1607         return -EOPNOTSUPP;
1608 }
1609
1610 static ssize_t lustre_listxattr(struct dentry *d_entry, char *name,
1611                                 size_t size)
1612 {
1613         return -EOPNOTSUPP;
1614 }
1615
1616 const struct inode_operations server_inode_operations = {
1617         .setxattr       = lustre_setxattr,
1618         .getxattr       = lustre_getxattr,
1619         .listxattr      = lustre_listxattr,
1620 };
1621
1622 #define log2(n) ffz(~(n))
1623 #define LUSTRE_SUPER_MAGIC 0x0BD00BD1
1624
1625 static int server_fill_super_common(struct super_block *sb)
1626 {
1627         struct inode *root = 0;
1628         ENTRY;
1629
1630         CDEBUG(D_MOUNT, "Server sb, dev=%d\n", (int)sb->s_dev);
1631
1632         sb->s_blocksize = 4096;
1633         sb->s_blocksize_bits = log2(sb->s_blocksize);
1634         sb->s_magic = LUSTRE_SUPER_MAGIC;
1635         sb->s_maxbytes = 0; /* we don't allow file IO on server mountpoints */
1636         sb->s_flags |= MS_RDONLY;
1637         sb->s_op = &server_ops;
1638
1639         root = new_inode(sb);
1640         if (!root) {
1641                 CERROR("Can't make root inode\n");
1642                 RETURN(-EIO);
1643         }
1644
1645         /* returns -EIO for every operation */
1646         /* make_bad_inode(root); -- badness - can't umount */
1647         /* apparently we need to be a directory for the mount to finish */
1648         root->i_mode = S_IFDIR;
1649         root->i_op = &server_inode_operations;
1650         sb->s_root = d_make_root(root);
1651         if (!sb->s_root) {
1652                 CERROR("%s: can't make root dentry\n", sb->s_id);
1653                 RETURN(-EIO);
1654         }
1655
1656         RETURN(0);
1657 }
1658
1659 static int osd_start(struct lustre_sb_info *lsi, unsigned long mflags)
1660 {
1661         struct lustre_mount_data *lmd = lsi->lsi_lmd;
1662         struct obd_device        *obd;
1663         struct dt_device_param    p;
1664         char                      flagstr[16];
1665         int                       rc;
1666         ENTRY;
1667
1668         CDEBUG(D_MOUNT,
1669                "Attempting to start %s, type=%s, lsifl=%x, mountfl=%lx\n",
1670                lsi->lsi_svname, lsi->lsi_osd_type, lsi->lsi_flags, mflags);
1671
1672         sprintf(lsi->lsi_osd_obdname, "%s-osd", lsi->lsi_svname);
1673         strcpy(lsi->lsi_osd_uuid, lsi->lsi_osd_obdname);
1674         strcat(lsi->lsi_osd_uuid, "_UUID");
1675         sprintf(flagstr, "%lu:%lu", mflags, (unsigned long) lmd->lmd_flags);
1676
1677         obd = class_name2obd(lsi->lsi_osd_obdname);
1678         if (obd == NULL) {
1679                 rc = lustre_start_simple(lsi->lsi_osd_obdname,
1680                                          lsi->lsi_osd_type,
1681                                          lsi->lsi_osd_uuid, lmd->lmd_dev,
1682                                          flagstr, lsi->lsi_lmd->lmd_opts,
1683                                          lsi->lsi_svname);
1684                 if (rc)
1685                         GOTO(out, rc);
1686                 obd = class_name2obd(lsi->lsi_osd_obdname);
1687                 LASSERT(obd);
1688         }
1689
1690         rc = obd_connect(NULL, &lsi->lsi_osd_exp,
1691                          obd, &obd->obd_uuid, NULL, NULL);
1692         if (rc) {
1693                 obd->obd_force = 1;
1694                 class_manual_cleanup(obd);
1695                 lsi->lsi_dt_dev = NULL;
1696                 RETURN(rc);
1697         }
1698
1699         LASSERT(obd->obd_lu_dev);
1700         lu_device_get(obd->obd_lu_dev);
1701         lsi->lsi_dt_dev = lu2dt_dev(obd->obd_lu_dev);
1702         LASSERT(lsi->lsi_dt_dev);
1703
1704         /* set disk context for llog usage */
1705         OBD_SET_CTXT_MAGIC(&obd->obd_lvfs_ctxt);
1706         obd->obd_lvfs_ctxt.dt = lsi->lsi_dt_dev;
1707
1708         dt_conf_get(NULL, lsi->lsi_dt_dev, &p);
1709 out:
1710         RETURN(rc);
1711 }
1712
1713 /** Fill in the superblock info for a Lustre server.
1714  * Mount the device with the correct options.
1715  * Read the on-disk config file.
1716  * Start the services.
1717  */
1718 int server_fill_super(struct super_block *sb)
1719 {
1720         struct lustre_sb_info *lsi = s2lsi(sb);
1721         int rc;
1722         ENTRY;
1723
1724         rc = lsi_prepare(lsi);
1725         if (rc)
1726                 RETURN(rc);
1727
1728         /* Start low level OSD */
1729         rc = osd_start(lsi, sb->s_flags);
1730         if (rc) {
1731                 CERROR("Unable to start osd on %s: %d\n",
1732                        lsi->lsi_lmd->lmd_dev, rc);
1733                 lustre_put_lsi(sb);
1734                 RETURN(rc);
1735         }
1736
1737         CDEBUG(D_MOUNT, "Found service %s on device %s\n",
1738                lsi->lsi_svname, lsi->lsi_lmd->lmd_dev);
1739
1740         if (class_name2obd(lsi->lsi_svname)) {
1741                 LCONSOLE_ERROR_MSG(0x161, "The target named %s is already "
1742                                    "running. Double-mount may have compromised"
1743                                    " the disk journal.\n",
1744                                    lsi->lsi_svname);
1745                 lustre_put_lsi(sb);
1746                 RETURN(-EALREADY);
1747         }
1748
1749         /* Start MGS before MGC */
1750         if (IS_MGS(lsi) && !(lsi->lsi_lmd->lmd_flags & LMD_FLG_NOMGS)) {
1751                 rc = server_start_mgs(sb);
1752                 if (rc)
1753                         GOTO(out_mnt, rc);
1754         }
1755
1756         /* Start MGC before servers */
1757         rc = lustre_start_mgc(sb);
1758         if (rc)
1759                 GOTO(out_mnt, rc);
1760
1761         /* Set up all obd devices for service */
1762         if (!(lsi->lsi_lmd->lmd_flags & LMD_FLG_NOSVC) &&
1763             (IS_OST(lsi) || IS_MDT(lsi))) {
1764                 rc = server_start_targets(sb);
1765                 if (rc < 0) {
1766                         CERROR("Unable to start targets: %d\n", rc);
1767                         GOTO(out_mnt, rc);
1768                 }
1769                 /* FIXME overmount client here, or can we just start a
1770                  * client log and client_fill_super on this sb?  We
1771                  * need to make sure server_put_super gets called too
1772                  * - ll_put_super calls lustre_common_put_super; check
1773                  * there for LSI_SERVER flag, call s_p_s if so.
1774                  *
1775                  * Probably should start client from new thread so we
1776                  * can return.  Client will not finish until all
1777                  * servers are connected.  Note - MGS-only server does
1778                  * NOT get a client, since there is no lustre fs
1779                  * associated - the MGS is for all lustre fs's */
1780         }
1781
1782         rc = server_fill_super_common(sb);
1783         if (rc)
1784                 GOTO(out_mnt, rc);
1785
1786         RETURN(0);
1787 out_mnt:
1788         /* We jump here in case of failure while starting targets or MGS.
1789          * In this case we can't just put @mnt and have to do real cleanup
1790          * with stoping targets, etc. */
1791         server_put_super(sb);
1792         return rc;
1793 }
1794
1795 /*
1796  * Calculate timeout value for a target.
1797  */
1798 void server_calc_timeout(struct lustre_sb_info *lsi, struct obd_device *obd)
1799 {
1800         struct lustre_mount_data *lmd;
1801         int soft = 0;
1802         int hard = 0;
1803         int factor = 0;
1804         bool has_ir = !!(lsi->lsi_flags & LDD_F_IR_CAPABLE);
1805         int min = OBD_RECOVERY_TIME_MIN;
1806
1807         LASSERT(IS_SERVER(lsi));
1808
1809         lmd = lsi->lsi_lmd;
1810         if (lmd) {
1811                 soft   = lmd->lmd_recovery_time_soft;
1812                 hard   = lmd->lmd_recovery_time_hard;
1813                 has_ir = has_ir && !(lmd->lmd_flags & LMD_FLG_NOIR);
1814                 obd->obd_no_ir = !has_ir;
1815         }
1816
1817         if (soft == 0)
1818                 soft = OBD_RECOVERY_TIME_SOFT;
1819         if (hard == 0)
1820                 hard = OBD_RECOVERY_TIME_HARD;
1821
1822         /* target may have ir_factor configured. */
1823         factor = OBD_IR_FACTOR_DEFAULT;
1824         if (obd->obd_recovery_ir_factor)
1825                 factor = obd->obd_recovery_ir_factor;
1826
1827         if (has_ir) {
1828                 int new_soft = soft;
1829                 int new_hard = hard;
1830
1831                 /* adjust timeout value by imperative recovery */
1832
1833                 new_soft = (soft * factor) / OBD_IR_FACTOR_MAX;
1834                 new_hard = (hard * factor) / OBD_IR_FACTOR_MAX;
1835
1836                 /* make sure the timeout is not too short */
1837                 new_soft = max(min, new_soft);
1838                 new_hard = max(new_soft, new_hard);
1839
1840                 LCONSOLE_INFO("%s: Imperative Recovery enabled, recovery "
1841                               "window shrunk from %d-%d down to %d-%d\n",
1842                               obd->obd_name, soft, hard, new_soft, new_hard);
1843
1844                 soft = new_soft;
1845                 hard = new_hard;
1846         }
1847
1848         /* we're done */
1849         obd->obd_recovery_timeout   = max(obd->obd_recovery_timeout, soft);
1850         obd->obd_recovery_time_hard = hard;
1851         obd->obd_recovery_ir_factor = factor;
1852 }
1853 EXPORT_SYMBOL(server_calc_timeout);