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