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