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