Whamcloud - gitweb
LU-6684 lfsck: stop lfsck even if some servers offline
[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, 2015, Intel Corporation.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  *
36  * lustre/obdclass/obd_mount_server.c
37  *
38  * Server mount routines
39  *
40  * Author: Nathan Rutman <nathan@clusterfs.com>
41  */
42
43
44 #define DEBUG_SUBSYSTEM S_CLASS
45 #define D_MOUNT (D_SUPER | D_CONFIG /* | D_WARNING */)
46 #define PRINT_CMD CDEBUG
47 #define PRINT_MASK (D_SUPER | D_CONFIG)
48
49 #include <linux/types.h>
50 #include <linux/selinux.h>
51 #include <linux/statfs.h>
52 #include <obd.h>
53 #include <obd_class.h>
54 #include <lustre/lustre_user.h>
55 #include <linux/version.h>
56 #include <lustre_ioctl.h>
57 #include <lustre_log.h>
58 #include <lustre_disk.h>
59 #include <lustre_param.h>
60 #ifdef HAVE_KERNEL_LOCKED
61 #include <linux/smp_lock.h>
62 #endif
63
64 /*********** mount lookup *********/
65
66 static DEFINE_MUTEX(lustre_mount_info_lock);
67 static struct list_head server_mount_info_list =
68         LIST_HEAD_INIT(server_mount_info_list);
69
70 static struct lustre_mount_info *server_find_mount(const char *name)
71 {
72         struct list_head *tmp;
73         struct lustre_mount_info *lmi;
74         ENTRY;
75
76         list_for_each(tmp, &server_mount_info_list) {
77                 lmi = list_entry(tmp, struct lustre_mount_info,
78                                  lmi_list_chain);
79                 if (strcmp(name, lmi->lmi_name) == 0)
80                         RETURN(lmi);
81         }
82         RETURN(NULL);
83 }
84
85 /* we must register an obd for a mount before we call the setup routine.
86  *_setup will call lustre_get_mount to get the mnt struct
87  by obd_name, since we can't pass the pointer to setup. */
88 static int server_register_mount(const char *name, struct super_block *sb)
89 {
90         struct lustre_mount_info *lmi;
91         char *name_cp;
92         ENTRY;
93
94         LASSERT(sb);
95
96         OBD_ALLOC(lmi, sizeof(*lmi));
97         if (!lmi)
98                 RETURN(-ENOMEM);
99         OBD_ALLOC(name_cp, strlen(name) + 1);
100         if (!name_cp) {
101                 OBD_FREE(lmi, sizeof(*lmi));
102                 RETURN(-ENOMEM);
103         }
104         strcpy(name_cp, name);
105
106         mutex_lock(&lustre_mount_info_lock);
107
108         if (server_find_mount(name)) {
109                 mutex_unlock(&lustre_mount_info_lock);
110                 OBD_FREE(lmi, sizeof(*lmi));
111                 OBD_FREE(name_cp, strlen(name) + 1);
112                 CERROR("Already registered %s\n", name);
113                 RETURN(-EEXIST);
114         }
115         lmi->lmi_name = name_cp;
116         lmi->lmi_sb = sb;
117         list_add(&lmi->lmi_list_chain, &server_mount_info_list);
118
119         mutex_unlock(&lustre_mount_info_lock);
120
121         CDEBUG(D_MOUNT, "register mount %p from %s\n", sb, name);
122
123         RETURN(0);
124 }
125
126 /* when an obd no longer needs a mount */
127 static int server_deregister_mount(const char *name)
128 {
129         struct lustre_mount_info *lmi;
130         ENTRY;
131
132         mutex_lock(&lustre_mount_info_lock);
133         lmi = server_find_mount(name);
134         if (!lmi) {
135                 mutex_unlock(&lustre_mount_info_lock);
136                 CERROR("%s not registered\n", name);
137                 RETURN(-ENOENT);
138         }
139
140         CDEBUG(D_MOUNT, "deregister mount %p from %s\n", lmi->lmi_sb, name);
141
142         OBD_FREE(lmi->lmi_name, strlen(lmi->lmi_name) + 1);
143         list_del(&lmi->lmi_list_chain);
144         OBD_FREE(lmi, sizeof(*lmi));
145         mutex_unlock(&lustre_mount_info_lock);
146
147         RETURN(0);
148 }
149
150 /* obd's look up a registered mount using their obdname. This is just
151    for initial obd setup to find the mount struct.  It should not be
152    called every time you want to mntget. */
153 struct lustre_mount_info *server_get_mount(const char *name)
154 {
155         struct lustre_mount_info *lmi;
156         struct lustre_sb_info *lsi;
157         ENTRY;
158
159         mutex_lock(&lustre_mount_info_lock);
160         lmi = server_find_mount(name);
161         mutex_unlock(&lustre_mount_info_lock);
162         if (!lmi) {
163                 CERROR("Can't find mount for %s\n", name);
164                 RETURN(NULL);
165         }
166         lsi = s2lsi(lmi->lmi_sb);
167
168         atomic_inc(&lsi->lsi_mounts);
169
170         CDEBUG(D_MOUNT, "get mount %p from %s, refs=%d\n", lmi->lmi_sb,
171                name, atomic_read(&lsi->lsi_mounts));
172
173         RETURN(lmi);
174 }
175 EXPORT_SYMBOL(server_get_mount);
176
177 /**
178  * server_put_mount: to be called from obd_cleanup methods
179  * @name:       obd name
180  * @dereg_mnt:  0 or 1 depending on whether the mount is to be deregistered or
181  * not
182  *
183  * The caller decides whether server_deregister_mount() needs to be called or
184  * not. Calling of server_deregister_mount() does not depend on refcounting on
185  * lsi because we could have say the mgs and mds on the same node and we
186  * unmount the mds, then the ref on the lsi would still be non-zero but we
187  * would still want to deregister the mds mount.
188  */
189 int server_put_mount(const char *name, bool dereg_mnt)
190 {
191         struct lustre_mount_info *lmi;
192         struct lustre_sb_info *lsi;
193         ENTRY;
194
195         mutex_lock(&lustre_mount_info_lock);
196         lmi = server_find_mount(name);
197         mutex_unlock(&lustre_mount_info_lock);
198         if (!lmi) {
199                 CERROR("Can't find mount for %s\n", name);
200                 RETURN(-ENOENT);
201         }
202         lsi = s2lsi(lmi->lmi_sb);
203
204         CDEBUG(D_MOUNT, "put mount %p from %s, refs=%d\n",
205                lmi->lmi_sb, name, atomic_read(&lsi->lsi_mounts));
206
207         if (lustre_put_lsi(lmi->lmi_sb))
208                 CDEBUG(D_MOUNT, "Last put of mount %p from %s\n",
209                        lmi->lmi_sb, name);
210
211         if (dereg_mnt)
212                 /* this obd should never need the mount again */
213                 server_deregister_mount(name);
214
215         RETURN(0);
216 }
217 EXPORT_SYMBOL(server_put_mount);
218
219 /* Set up a MGS to serve startup logs */
220 static int server_start_mgs(struct super_block *sb)
221 {
222         struct lustre_sb_info    *lsi = s2lsi(sb);
223         struct lustre_mount_info *lmi;
224         int    rc = 0;
225         ENTRY;
226
227         /* It is impossible to have more than 1 MGS per node, since
228            MGC wouldn't know which to connect to */
229         lmi = server_find_mount(LUSTRE_MGS_OBDNAME);
230         if (lmi) {
231                 lsi = s2lsi(lmi->lmi_sb);
232                 LCONSOLE_ERROR_MSG(0x15d, "The MGS service was already started"
233                                    " from server\n");
234                 RETURN(-EALREADY);
235         }
236
237         CDEBUG(D_CONFIG, "Start MGS service %s\n", LUSTRE_MGS_OBDNAME);
238
239         rc = server_register_mount(LUSTRE_MGS_OBDNAME, sb);
240
241         if (!rc) {
242                 rc = lustre_start_simple(LUSTRE_MGS_OBDNAME, LUSTRE_MGS_NAME,
243                                          LUSTRE_MGS_OBDNAME, NULL, NULL,
244                                          lsi->lsi_osd_obdname, NULL);
245                 /* server_deregister_mount() is not called previously, for lsi
246                  * and other stuff can't be freed cleanly when mgs calls
247                  * server_put_mount() in error handling case (see b=17758),
248                  * this problem is caused by a bug in mgs_init0, which forgot
249                  * calling server_put_mount in error case. */
250
251                 if (rc)
252                         server_deregister_mount(LUSTRE_MGS_OBDNAME);
253         }
254
255         if (rc)
256                 LCONSOLE_ERROR_MSG(0x15e, "Failed to start MGS '%s' (%d). "
257                                    "Is the 'mgs' module loaded?\n",
258                                    LUSTRE_MGS_OBDNAME, rc);
259         RETURN(rc);
260 }
261
262 static int server_stop_mgs(struct super_block *sb)
263 {
264         struct obd_device *obd;
265         int rc;
266         struct lustre_mount_info *lmi;
267         ENTRY;
268
269         /* Do not stop MGS if this device is not the running MGT */
270         lmi = server_find_mount(LUSTRE_MGS_OBDNAME);
271         if (lmi != NULL && lmi->lmi_sb != sb)
272                 RETURN(0);
273
274         CDEBUG(D_MOUNT, "Stop MGS service %s\n", LUSTRE_MGS_OBDNAME);
275
276         /* There better be only one MGS */
277         obd = class_name2obd(LUSTRE_MGS_OBDNAME);
278         if (!obd) {
279                 CDEBUG(D_CONFIG, "mgs %s not running\n", LUSTRE_MGS_OBDNAME);
280                 RETURN(-EALREADY);
281         }
282
283         /* The MGS should always stop when we say so */
284         obd->obd_force = 1;
285         rc = class_manual_cleanup(obd);
286         RETURN(rc);
287 }
288
289 /* Since there's only one mgc per node, we have to change it's fs to get
290    access to the right disk. */
291 static int server_mgc_set_fs(struct obd_device *mgc, struct super_block *sb)
292 {
293         struct lustre_sb_info *lsi = s2lsi(sb);
294         int rc;
295         ENTRY;
296
297         CDEBUG(D_MOUNT, "Set mgc disk for %s\n", lsi->lsi_lmd->lmd_dev);
298
299         /* cl_mgc_sem in mgc insures we sleep if the mgc_fs is busy */
300         rc = obd_set_info_async(NULL, mgc->obd_self_export,
301                                 sizeof(KEY_SET_FS), KEY_SET_FS,
302                                 sizeof(*sb), sb, NULL);
303         if (rc != 0)
304                 CERROR("can't set_fs %d\n", rc);
305
306         RETURN(rc);
307 }
308
309 static int server_mgc_clear_fs(struct obd_device *mgc)
310 {
311         int rc;
312         ENTRY;
313
314         CDEBUG(D_MOUNT, "Unassign mgc disk\n");
315
316         rc = obd_set_info_async(NULL, mgc->obd_self_export,
317                                 sizeof(KEY_CLEAR_FS), KEY_CLEAR_FS,
318                                 0, NULL, NULL);
319         RETURN(rc);
320 }
321
322 static inline bool is_mdc_device(const char *devname)
323 {
324         char *ptr;
325
326         ptr = strrchr(devname, '-');
327         return ptr != NULL && strcmp(ptr, "-mdc") == 0;
328 }
329
330 static inline bool tgt_is_mdt(const char *tgtname, __u32 *idx)
331 {
332         int type;
333
334         type = server_name2index(tgtname, idx, NULL);
335
336         return type == LDD_F_SV_TYPE_MDT;
337 }
338
339 /**
340  * Convert OST/MDT name(fsname-{MDT,OST}xxxx) to a lwp name with the @idx:yyyy
341  * (fsname-MDTyyyy-lwp-{MDT,OST}xxxx)
342  **/
343 int tgt_name2lwp_name(const char *tgt_name, char *lwp_name, int len, __u32 idx)
344 {
345         char            *fsname;
346         const char      *tgt;
347         int             rc;
348         ENTRY;
349
350         OBD_ALLOC(fsname, MTI_NAME_MAXLEN);
351         if (fsname == NULL)
352                 RETURN(-ENOMEM);
353
354         rc = server_name2fsname(tgt_name, fsname, &tgt);
355         if (rc != 0) {
356                 CERROR("%s: failed to get fsname from tgt_name: rc = %d\n",
357                        tgt_name, rc);
358                 GOTO(cleanup, rc);
359         }
360
361         if (*tgt != '-' && *tgt != ':') {
362                 CERROR("%s: invalid tgt_name name!\n", tgt_name);
363                 GOTO(cleanup, rc = -EINVAL);
364         }
365
366         tgt++;
367         if (strncmp(tgt, "OST", 3) != 0 && strncmp(tgt, "MDT", 3) != 0) {
368                 CERROR("%s is not an OST or MDT target!\n", tgt_name);
369                 GOTO(cleanup, rc = -EINVAL);
370         }
371         snprintf(lwp_name, len, "%s-MDT%04x-%s-%s",
372                  fsname, idx, LUSTRE_LWP_NAME, tgt);
373
374         GOTO(cleanup, rc = 0);
375
376 cleanup:
377         if (fsname != NULL)
378                 OBD_FREE(fsname, MTI_NAME_MAXLEN);
379
380         return rc;
381 }
382 EXPORT_SYMBOL(tgt_name2lwp_name);
383
384 static struct list_head lwp_register_list =
385         LIST_HEAD_INIT(lwp_register_list);
386 static DEFINE_MUTEX(lwp_register_list_lock);
387
388 int lustre_register_lwp_item(const char *lwpname, struct obd_export **exp,
389                              register_lwp_cb cb_func, void *cb_data)
390 {
391         struct obd_device        *lwp;
392         struct lwp_register_item *lri;
393         ENTRY;
394
395         LASSERTF(strlen(lwpname) < MTI_NAME_MAXLEN, "lwpname is too long %s\n",
396                  lwpname);
397         LASSERT(exp != NULL && *exp == NULL);
398
399         OBD_ALLOC_PTR(lri);
400         if (lri == NULL)
401                 RETURN(-ENOMEM);
402
403         mutex_lock(&lwp_register_list_lock);
404
405         lwp = class_name2obd(lwpname);
406         if (lwp != NULL && lwp->obd_set_up == 1) {
407                 struct obd_uuid *uuid;
408
409                 OBD_ALLOC_PTR(uuid);
410                 if (uuid == NULL) {
411                         mutex_unlock(&lwp_register_list_lock);
412                         OBD_FREE_PTR(lri);
413                         RETURN(-ENOMEM);
414                 }
415                 memcpy(uuid->uuid, lwpname, strlen(lwpname));
416                 *exp = cfs_hash_lookup(lwp->obd_uuid_hash, uuid);
417                 OBD_FREE_PTR(uuid);
418         }
419
420         memcpy(lri->lri_name, lwpname, strlen(lwpname));
421         lri->lri_exp = exp;
422         lri->lri_cb_func = cb_func;
423         lri->lri_cb_data = cb_data;
424         INIT_LIST_HEAD(&lri->lri_list);
425         list_add(&lri->lri_list, &lwp_register_list);
426
427         if (*exp != NULL && cb_func != NULL)
428                 cb_func(cb_data);
429
430         mutex_unlock(&lwp_register_list_lock);
431         RETURN(0);
432 }
433 EXPORT_SYMBOL(lustre_register_lwp_item);
434
435 void lustre_deregister_lwp_item(struct obd_export **exp)
436 {
437         struct lwp_register_item *lri, *tmp;
438
439         mutex_lock(&lwp_register_list_lock);
440         list_for_each_entry_safe(lri, tmp, &lwp_register_list, lri_list) {
441                 if (exp == lri->lri_exp) {
442                         if (*exp)
443                                 class_export_put(*exp);
444                         list_del(&lri->lri_list);
445                         OBD_FREE_PTR(lri);
446                         break;
447                 }
448         }
449         mutex_unlock(&lwp_register_list_lock);
450 }
451 EXPORT_SYMBOL(lustre_deregister_lwp_item);
452
453 struct obd_export *lustre_find_lwp_by_index(const char *dev, __u32 idx)
454 {
455         struct lustre_mount_info *lmi;
456         struct lustre_sb_info    *lsi;
457         struct obd_device        *lwp;
458         struct obd_export        *exp = NULL;
459         char                      fsname[16];
460         char                      lwp_name[24];
461         int                       rc;
462
463         lmi = server_get_mount(dev);
464         if (lmi == NULL)
465                 return NULL;
466
467         lsi = s2lsi(lmi->lmi_sb);
468         rc = server_name2fsname(lsi->lsi_svname, fsname, NULL);
469         if (rc != 0) {
470                 CERROR("%s: failed to get fsname: rc = %d\n",
471                        lsi->lsi_svname, rc);
472                 goto err_lmi;
473         }
474
475         snprintf(lwp_name, sizeof(lwp_name), "%s-MDT%04x", fsname, idx);
476         spin_lock(&lsi->lsi_lwp_lock);
477         list_for_each_entry(lwp, &lsi->lsi_lwp_list, obd_lwp_list) {
478                 char *ptr = strstr(lwp->obd_name, lwp_name);
479
480                 if (ptr != NULL && lwp->obd_lwp_export != NULL) {
481                         exp = class_export_get(lwp->obd_lwp_export);
482                         break;
483                 }
484         }
485         spin_unlock(&lsi->lsi_lwp_lock);
486
487 err_lmi:
488         server_put_mount(dev, false);
489
490         return exp;
491 }
492 EXPORT_SYMBOL(lustre_find_lwp_by_index);
493
494 void lustre_notify_lwp_list(struct obd_export *exp)
495 {
496         struct lwp_register_item *lri, *tmp;
497         LASSERT(exp != NULL);
498
499         mutex_lock(&lwp_register_list_lock);
500         list_for_each_entry_safe(lri, tmp, &lwp_register_list, lri_list) {
501                 if (strcmp(exp->exp_obd->obd_name, lri->lri_name))
502                         continue;
503                 if (*lri->lri_exp != NULL)
504                         continue;
505                 *lri->lri_exp = class_export_get(exp);
506                 if (lri->lri_cb_func != NULL)
507                         lri->lri_cb_func(lri->lri_cb_data);
508         }
509         mutex_unlock(&lwp_register_list_lock);
510 }
511 EXPORT_SYMBOL(lustre_notify_lwp_list);
512
513 static int lustre_lwp_connect(struct obd_device *lwp)
514 {
515         struct lu_env            env;
516         struct lu_context        session_ctx;
517         struct obd_export       *exp;
518         struct obd_uuid         *uuid = NULL;
519         struct obd_connect_data *data = NULL;
520         int                      rc;
521         ENTRY;
522
523         /* log has been fully processed, let clients connect */
524         rc = lu_env_init(&env, lwp->obd_lu_dev->ld_type->ldt_ctx_tags);
525         if (rc != 0)
526                 RETURN(rc);
527
528         lu_context_init(&session_ctx, LCT_SERVER_SESSION);
529         session_ctx.lc_thread = NULL;
530         lu_context_enter(&session_ctx);
531         env.le_ses = &session_ctx;
532
533         OBD_ALLOC_PTR(data);
534         if (data == NULL)
535                 GOTO(out, rc = -ENOMEM);
536
537         data->ocd_connect_flags = OBD_CONNECT_VERSION | OBD_CONNECT_INDEX;
538         data->ocd_version = LUSTRE_VERSION_CODE;
539         data->ocd_connect_flags |= OBD_CONNECT_MDS_MDS | OBD_CONNECT_FID |
540                 OBD_CONNECT_AT | OBD_CONNECT_LRU_RESIZE |
541                 OBD_CONNECT_FULL20 | OBD_CONNECT_LVB_TYPE |
542                 OBD_CONNECT_LIGHTWEIGHT | OBD_CONNECT_LFSCK |
543                 OBD_CONNECT_BULK_MBITS;
544         OBD_ALLOC_PTR(uuid);
545         if (uuid == NULL)
546                 GOTO(out, rc = -ENOMEM);
547
548         if (strlen(lwp->obd_name) > sizeof(uuid->uuid)) {
549                 CERROR("%s: Too long lwp name %s, max_size is %d\n",
550                        lwp->obd_name, lwp->obd_name, (int)sizeof(uuid->uuid));
551                 GOTO(out, rc = -EINVAL);
552         }
553
554         /* Use lwp name as the uuid, so we find the export by lwp name later */
555         memcpy(uuid->uuid, lwp->obd_name, strlen(lwp->obd_name));
556         rc = obd_connect(&env, &exp, lwp, uuid, data, NULL);
557         if (rc != 0) {
558                 CERROR("%s: connect failed: rc = %d\n", lwp->obd_name, rc);
559         } else {
560                 if (unlikely(lwp->obd_lwp_export != NULL))
561                         class_export_put(lwp->obd_lwp_export);
562                 lwp->obd_lwp_export = class_export_get(exp);
563         }
564
565         GOTO(out, rc);
566
567 out:
568         if (data != NULL)
569                 OBD_FREE_PTR(data);
570         if (uuid != NULL)
571                 OBD_FREE_PTR(uuid);
572
573         lu_env_fini(&env);
574         lu_context_exit(&session_ctx);
575         lu_context_fini(&session_ctx);
576
577         return rc;
578 }
579
580 /**
581  * lwp is used by slaves (Non-MDT0 targets) to manage the connection to MDT0,
582  * or from the OSTx to MDTy.
583  **/
584 static int lustre_lwp_setup(struct lustre_cfg *lcfg, struct lustre_sb_info *lsi,
585                             __u32 idx)
586 {
587         struct obd_device       *obd;
588         char                    *lwpname = NULL;
589         char                    *lwpuuid = NULL;
590         int                      rc;
591         ENTRY;
592
593         rc = class_add_uuid(lustre_cfg_string(lcfg, 1),
594                             lcfg->lcfg_nid);
595         if (rc != 0) {
596                 CERROR("%s: Can't add uuid: rc =%d\n", lsi->lsi_svname, rc);
597                 RETURN(rc);
598         }
599
600         OBD_ALLOC(lwpname, MTI_NAME_MAXLEN);
601         if (lwpname == NULL)
602                 GOTO(out, rc = -ENOMEM);
603
604         rc = tgt_name2lwp_name(lsi->lsi_svname, lwpname, MTI_NAME_MAXLEN, idx);
605         if (rc != 0) {
606                 CERROR("%s: failed to generate lwp name: rc = %d\n",
607                        lsi->lsi_svname, rc);
608                 GOTO(out, rc);
609         }
610
611         OBD_ALLOC(lwpuuid, MTI_NAME_MAXLEN);
612         if (lwpuuid == NULL)
613                 GOTO(out, rc = -ENOMEM);
614
615         sprintf(lwpuuid, "%s_UUID", lwpname);
616         rc = lustre_start_simple(lwpname, LUSTRE_LWP_NAME,
617                                  lwpuuid, lustre_cfg_string(lcfg, 1),
618                                  NULL, NULL, NULL);
619         if (rc) {
620                 CERROR("%s: setup up failed: rc %d\n", lwpname, rc);
621                 GOTO(out, rc);
622         }
623
624         obd = class_name2obd(lwpname);
625         LASSERT(obd != NULL);
626
627         rc = lustre_lwp_connect(obd);
628         if (rc == 0) {
629                 obd->u.cli.cl_max_mds_easize = MAX_MD_SIZE;
630                 spin_lock(&lsi->lsi_lwp_lock);
631                 list_add_tail(&obd->obd_lwp_list, &lsi->lsi_lwp_list);
632                 spin_unlock(&lsi->lsi_lwp_lock);
633         } else {
634                 CERROR("%s: connect failed: rc = %d\n", lwpname, rc);
635         }
636
637         GOTO(out, rc);
638
639 out:
640         if (lwpname != NULL)
641                 OBD_FREE(lwpname, MTI_NAME_MAXLEN);
642         if (lwpuuid != NULL)
643                 OBD_FREE(lwpuuid, MTI_NAME_MAXLEN);
644
645         return rc;
646 }
647
648 /* the caller is responsible for memory free */
649 static struct obd_device *lustre_find_lwp(struct lustre_sb_info *lsi,
650                                           char **lwpname, __u32 idx)
651 {
652         struct obd_device       *lwp;
653         int                      rc = 0;
654         ENTRY;
655
656         LASSERT(lwpname != NULL);
657         LASSERT(IS_OST(lsi) || IS_MDT(lsi));
658
659         OBD_ALLOC(*lwpname, MTI_NAME_MAXLEN);
660         if (*lwpname == NULL)
661                 RETURN(ERR_PTR(-ENOMEM));
662
663         rc = tgt_name2lwp_name(lsi->lsi_svname, *lwpname, MTI_NAME_MAXLEN, idx);
664         if (rc != 0) {
665                 CERROR("%s: failed to generate lwp name: rc = %d\n",
666                        lsi->lsi_svname, rc);
667                 GOTO(out, rc = -EINVAL);
668         }
669
670         lwp = class_name2obd(*lwpname);
671
672 out:
673         if (rc != 0) {
674                 if (*lwpname != NULL) {
675                         OBD_FREE(*lwpname, MTI_NAME_MAXLEN);
676                         *lwpname = NULL;
677                 }
678                 lwp = ERR_PTR(rc);
679         }
680
681         RETURN(lwp != NULL ? lwp : ERR_PTR(-ENOENT));
682 }
683
684 static int lustre_lwp_add_conn(struct lustre_cfg *cfg,
685                                struct lustre_sb_info *lsi, __u32 idx)
686 {
687         struct lustre_cfg_bufs *bufs = NULL;
688         struct lustre_cfg      *lcfg = NULL;
689         char                   *lwpname = NULL;
690         struct obd_device      *lwp;
691         int                     rc;
692         ENTRY;
693
694         lwp = lustre_find_lwp(lsi, &lwpname, idx);
695         if (IS_ERR(lwp)) {
696                 CERROR("%s: can't find lwp device.\n", lsi->lsi_svname);
697                 GOTO(out, rc = PTR_ERR(lwp));
698         }
699         LASSERT(lwpname != NULL);
700
701         OBD_ALLOC_PTR(bufs);
702         if (bufs == NULL)
703                 GOTO(out, rc = -ENOMEM);
704
705         lustre_cfg_bufs_reset(bufs, lwpname);
706         lustre_cfg_bufs_set_string(bufs, 1,
707                                    lustre_cfg_string(cfg, 1));
708
709         lcfg = lustre_cfg_new(LCFG_ADD_CONN, bufs);
710         if (lcfg == NULL)
711                 GOTO(out_cfg, rc = -ENOMEM);
712         rc = class_add_conn(lwp, lcfg);
713         if (rc)
714                 CERROR("%s: can't add conn: rc = %d\n", lwpname, rc);
715
716         if (lcfg != NULL)
717                 lustre_cfg_free(lcfg);
718 out_cfg:
719         if (bufs != NULL)
720                 OBD_FREE_PTR(bufs);
721 out:
722         if (lwpname != NULL)
723                 OBD_FREE(lwpname, MTI_NAME_MAXLEN);
724         RETURN(rc);
725 }
726
727 /**
728  * Retrieve MDT nids from the client log, then start the lwp device.
729  * there are only two scenarios which would include mdt nid.
730  * 1.
731  * marker   5 (flags=0x01, v2.1.54.0) lustre-MDTyyyy  'add mdc' xxx-
732  * add_uuid  nid=192.168.122.162@tcp(0x20000c0a87aa2)  0:  1:192.168.122.162@tcp
733  * attach    0:lustre-MDTyyyy-mdc  1:mdc  2:lustre-clilmv_UUID
734  * setup     0:lustre-MDTyyyy-mdc  1:lustre-MDTyyyy_UUID  2:192.168.122.162@tcp
735  * add_uuid  nid=192.168.172.1@tcp(0x20000c0a8ac01)  0:  1:192.168.172.1@tcp
736  * add_conn  0:lustre-MDTyyyy-mdc  1:192.168.172.1@tcp
737  * modify_mdc_tgts add 0:lustre-clilmv  1:lustre-MDTyyyy_UUID xxxx
738  * marker   5 (flags=0x02, v2.1.54.0) lustre-MDTyyyy  'add mdc' xxxx-
739  * 2.
740  * marker   7 (flags=0x01, v2.1.54.0) lustre-MDTyyyy  'add failnid' xxxx-
741  * add_uuid  nid=192.168.122.2@tcp(0x20000c0a87a02)  0:  1:192.168.122.2@tcp
742  * add_conn  0:lustre-MDTyyyy-mdc  1:192.168.122.2@tcp
743  * marker   7 (flags=0x02, v2.1.54.0) lustre-MDTyyyy  'add failnid' xxxx-
744  **/
745 static int client_lwp_config_process(const struct lu_env *env,
746                                      struct llog_handle *handle,
747                                      struct llog_rec_hdr *rec, void *data)
748 {
749         struct config_llog_instance *clli = data;
750         int                          cfg_len = rec->lrh_len;
751         char                        *cfg_buf = (char *) (rec + 1);
752         struct lustre_cfg           *lcfg = NULL;
753         struct lustre_sb_info       *lsi;
754         int                          rc = 0, swab = 0;
755         ENTRY;
756
757         if (rec->lrh_type != OBD_CFG_REC) {
758                 CERROR("Unknown llog record type %#x encountered\n",
759                        rec->lrh_type);
760                 RETURN(-EINVAL);
761         }
762
763         LASSERT(clli->cfg_sb != NULL);
764         lsi = s2lsi(clli->cfg_sb);
765
766         lcfg = (struct lustre_cfg *)cfg_buf;
767         if (lcfg->lcfg_version == __swab32(LUSTRE_CFG_VERSION)) {
768                 lustre_swab_lustre_cfg(lcfg);
769                 swab = 1;
770         }
771
772         rc = lustre_cfg_sanity_check(cfg_buf, cfg_len);
773         if (rc)
774                 GOTO(out, rc);
775
776         switch (lcfg->lcfg_command) {
777         case LCFG_MARKER: {
778                 struct cfg_marker *marker = lustre_cfg_buf(lcfg, 1);
779
780                 lustre_swab_cfg_marker(marker, swab,
781                                        LUSTRE_CFG_BUFLEN(lcfg, 1));
782                 if (marker->cm_flags & CM_SKIP ||
783                     marker->cm_flags & CM_EXCLUDE)
784                         GOTO(out, rc = 0);
785
786                 if (!tgt_is_mdt(marker->cm_tgtname, &clli->cfg_lwp_idx))
787                         GOTO(out, rc = 0);
788
789                 if (IS_MDT(lsi) && clli->cfg_lwp_idx != 0)
790                         GOTO(out, rc = 0);
791
792                 if (!strncmp(marker->cm_comment, "add mdc", 7) ||
793                     !strncmp(marker->cm_comment, "add failnid", 11)) {
794                         if (marker->cm_flags & CM_START) {
795                                 clli->cfg_flags = CFG_F_MARKER;
796                                 /* This hack is to differentiate the
797                                  * ADD_UUID is come from "add mdc" record
798                                  * or from "add failnid" record. */
799                                 if (!strncmp(marker->cm_comment,
800                                              "add failnid", 11))
801                                         clli->cfg_flags |= CFG_F_SKIP;
802                         } else if (marker->cm_flags & CM_END) {
803                                 clli->cfg_flags = 0;
804                         }
805                 }
806                 break;
807         }
808         case LCFG_ADD_UUID: {
809                 if (clli->cfg_flags == CFG_F_MARKER) {
810                         rc = lustre_lwp_setup(lcfg, lsi, clli->cfg_lwp_idx);
811                         /* XXX: process only the first nid as
812                          * we don't need another instance of lwp */
813                         clli->cfg_flags |= CFG_F_SKIP;
814                 } else if (clli->cfg_flags == (CFG_F_MARKER | CFG_F_SKIP)) {
815                         rc = class_add_uuid(lustre_cfg_string(lcfg, 1),
816                                             lcfg->lcfg_nid);
817                         if (rc)
818                                 CERROR("%s: Fail to add uuid, rc:%d\n",
819                                        lsi->lsi_svname, rc);
820                 }
821                 break;
822         }
823         case LCFG_ADD_CONN: {
824                 char *devname = lustre_cfg_string(lcfg, 0);
825                 char *ptr;
826                 __u32 idx     = 0;
827
828                 if (!is_mdc_device(devname))
829                         break;
830
831                 ptr = strrchr(devname, '-');
832                 if (ptr == NULL)
833                         break;
834
835                 *ptr = 0;
836                 if (!tgt_is_mdt(devname, &idx)) {
837                         *ptr = '-';
838                         break;
839                 }
840                 *ptr = '-';
841
842                 if (IS_MDT(lsi) && idx != 0)
843                         break;
844
845                 rc = lustre_lwp_add_conn(lcfg, lsi, idx);
846                 break;
847         }
848         default:
849                 break;
850         }
851 out:
852         RETURN(rc);
853 }
854
855 static int lustre_disconnect_lwp(struct super_block *sb)
856 {
857         struct lustre_sb_info           *lsi     = s2lsi(sb);
858         struct obd_device               *lwp;
859         char                            *logname = NULL;
860         struct lustre_cfg_bufs          *bufs    = NULL;
861         struct config_llog_instance     *cfg     = NULL;
862         int                              rc      = 0;
863         int                              rc1     = 0;
864         ENTRY;
865
866         if (likely(lsi->lsi_lwp_started)) {
867                 OBD_ALLOC(logname, MTI_NAME_MAXLEN);
868                 if (logname == NULL)
869                         RETURN(-ENOMEM);
870
871                 rc = server_name2fsname(lsi->lsi_svname, logname, NULL);
872                 if (rc != 0) {
873                         CERROR("%s: failed to get fsname from svname: "
874                                "rc = %d\n", lsi->lsi_svname, rc);
875                         GOTO(out, rc = -EINVAL);
876                 }
877
878                 strcat(logname, "-client");
879                 OBD_ALLOC_PTR(cfg);
880                 if (cfg == NULL)
881                         GOTO(out, rc = -ENOMEM);
882
883                 /* end log first */
884                 cfg->cfg_instance = sb;
885                 rc = lustre_end_log(sb, logname, cfg);
886                 if (rc != 0 && rc != -ENOENT)
887                         GOTO(out, rc);
888
889                 lsi->lsi_lwp_started = 0;
890         }
891
892         OBD_ALLOC_PTR(bufs);
893         if (bufs == NULL)
894                 GOTO(out, rc = -ENOMEM);
895
896         list_for_each_entry(lwp, &lsi->lsi_lwp_list, obd_lwp_list) {
897                 struct lustre_cfg *lcfg;
898
899                 if (likely(lwp->obd_lwp_export != NULL)) {
900                         class_export_put(lwp->obd_lwp_export);
901                         lwp->obd_lwp_export = NULL;
902                 }
903
904                 lustre_cfg_bufs_reset(bufs, lwp->obd_name);
905                 lustre_cfg_bufs_set_string(bufs, 1, NULL);
906                 lcfg = lustre_cfg_new(LCFG_CLEANUP, bufs);
907                 if (lcfg == NULL)
908                         GOTO(out, rc = -ENOMEM);
909
910                 /* Disconnect import first. NULL is passed for the '@env',
911                  * since it will not be used. */
912                 rc = lwp->obd_lu_dev->ld_ops->ldo_process_config(NULL,
913                                                         lwp->obd_lu_dev, lcfg);
914                 lustre_cfg_free(lcfg);
915                 if (rc != 0 && rc != -ETIMEDOUT) {
916                         CERROR("%s: fail to disconnect LWP: rc = %d\n",
917                                lwp->obd_name, rc);
918                         rc1 = rc;
919                 }
920         }
921
922         GOTO(out, rc);
923
924 out:
925         if (bufs != NULL)
926                 OBD_FREE_PTR(bufs);
927         if (cfg != NULL)
928                 OBD_FREE_PTR(cfg);
929         if (logname != NULL)
930                 OBD_FREE(logname, MTI_NAME_MAXLEN);
931
932         return rc1 != 0 ? rc1 : rc;
933 }
934
935 /**
936  * Stop the lwp for an OST/MDT target.
937  **/
938 static int lustre_stop_lwp(struct super_block *sb)
939 {
940         struct lustre_sb_info   *lsi = s2lsi(sb);
941         struct obd_device       *lwp;
942         int                      rc  = 0;
943         int                      rc1 = 0;
944         ENTRY;
945
946         while (!list_empty(&lsi->lsi_lwp_list)) {
947                 lwp = list_entry(lsi->lsi_lwp_list.next, struct obd_device,
948                                  obd_lwp_list);
949                 list_del_init(&lwp->obd_lwp_list);
950                 lwp->obd_force = 1;
951                 rc = class_manual_cleanup(lwp);
952                 if (rc != 0) {
953                         CERROR("%s: fail to stop LWP: rc = %d\n",
954                                lwp->obd_name, rc);
955                         rc1 = rc;
956                 }
957         }
958
959         RETURN(rc1 != 0 ? rc1 : rc);
960 }
961
962 /**
963  * Start the lwp(fsname-MDTyyyy-lwp-{MDT,OST}xxxx) for a MDT/OST or MDT target.
964  **/
965 static int lustre_start_lwp(struct super_block *sb)
966 {
967         struct lustre_sb_info       *lsi = s2lsi(sb);
968         struct config_llog_instance *cfg = NULL;
969         char                        *logname;
970         int                          rc;
971         ENTRY;
972
973         if (unlikely(lsi->lsi_lwp_started))
974                 RETURN(0);
975
976         OBD_ALLOC(logname, MTI_NAME_MAXLEN);
977         if (logname == NULL)
978                 RETURN(-ENOMEM);
979
980         rc = server_name2fsname(lsi->lsi_svname, logname, NULL);
981         if (rc != 0) {
982                 CERROR("%s: failed to get fsname from svname: rc = %d\n",
983                        lsi->lsi_svname, rc);
984                 GOTO(out, rc = -EINVAL);
985         }
986
987         strcat(logname, "-client");
988         OBD_ALLOC_PTR(cfg);
989         if (cfg == NULL)
990                 GOTO(out, rc = -ENOMEM);
991
992         cfg->cfg_callback = client_lwp_config_process;
993         cfg->cfg_instance = sb;
994         rc = lustre_process_log(sb, logname, cfg);
995         /* need to remove config llog from mgc */
996         lsi->lsi_lwp_started = 1;
997
998         GOTO(out, rc);
999
1000 out:
1001         OBD_FREE(logname, MTI_NAME_MAXLEN);
1002         if (cfg != NULL)
1003                 OBD_FREE_PTR(cfg);
1004
1005         return rc;
1006 }
1007
1008 static DEFINE_MUTEX(server_start_lock);
1009
1010 /* Stop MDS/OSS if nobody is using them */
1011 static int server_stop_servers(int lsiflags)
1012 {
1013         struct obd_device *obd = NULL;
1014         struct obd_type *type = NULL;
1015         int rc = 0;
1016         ENTRY;
1017
1018         mutex_lock(&server_start_lock);
1019
1020         /* Either an MDT or an OST or neither  */
1021         /* if this was an MDT, and there are no more MDT's, clean up the MDS */
1022         if (lsiflags & LDD_F_SV_TYPE_MDT) {
1023                 obd = class_name2obd(LUSTRE_MDS_OBDNAME);
1024                 if (obd != NULL)
1025                         type = class_search_type(LUSTRE_MDT_NAME);
1026         }
1027
1028         /* if this was an OST, and there are no more OST's, clean up the OSS */
1029         if (lsiflags & LDD_F_SV_TYPE_OST) {
1030                 obd = class_name2obd(LUSTRE_OSS_OBDNAME);
1031                 if (obd != NULL)
1032                         type = class_search_type(LUSTRE_OST_NAME);
1033         }
1034
1035         if (obd != NULL && (type == NULL || type->typ_refcnt == 0)) {
1036                 obd->obd_force = 1;
1037                 /* obd_fail doesn't mean much on a server obd */
1038                 rc = class_manual_cleanup(obd);
1039         }
1040
1041         mutex_unlock(&server_start_lock);
1042
1043         RETURN(rc);
1044 }
1045
1046 int server_mti_print(const char *title, struct mgs_target_info *mti)
1047 {
1048         PRINT_CMD(PRINT_MASK, "mti %s\n", title);
1049         PRINT_CMD(PRINT_MASK, "server: %s\n", mti->mti_svname);
1050         PRINT_CMD(PRINT_MASK, "fs:     %s\n", mti->mti_fsname);
1051         PRINT_CMD(PRINT_MASK, "uuid:   %s\n", mti->mti_uuid);
1052         PRINT_CMD(PRINT_MASK, "ver: %d  flags: %#x\n",
1053                   mti->mti_config_ver, mti->mti_flags);
1054         return 0;
1055 }
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                         CDEBUG(D_HA, "%s: error registering with the MGS: "
1173                                "rc = %d (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                                                  NULL, NULL, NULL, NULL);
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                                                  NULL, NULL, NULL, NULL);
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         const char *osd_type;
1377         const char *fstype;
1378         __u32 index;
1379         int rc;
1380         ENTRY;
1381
1382         LASSERT(lsi);
1383         LASSERT(lsi->lsi_lmd);
1384
1385         /* The server name is given as a mount line option */
1386         if (lsi->lsi_lmd->lmd_profile == NULL) {
1387                 LCONSOLE_ERROR("Can't determine server name\n");
1388                 RETURN(-EINVAL);
1389         }
1390
1391         /* Determine osd type */
1392         if (lsi->lsi_lmd->lmd_osd_type == NULL) {
1393                 osd_type = LUSTRE_OSD_LDISKFS_NAME;
1394                 fstype = "ldiskfs";
1395         } else {
1396                 osd_type = lsi->lsi_lmd->lmd_osd_type;
1397                 fstype = lsi->lsi_lmd->lmd_osd_type;
1398         }
1399
1400         if (strlen(lsi->lsi_lmd->lmd_profile) >= sizeof(lsi->lsi_svname) ||
1401             strlen(osd_type) >= sizeof(lsi->lsi_osd_type) ||
1402             strlen(fstype) >= sizeof(lsi->lsi_fstype))
1403                 RETURN(-ENAMETOOLONG);
1404
1405         strlcpy(lsi->lsi_svname, lsi->lsi_lmd->lmd_profile,
1406                 sizeof(lsi->lsi_svname));
1407         strlcpy(lsi->lsi_osd_type, osd_type, sizeof(lsi->lsi_osd_type));
1408         /* XXX: a temp. solution for components using ldiskfs
1409          *      to be removed in one of the subsequent patches */
1410         strlcpy(lsi->lsi_fstype, fstype, sizeof(lsi->lsi_fstype));
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 != NULL) {
1490                         if (lprof->lp_dt != NULL) {
1491                                 OBD_ALLOC(extraname, strlen(lprof->lp_dt) + 1);
1492                                 strncpy(extraname, lprof->lp_dt,
1493                                         strlen(lprof->lp_dt) + 1);
1494                         }
1495                         class_put_profile(lprof);
1496                 }
1497
1498                 obd = class_name2obd(lsi->lsi_svname);
1499                 if (obd) {
1500                         CDEBUG(D_MOUNT, "stopping %s\n", obd->obd_name);
1501                         if (lsiflags & LSI_UMOUNT_FAILOVER)
1502                                 obd->obd_fail = 1;
1503                         /* We can't seem to give an error return code
1504                          * to .put_super, so we better make sure we clean up! */
1505                         obd->obd_force = 1;
1506                         class_manual_cleanup(obd);
1507                 } else {
1508                         CERROR("no obd %s\n", lsi->lsi_svname);
1509                         server_deregister_mount(lsi->lsi_svname);
1510                 }
1511         }
1512
1513         /* If they wanted the mgs to stop separately from the mdt, they
1514            should have put it on a different device. */
1515         if (IS_MGS(lsi)) {
1516                 /* if MDS start with --nomgs, don't stop MGS then */
1517                 if (!(lsi->lsi_lmd->lmd_flags & LMD_FLG_NOMGS))
1518                         server_stop_mgs(sb);
1519         }
1520
1521         if (IS_OST(lsi) || IS_MDT(lsi)) {
1522                 if (lustre_stop_lwp(sb) < 0)
1523                         CERROR("%s: failed to stop lwp!\n", tmpname);
1524         }
1525
1526         /* Clean the mgc and sb */
1527         lustre_common_put_super(sb);
1528
1529         /* wait till all in-progress cleanups are done
1530          * specifically we're interested in ofd cleanup
1531          * as it pins OSS */
1532         obd_zombie_barrier();
1533
1534         /* Stop the servers (MDS, OSS) if no longer needed.  We must wait
1535            until the target is really gone so that our type refcount check
1536            is right. */
1537         server_stop_servers(lsiflags);
1538
1539         /* In case of startup or cleanup err, stop related obds */
1540         if (extraname) {
1541                 obd = class_name2obd(extraname);
1542                 if (obd) {
1543                         CWARN("Cleaning orphaned obd %s\n", extraname);
1544                         obd->obd_force = 1;
1545                         class_manual_cleanup(obd);
1546                 }
1547                 OBD_FREE(extraname, strlen(extraname) + 1);
1548         }
1549
1550         LCONSOLE_WARN("server umount %s complete\n", tmpname);
1551         OBD_FREE(tmpname, tmpname_sz);
1552         EXIT;
1553 }
1554
1555 /** Called only for 'umount -f'
1556  */
1557 static void server_umount_begin(struct super_block *sb)
1558 {
1559         struct lustre_sb_info *lsi = s2lsi(sb);
1560         ENTRY;
1561
1562         CDEBUG(D_MOUNT, "umount -f\n");
1563         /* umount = failover
1564            umount -f = force
1565            no third way to do non-force, non-failover */
1566         lsi->lsi_flags &= ~LSI_UMOUNT_FAILOVER;
1567         EXIT;
1568 }
1569
1570 static int server_statfs(struct dentry *dentry, struct kstatfs *buf)
1571 {
1572         struct super_block *sb = dentry->d_sb;
1573         struct lustre_sb_info *lsi = s2lsi(sb);
1574         struct obd_statfs statfs;
1575         int rc;
1576         ENTRY;
1577
1578         if (lsi->lsi_dt_dev) {
1579                 rc = dt_statfs(NULL, lsi->lsi_dt_dev, &statfs);
1580                 if (rc == 0) {
1581                         statfs_unpack(buf, &statfs);
1582                         buf->f_type = sb->s_magic;
1583                         RETURN(0);
1584                 }
1585         }
1586
1587         /* just return 0 */
1588         buf->f_type = sb->s_magic;
1589         buf->f_bsize = sb->s_blocksize;
1590         buf->f_blocks = 1;
1591         buf->f_bfree = 0;
1592         buf->f_bavail = 0;
1593         buf->f_files = 1;
1594         buf->f_ffree = 0;
1595         buf->f_namelen = NAME_MAX;
1596         RETURN(0);
1597 }
1598
1599 /** The operations we support directly on the superblock:
1600  * mount, umount, and df.
1601  */
1602 static struct super_operations server_ops = {
1603         .put_super      = server_put_super,
1604         .umount_begin   = server_umount_begin, /* umount -f */
1605         .statfs         = server_statfs,
1606 };
1607
1608 /*
1609  * Xattr support for Lustre servers
1610  */
1611 static ssize_t lustre_getxattr(struct dentry *dentry, const char *name,
1612                                 void *buffer, size_t size)
1613 {
1614         if (!selinux_is_enabled())
1615                 return -EOPNOTSUPP;
1616         return -ENODATA;
1617 }
1618
1619 static int lustre_setxattr(struct dentry *dentry, const char *name,
1620                             const void *value, size_t size, int flags)
1621 {
1622         return -EOPNOTSUPP;
1623 }
1624
1625 static ssize_t lustre_listxattr(struct dentry *d_entry, char *name,
1626                                 size_t size)
1627 {
1628         return -EOPNOTSUPP;
1629 }
1630
1631 static const struct inode_operations server_inode_operations = {
1632         .setxattr       = lustre_setxattr,
1633         .getxattr       = lustre_getxattr,
1634         .listxattr      = lustre_listxattr,
1635 };
1636
1637 #define log2(n) ffz(~(n))
1638 #define LUSTRE_SUPER_MAGIC 0x0BD00BD1
1639
1640 static int server_fill_super_common(struct super_block *sb)
1641 {
1642         struct inode *root = NULL;
1643         ENTRY;
1644
1645         CDEBUG(D_MOUNT, "Server sb, dev=%d\n", (int)sb->s_dev);
1646
1647         sb->s_blocksize = 4096;
1648         sb->s_blocksize_bits = log2(sb->s_blocksize);
1649         sb->s_magic = LUSTRE_SUPER_MAGIC;
1650         sb->s_maxbytes = 0; /* we don't allow file IO on server mountpoints */
1651         sb->s_flags |= MS_RDONLY;
1652         sb->s_op = &server_ops;
1653
1654         root = new_inode(sb);
1655         if (!root) {
1656                 CERROR("Can't make root inode\n");
1657                 RETURN(-EIO);
1658         }
1659
1660         /* returns -EIO for every operation */
1661         /* make_bad_inode(root); -- badness - can't umount */
1662         /* apparently we need to be a directory for the mount to finish */
1663         root->i_mode = S_IFDIR;
1664         root->i_op = &server_inode_operations;
1665         sb->s_root = d_make_root(root);
1666         if (!sb->s_root) {
1667                 CERROR("%s: can't make root dentry\n", sb->s_id);
1668                 RETURN(-EIO);
1669         }
1670
1671         RETURN(0);
1672 }
1673
1674 static int osd_start(struct lustre_sb_info *lsi, unsigned long mflags)
1675 {
1676         struct lustre_mount_data *lmd = lsi->lsi_lmd;
1677         struct obd_device        *obd;
1678         struct dt_device_param    p;
1679         char                      flagstr[16];
1680         int                       rc;
1681         ENTRY;
1682
1683         CDEBUG(D_MOUNT,
1684                "Attempting to start %s, type=%s, lsifl=%x, mountfl=%lx\n",
1685                lsi->lsi_svname, lsi->lsi_osd_type, lsi->lsi_flags, mflags);
1686
1687         sprintf(lsi->lsi_osd_obdname, "%s-osd", lsi->lsi_svname);
1688         strcpy(lsi->lsi_osd_uuid, lsi->lsi_osd_obdname);
1689         strcat(lsi->lsi_osd_uuid, "_UUID");
1690         sprintf(flagstr, "%lu:%lu", mflags, (unsigned long) lmd->lmd_flags);
1691
1692         obd = class_name2obd(lsi->lsi_osd_obdname);
1693         if (obd == NULL) {
1694                 rc = lustre_start_simple(lsi->lsi_osd_obdname,
1695                                          lsi->lsi_osd_type,
1696                                          lsi->lsi_osd_uuid, lmd->lmd_dev,
1697                                          flagstr, lsi->lsi_lmd->lmd_opts,
1698                                          lsi->lsi_svname);
1699                 if (rc)
1700                         GOTO(out, rc);
1701                 obd = class_name2obd(lsi->lsi_osd_obdname);
1702                 LASSERT(obd);
1703         } else {
1704                 CDEBUG(D_MOUNT, "%s already started\n", lsi->lsi_osd_obdname);
1705                 /* but continue setup to allow special case of MDT and internal
1706                  * MGT being started separately. */
1707                 if (!((IS_MGS(lsi) && (lsi->lsi_lmd->lmd_flags &
1708                                       LMD_FLG_NOMGS)) ||
1709                      (IS_MDT(lsi) && (lsi->lsi_lmd->lmd_flags &
1710                                       LMD_FLG_NOSVC))))
1711                         RETURN(-EALREADY);
1712         }
1713
1714         rc = obd_connect(NULL, &lsi->lsi_osd_exp,
1715                          obd, &obd->obd_uuid, NULL, NULL);
1716
1717         if (rc) {
1718                 obd->obd_force = 1;
1719                 class_manual_cleanup(obd);
1720                 lsi->lsi_dt_dev = NULL;
1721                 RETURN(rc);
1722         }
1723
1724         LASSERT(obd->obd_lu_dev);
1725         lu_device_get(obd->obd_lu_dev);
1726         lsi->lsi_dt_dev = lu2dt_dev(obd->obd_lu_dev);
1727         LASSERT(lsi->lsi_dt_dev);
1728
1729         /* set disk context for llog usage */
1730         OBD_SET_CTXT_MAGIC(&obd->obd_lvfs_ctxt);
1731         obd->obd_lvfs_ctxt.dt = lsi->lsi_dt_dev;
1732
1733         dt_conf_get(NULL, lsi->lsi_dt_dev, &p);
1734 out:
1735         RETURN(rc);
1736 }
1737
1738 /** Fill in the superblock info for a Lustre server.
1739  * Mount the device with the correct options.
1740  * Read the on-disk config file.
1741  * Start the services.
1742  */
1743 int server_fill_super(struct super_block *sb)
1744 {
1745         struct lustre_sb_info *lsi = s2lsi(sb);
1746         int rc;
1747         ENTRY;
1748
1749         /* to simulate target mount race */
1750         OBD_RACE(OBD_FAIL_TGT_MOUNT_RACE);
1751
1752         rc = lsi_prepare(lsi);
1753         if (rc)
1754                 RETURN(rc);
1755
1756         /* Start low level OSD */
1757         rc = osd_start(lsi, sb->s_flags);
1758         if (rc) {
1759                 CERROR("Unable to start osd on %s: %d\n",
1760                        lsi->lsi_lmd->lmd_dev, rc);
1761                 lustre_put_lsi(sb);
1762                 RETURN(rc);
1763         }
1764
1765         CDEBUG(D_MOUNT, "Found service %s on device %s\n",
1766                lsi->lsi_svname, lsi->lsi_lmd->lmd_dev);
1767
1768         if (class_name2obd(lsi->lsi_svname)) {
1769                 LCONSOLE_ERROR_MSG(0x161, "The target named %s is already "
1770                                    "running. Double-mount may have compromised"
1771                                    " the disk journal.\n",
1772                                    lsi->lsi_svname);
1773                 lustre_put_lsi(sb);
1774                 RETURN(-EALREADY);
1775         }
1776
1777         /* Start MGS before MGC */
1778         if (IS_MGS(lsi) && !(lsi->lsi_lmd->lmd_flags & LMD_FLG_NOMGS)) {
1779                 rc = server_start_mgs(sb);
1780                 if (rc)
1781                         GOTO(out_mnt, rc);
1782         }
1783
1784         /* Start MGC before servers */
1785         rc = lustre_start_mgc(sb);
1786         if (rc)
1787                 GOTO(out_mnt, rc);
1788
1789         /* Set up all obd devices for service */
1790         if (!(lsi->lsi_lmd->lmd_flags & LMD_FLG_NOSVC) &&
1791             (IS_OST(lsi) || IS_MDT(lsi))) {
1792                 rc = server_start_targets(sb);
1793                 if (rc < 0) {
1794                         CERROR("Unable to start targets: %d\n", rc);
1795                         GOTO(out_mnt, rc);
1796                 }
1797                 /* FIXME overmount client here, or can we just start a
1798                  * client log and client_fill_super on this sb?  We
1799                  * need to make sure server_put_super gets called too
1800                  * - ll_put_super calls lustre_common_put_super; check
1801                  * there for LSI_SERVER flag, call s_p_s if so.
1802                  *
1803                  * Probably should start client from new thread so we
1804                  * can return.  Client will not finish until all
1805                  * servers are connected.  Note - MGS-only server does
1806                  * NOT get a client, since there is no lustre fs
1807                  * associated - the MGS is for all lustre fs's */
1808         }
1809
1810         rc = server_fill_super_common(sb);
1811         if (rc)
1812                 GOTO(out_mnt, rc);
1813
1814         RETURN(0);
1815 out_mnt:
1816         /* We jump here in case of failure while starting targets or MGS.
1817          * In this case we can't just put @mnt and have to do real cleanup
1818          * with stoping targets, etc. */
1819         server_put_super(sb);
1820         return rc;
1821 }
1822
1823 /*
1824  * Calculate timeout value for a target.
1825  */
1826 void server_calc_timeout(struct lustre_sb_info *lsi, struct obd_device *obd)
1827 {
1828         struct lustre_mount_data *lmd;
1829         int soft = 0;
1830         int hard = 0;
1831         int factor = 0;
1832         bool has_ir = !!(lsi->lsi_flags & LDD_F_IR_CAPABLE);
1833         int min = OBD_RECOVERY_TIME_MIN;
1834
1835         LASSERT(IS_SERVER(lsi));
1836
1837         lmd = lsi->lsi_lmd;
1838         if (lmd) {
1839                 soft   = lmd->lmd_recovery_time_soft;
1840                 hard   = lmd->lmd_recovery_time_hard;
1841                 has_ir = has_ir && !(lmd->lmd_flags & LMD_FLG_NOIR);
1842                 obd->obd_no_ir = !has_ir;
1843         }
1844
1845         if (soft == 0)
1846                 soft = OBD_RECOVERY_TIME_SOFT;
1847         if (hard == 0)
1848                 hard = OBD_RECOVERY_TIME_HARD;
1849
1850         /* target may have ir_factor configured. */
1851         factor = OBD_IR_FACTOR_DEFAULT;
1852         if (obd->obd_recovery_ir_factor)
1853                 factor = obd->obd_recovery_ir_factor;
1854
1855         if (has_ir) {
1856                 int new_soft = soft;
1857                 int new_hard = hard;
1858
1859                 /* adjust timeout value by imperative recovery */
1860
1861                 new_soft = (soft * factor) / OBD_IR_FACTOR_MAX;
1862                 new_hard = (hard * factor) / OBD_IR_FACTOR_MAX;
1863
1864                 /* make sure the timeout is not too short */
1865                 new_soft = max(min, new_soft);
1866                 new_hard = max(new_soft, new_hard);
1867
1868                 LCONSOLE_INFO("%s: Imperative Recovery enabled, recovery "
1869                               "window shrunk from %d-%d down to %d-%d\n",
1870                               obd->obd_name, soft, hard, new_soft, new_hard);
1871
1872                 soft = new_soft;
1873                 hard = new_hard;
1874         }
1875
1876         /* we're done */
1877         obd->obd_recovery_timeout   = max(obd->obd_recovery_timeout, soft);
1878         obd->obd_recovery_time_hard = hard;
1879         obd->obd_recovery_ir_factor = factor;
1880 }