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