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