Whamcloud - gitweb
LU-8637 obdclass: LWP callback hold export reference
[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_SPINLOCK(lwp_register_list_lock);
393
394 static void lustre_put_lwp_item(struct lwp_register_item *lri)
395 {
396         if (atomic_dec_and_test(&lri->lri_ref)) {
397                 LASSERT(list_empty(&lri->lri_list));
398
399                 if (*lri->lri_exp != NULL)
400                         class_export_put(*lri->lri_exp);
401                 OBD_FREE_PTR(lri);
402         }
403 }
404
405 int lustre_register_lwp_item(const char *lwpname, struct obd_export **exp,
406                              register_lwp_cb cb_func, void *cb_data)
407 {
408         struct obd_device        *lwp;
409         struct lwp_register_item *lri;
410         bool cb = false;
411         ENTRY;
412
413         LASSERTF(strlen(lwpname) < MTI_NAME_MAXLEN, "lwpname is too long %s\n",
414                  lwpname);
415         LASSERT(exp != NULL && *exp == NULL);
416
417         OBD_ALLOC_PTR(lri);
418         if (lri == NULL)
419                 RETURN(-ENOMEM);
420
421         lwp = class_name2obd(lwpname);
422         if (lwp != NULL && lwp->obd_set_up == 1) {
423                 struct obd_uuid *uuid;
424
425                 OBD_ALLOC_PTR(uuid);
426                 if (uuid == NULL) {
427                         OBD_FREE_PTR(lri);
428                         RETURN(-ENOMEM);
429                 }
430                 memcpy(uuid->uuid, lwpname, strlen(lwpname));
431                 *exp = cfs_hash_lookup(lwp->obd_uuid_hash, uuid);
432                 OBD_FREE_PTR(uuid);
433         }
434
435         memcpy(lri->lri_name, lwpname, strlen(lwpname));
436         lri->lri_exp = exp;
437         lri->lri_cb_func = cb_func;
438         lri->lri_cb_data = cb_data;
439         INIT_LIST_HEAD(&lri->lri_list);
440         /*
441          * Initialize the lri_ref at 2, one will be released before
442          * current function returned via lustre_put_lwp_item(), the
443          * other will be released in lustre_deregister_lwp_item().
444          */
445         atomic_set(&lri->lri_ref, 2);
446
447         spin_lock(&lwp_register_list_lock);
448         list_add(&lri->lri_list, &lwp_register_list);
449         if (*exp != NULL)
450                 cb = true;
451         spin_unlock(&lwp_register_list_lock);
452
453         if (cb && cb_func != NULL)
454                 cb_func(cb_data);
455         lustre_put_lwp_item(lri);
456
457         RETURN(0);
458 }
459 EXPORT_SYMBOL(lustre_register_lwp_item);
460
461 void lustre_deregister_lwp_item(struct obd_export **exp)
462 {
463         struct lwp_register_item *lri;
464
465         spin_lock(&lwp_register_list_lock);
466         list_for_each_entry(lri, &lwp_register_list, lri_list) {
467                 if (exp == lri->lri_exp) {
468                         list_del_init(&lri->lri_list);
469                         spin_unlock(&lwp_register_list_lock);
470
471                         lustre_put_lwp_item(lri);
472                         return;
473                 }
474         }
475         spin_unlock(&lwp_register_list_lock);
476 }
477 EXPORT_SYMBOL(lustre_deregister_lwp_item);
478
479 struct obd_export *lustre_find_lwp_by_index(const char *dev, __u32 idx)
480 {
481         struct lustre_mount_info *lmi;
482         struct lustre_sb_info    *lsi;
483         struct obd_device        *lwp;
484         struct obd_export        *exp = NULL;
485         char                      fsname[16];
486         char                      lwp_name[24];
487         int                       rc;
488
489         lmi = server_get_mount(dev);
490         if (lmi == NULL)
491                 return NULL;
492
493         lsi = s2lsi(lmi->lmi_sb);
494         rc = server_name2fsname(lsi->lsi_svname, fsname, NULL);
495         if (rc != 0) {
496                 CERROR("%s: failed to get fsname: rc = %d\n",
497                        lsi->lsi_svname, rc);
498                 goto err_lmi;
499         }
500
501         snprintf(lwp_name, sizeof(lwp_name), "%s-MDT%04x", fsname, idx);
502         spin_lock(&lsi->lsi_lwp_lock);
503         list_for_each_entry(lwp, &lsi->lsi_lwp_list, obd_lwp_list) {
504                 char *ptr = strstr(lwp->obd_name, lwp_name);
505
506                 if (ptr != NULL && lwp->obd_lwp_export != NULL) {
507                         exp = class_export_get(lwp->obd_lwp_export);
508                         break;
509                 }
510         }
511         spin_unlock(&lsi->lsi_lwp_lock);
512
513 err_lmi:
514         server_put_mount(dev, false);
515
516         return exp;
517 }
518 EXPORT_SYMBOL(lustre_find_lwp_by_index);
519
520 void lustre_notify_lwp_list(struct obd_export *exp)
521 {
522         struct lwp_register_item *lri;
523         LASSERT(exp != NULL);
524
525 again:
526         spin_lock(&lwp_register_list_lock);
527         list_for_each_entry(lri, &lwp_register_list, lri_list) {
528                 if (strcmp(exp->exp_obd->obd_name, lri->lri_name))
529                         continue;
530                 if (*lri->lri_exp != NULL)
531                         continue;
532                 *lri->lri_exp = class_export_get(exp);
533                 if (lri->lri_cb_func == NULL)
534                         continue;
535                 atomic_inc(&lri->lri_ref);
536                 spin_unlock(&lwp_register_list_lock);
537
538                 lri->lri_cb_func(lri->lri_cb_data);
539                 lustre_put_lwp_item(lri);
540
541                 /* Others may have changed the list after we unlock, we have
542                  * to rescan the list from the beginning. Usually, the list
543                  * 'lwp_register_list' is very short, and there is 'guard'
544                  * lri::lri_exp that will prevent the callback to be done
545                  * repeatedly. So rescanning the list has no problem. */
546                 goto again;
547         }
548         spin_unlock(&lwp_register_list_lock);
549 }
550 EXPORT_SYMBOL(lustre_notify_lwp_list);
551
552 static int lustre_lwp_connect(struct obd_device *lwp)
553 {
554         struct lu_env            env;
555         struct lu_context        session_ctx;
556         struct obd_export       *exp;
557         struct obd_uuid         *uuid = NULL;
558         struct obd_connect_data *data = NULL;
559         int                      rc;
560         ENTRY;
561
562         /* log has been fully processed, let clients connect */
563         rc = lu_env_init(&env, lwp->obd_lu_dev->ld_type->ldt_ctx_tags);
564         if (rc != 0)
565                 RETURN(rc);
566
567         lu_context_init(&session_ctx, LCT_SERVER_SESSION);
568         session_ctx.lc_thread = NULL;
569         lu_context_enter(&session_ctx);
570         env.le_ses = &session_ctx;
571
572         OBD_ALLOC_PTR(data);
573         if (data == NULL)
574                 GOTO(out, rc = -ENOMEM);
575
576         data->ocd_connect_flags = OBD_CONNECT_VERSION | OBD_CONNECT_INDEX;
577         data->ocd_version = LUSTRE_VERSION_CODE;
578         data->ocd_connect_flags |= OBD_CONNECT_MDS_MDS | OBD_CONNECT_FID |
579                 OBD_CONNECT_AT | OBD_CONNECT_LRU_RESIZE |
580                 OBD_CONNECT_FULL20 | OBD_CONNECT_LVB_TYPE |
581                 OBD_CONNECT_LIGHTWEIGHT | OBD_CONNECT_LFSCK |
582                 OBD_CONNECT_BULK_MBITS;
583         OBD_ALLOC_PTR(uuid);
584         if (uuid == NULL)
585                 GOTO(out, rc = -ENOMEM);
586
587         if (strlen(lwp->obd_name) > sizeof(uuid->uuid)) {
588                 CERROR("%s: Too long lwp name %s, max_size is %d\n",
589                        lwp->obd_name, lwp->obd_name, (int)sizeof(uuid->uuid));
590                 GOTO(out, rc = -EINVAL);
591         }
592
593         /* Use lwp name as the uuid, so we find the export by lwp name later */
594         memcpy(uuid->uuid, lwp->obd_name, strlen(lwp->obd_name));
595         rc = obd_connect(&env, &exp, lwp, uuid, data, NULL);
596         if (rc != 0) {
597                 CERROR("%s: connect failed: rc = %d\n", lwp->obd_name, rc);
598         } else {
599                 if (unlikely(lwp->obd_lwp_export != NULL))
600                         class_export_put(lwp->obd_lwp_export);
601                 lwp->obd_lwp_export = class_export_get(exp);
602         }
603
604         GOTO(out, rc);
605
606 out:
607         if (data != NULL)
608                 OBD_FREE_PTR(data);
609         if (uuid != NULL)
610                 OBD_FREE_PTR(uuid);
611
612         lu_env_fini(&env);
613         lu_context_exit(&session_ctx);
614         lu_context_fini(&session_ctx);
615
616         return rc;
617 }
618
619 /**
620  * lwp is used by slaves (Non-MDT0 targets) to manage the connection to MDT0,
621  * or from the OSTx to MDTy.
622  **/
623 static int lustre_lwp_setup(struct lustre_cfg *lcfg, struct lustre_sb_info *lsi,
624                             __u32 idx)
625 {
626         struct obd_device       *obd;
627         char                    *lwpname = NULL;
628         char                    *lwpuuid = NULL;
629         int                      rc;
630         ENTRY;
631
632         rc = class_add_uuid(lustre_cfg_string(lcfg, 1),
633                             lcfg->lcfg_nid);
634         if (rc != 0) {
635                 CERROR("%s: Can't add uuid: rc =%d\n", lsi->lsi_svname, rc);
636                 RETURN(rc);
637         }
638
639         OBD_ALLOC(lwpname, MTI_NAME_MAXLEN);
640         if (lwpname == NULL)
641                 GOTO(out, rc = -ENOMEM);
642
643         rc = tgt_name2lwp_name(lsi->lsi_svname, lwpname, MTI_NAME_MAXLEN, idx);
644         if (rc != 0) {
645                 CERROR("%s: failed to generate lwp name: rc = %d\n",
646                        lsi->lsi_svname, rc);
647                 GOTO(out, rc);
648         }
649
650         OBD_ALLOC(lwpuuid, MTI_NAME_MAXLEN);
651         if (lwpuuid == NULL)
652                 GOTO(out, rc = -ENOMEM);
653
654         sprintf(lwpuuid, "%s_UUID", lwpname);
655         rc = lustre_start_simple(lwpname, LUSTRE_LWP_NAME,
656                                  lwpuuid, lustre_cfg_string(lcfg, 1),
657                                  NULL, NULL, NULL);
658         if (rc) {
659                 CERROR("%s: setup up failed: rc %d\n", lwpname, rc);
660                 GOTO(out, rc);
661         }
662
663         obd = class_name2obd(lwpname);
664         LASSERT(obd != NULL);
665
666         rc = lustre_lwp_connect(obd);
667         if (rc == 0) {
668                 obd->u.cli.cl_max_mds_easize = MAX_MD_SIZE;
669                 spin_lock(&lsi->lsi_lwp_lock);
670                 list_add_tail(&obd->obd_lwp_list, &lsi->lsi_lwp_list);
671                 spin_unlock(&lsi->lsi_lwp_lock);
672         } else {
673                 CERROR("%s: connect failed: rc = %d\n", lwpname, rc);
674         }
675
676         GOTO(out, rc);
677
678 out:
679         if (lwpname != NULL)
680                 OBD_FREE(lwpname, MTI_NAME_MAXLEN);
681         if (lwpuuid != NULL)
682                 OBD_FREE(lwpuuid, MTI_NAME_MAXLEN);
683
684         return rc;
685 }
686
687 /* the caller is responsible for memory free */
688 static struct obd_device *lustre_find_lwp(struct lustre_sb_info *lsi,
689                                           char **lwpname, __u32 idx)
690 {
691         struct obd_device       *lwp;
692         int                      rc = 0;
693         ENTRY;
694
695         LASSERT(lwpname != NULL);
696         LASSERT(IS_OST(lsi) || IS_MDT(lsi));
697
698         OBD_ALLOC(*lwpname, MTI_NAME_MAXLEN);
699         if (*lwpname == NULL)
700                 RETURN(ERR_PTR(-ENOMEM));
701
702         rc = tgt_name2lwp_name(lsi->lsi_svname, *lwpname, MTI_NAME_MAXLEN, idx);
703         if (rc != 0) {
704                 CERROR("%s: failed to generate lwp name: rc = %d\n",
705                        lsi->lsi_svname, rc);
706                 GOTO(out, rc = -EINVAL);
707         }
708
709         lwp = class_name2obd(*lwpname);
710
711 out:
712         if (rc != 0) {
713                 if (*lwpname != NULL) {
714                         OBD_FREE(*lwpname, MTI_NAME_MAXLEN);
715                         *lwpname = NULL;
716                 }
717                 lwp = ERR_PTR(rc);
718         }
719
720         RETURN(lwp != NULL ? lwp : ERR_PTR(-ENOENT));
721 }
722
723 static int lustre_lwp_add_conn(struct lustre_cfg *cfg,
724                                struct lustre_sb_info *lsi, __u32 idx)
725 {
726         struct lustre_cfg_bufs *bufs = NULL;
727         struct lustre_cfg      *lcfg = NULL;
728         char                   *lwpname = NULL;
729         struct obd_device      *lwp;
730         int                     rc;
731         ENTRY;
732
733         lwp = lustre_find_lwp(lsi, &lwpname, idx);
734         if (IS_ERR(lwp)) {
735                 CERROR("%s: can't find lwp device.\n", lsi->lsi_svname);
736                 GOTO(out, rc = PTR_ERR(lwp));
737         }
738         LASSERT(lwpname != NULL);
739
740         OBD_ALLOC_PTR(bufs);
741         if (bufs == NULL)
742                 GOTO(out, rc = -ENOMEM);
743
744         lustre_cfg_bufs_reset(bufs, lwpname);
745         lustre_cfg_bufs_set_string(bufs, 1,
746                                    lustre_cfg_string(cfg, 1));
747
748         lcfg = lustre_cfg_new(LCFG_ADD_CONN, bufs);
749         if (lcfg == NULL)
750                 GOTO(out_cfg, rc = -ENOMEM);
751         rc = class_add_conn(lwp, lcfg);
752         if (rc)
753                 CERROR("%s: can't add conn: rc = %d\n", lwpname, rc);
754
755         if (lcfg != NULL)
756                 lustre_cfg_free(lcfg);
757 out_cfg:
758         if (bufs != NULL)
759                 OBD_FREE_PTR(bufs);
760 out:
761         if (lwpname != NULL)
762                 OBD_FREE(lwpname, MTI_NAME_MAXLEN);
763         RETURN(rc);
764 }
765
766 /**
767  * Retrieve MDT nids from the client log, then start the lwp device.
768  * there are only two scenarios which would include mdt nid.
769  * 1.
770  * marker   5 (flags=0x01, v2.1.54.0) lustre-MDTyyyy  'add mdc' xxx-
771  * add_uuid  nid=192.168.122.162@tcp(0x20000c0a87aa2)  0:  1:192.168.122.162@tcp
772  * attach    0:lustre-MDTyyyy-mdc  1:mdc  2:lustre-clilmv_UUID
773  * setup     0:lustre-MDTyyyy-mdc  1:lustre-MDTyyyy_UUID  2:192.168.122.162@tcp
774  * add_uuid  nid=192.168.172.1@tcp(0x20000c0a8ac01)  0:  1:192.168.172.1@tcp
775  * add_conn  0:lustre-MDTyyyy-mdc  1:192.168.172.1@tcp
776  * modify_mdc_tgts add 0:lustre-clilmv  1:lustre-MDTyyyy_UUID xxxx
777  * marker   5 (flags=0x02, v2.1.54.0) lustre-MDTyyyy  'add mdc' xxxx-
778  * 2.
779  * marker   7 (flags=0x01, v2.1.54.0) lustre-MDTyyyy  'add failnid' xxxx-
780  * add_uuid  nid=192.168.122.2@tcp(0x20000c0a87a02)  0:  1:192.168.122.2@tcp
781  * add_conn  0:lustre-MDTyyyy-mdc  1:192.168.122.2@tcp
782  * marker   7 (flags=0x02, v2.1.54.0) lustre-MDTyyyy  'add failnid' xxxx-
783  **/
784 static int client_lwp_config_process(const struct lu_env *env,
785                                      struct llog_handle *handle,
786                                      struct llog_rec_hdr *rec, void *data)
787 {
788         struct config_llog_instance *cfg = data;
789         int                          cfg_len = rec->lrh_len;
790         char                        *cfg_buf = (char *) (rec + 1);
791         struct lustre_cfg           *lcfg = NULL;
792         struct lustre_sb_info       *lsi;
793         int                          rc = 0, swab = 0;
794         ENTRY;
795
796         if (rec->lrh_type != OBD_CFG_REC) {
797                 CERROR("Unknown llog record type %#x encountered\n",
798                        rec->lrh_type);
799                 RETURN(-EINVAL);
800         }
801
802         if (cfg->cfg_sb == NULL)
803                 GOTO(out, rc = -EINVAL);
804         lsi = s2lsi(cfg->cfg_sb);
805
806         lcfg = (struct lustre_cfg *)cfg_buf;
807         if (lcfg->lcfg_version == __swab32(LUSTRE_CFG_VERSION)) {
808                 lustre_swab_lustre_cfg(lcfg);
809                 swab = 1;
810         }
811
812         rc = lustre_cfg_sanity_check(cfg_buf, cfg_len);
813         if (rc)
814                 GOTO(out, rc);
815
816         switch (lcfg->lcfg_command) {
817         case LCFG_MARKER: {
818                 struct cfg_marker *marker = lustre_cfg_buf(lcfg, 1);
819
820                 lustre_swab_cfg_marker(marker, swab,
821                                        LUSTRE_CFG_BUFLEN(lcfg, 1));
822                 if (marker->cm_flags & CM_SKIP ||
823                     marker->cm_flags & CM_EXCLUDE)
824                         GOTO(out, rc = 0);
825
826                 if (!tgt_is_mdt(marker->cm_tgtname, &cfg->cfg_lwp_idx))
827                         GOTO(out, rc = 0);
828
829                 if (IS_MDT(lsi) && cfg->cfg_lwp_idx != 0)
830                         GOTO(out, rc = 0);
831
832                 if (!strncmp(marker->cm_comment, "add mdc", 7) ||
833                     !strncmp(marker->cm_comment, "add failnid", 11)) {
834                         if (marker->cm_flags & CM_START) {
835                                 cfg->cfg_flags = CFG_F_MARKER;
836                                 /* This hack is to differentiate the
837                                  * ADD_UUID is come from "add mdc" record
838                                  * or from "add failnid" record. */
839                                 if (!strncmp(marker->cm_comment,
840                                              "add failnid", 11))
841                                         cfg->cfg_flags |= CFG_F_SKIP;
842                         } else if (marker->cm_flags & CM_END) {
843                                 cfg->cfg_flags = 0;
844                         }
845                 }
846                 break;
847         }
848         case LCFG_ADD_UUID: {
849                 if (cfg->cfg_flags == CFG_F_MARKER) {
850                         rc = lustre_lwp_setup(lcfg, lsi, cfg->cfg_lwp_idx);
851                         /* XXX: process only the first nid as
852                          * we don't need another instance of lwp */
853                         cfg->cfg_flags |= CFG_F_SKIP;
854                 } else if (cfg->cfg_flags == (CFG_F_MARKER | CFG_F_SKIP)) {
855                         rc = class_add_uuid(lustre_cfg_string(lcfg, 1),
856                                             lcfg->lcfg_nid);
857                         if (rc)
858                                 CERROR("%s: Fail to add uuid, rc:%d\n",
859                                        lsi->lsi_svname, rc);
860                 }
861                 break;
862         }
863         case LCFG_ADD_CONN: {
864                 char *devname = lustre_cfg_string(lcfg, 0);
865                 char *ptr;
866                 __u32 idx     = 0;
867
868                 if (!is_mdc_device(devname))
869                         break;
870
871                 ptr = strrchr(devname, '-');
872                 if (ptr == NULL)
873                         break;
874
875                 *ptr = 0;
876                 if (!tgt_is_mdt(devname, &idx)) {
877                         *ptr = '-';
878                         break;
879                 }
880                 *ptr = '-';
881
882                 if (IS_MDT(lsi) && idx != 0)
883                         break;
884
885                 rc = lustre_lwp_add_conn(lcfg, lsi, idx);
886                 break;
887         }
888         default:
889                 break;
890         }
891 out:
892         RETURN(rc);
893 }
894
895 static int lustre_disconnect_lwp(struct super_block *sb)
896 {
897         struct lustre_sb_info           *lsi     = s2lsi(sb);
898         struct obd_device               *lwp;
899         char                            *logname = NULL;
900         struct lustre_cfg_bufs          *bufs    = NULL;
901         struct config_llog_instance     *cfg     = NULL;
902         int                              rc      = 0;
903         int                              rc1     = 0;
904         ENTRY;
905
906         if (likely(lsi->lsi_lwp_started)) {
907                 OBD_ALLOC(logname, MTI_NAME_MAXLEN);
908                 if (logname == NULL)
909                         RETURN(-ENOMEM);
910
911                 rc = server_name2fsname(lsi->lsi_svname, logname, NULL);
912                 if (rc != 0) {
913                         CERROR("%s: failed to get fsname from svname: "
914                                "rc = %d\n", lsi->lsi_svname, rc);
915                         GOTO(out, rc = -EINVAL);
916                 }
917
918                 strcat(logname, "-client");
919                 OBD_ALLOC_PTR(cfg);
920                 if (cfg == NULL)
921                         GOTO(out, rc = -ENOMEM);
922
923                 /* end log first */
924                 cfg->cfg_instance = sb;
925                 rc = lustre_end_log(sb, logname, cfg);
926                 if (rc != 0 && rc != -ENOENT)
927                         GOTO(out, rc);
928
929                 lsi->lsi_lwp_started = 0;
930         }
931
932         OBD_ALLOC_PTR(bufs);
933         if (bufs == NULL)
934                 GOTO(out, rc = -ENOMEM);
935
936         list_for_each_entry(lwp, &lsi->lsi_lwp_list, obd_lwp_list) {
937                 struct lustre_cfg *lcfg;
938
939                 if (likely(lwp->obd_lwp_export != NULL)) {
940                         class_export_put(lwp->obd_lwp_export);
941                         lwp->obd_lwp_export = NULL;
942                 }
943
944                 lustre_cfg_bufs_reset(bufs, lwp->obd_name);
945                 lustre_cfg_bufs_set_string(bufs, 1, NULL);
946                 lcfg = lustre_cfg_new(LCFG_CLEANUP, bufs);
947                 if (lcfg == NULL)
948                         GOTO(out, rc = -ENOMEM);
949
950                 /* Disconnect import first. NULL is passed for the '@env',
951                  * since it will not be used. */
952                 rc = lwp->obd_lu_dev->ld_ops->ldo_process_config(NULL,
953                                                         lwp->obd_lu_dev, lcfg);
954                 lustre_cfg_free(lcfg);
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         lnet_process_id_t 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         rc = lustre_process_log(sb, lsi->lsi_svname, &cfg);
1354         if (rc) {
1355                 CERROR("failed to start server %s: %d\n",
1356                        lsi->lsi_svname, rc);
1357                 /* Do NOT call server_deregister_mount() here. This makes it
1358                  * impossible to find mount later in cleanup time and leaves
1359                  * @lsi and othder stuff leaked. -umka */
1360                 GOTO(out_mgc, rc);
1361         }
1362
1363         obd = class_name2obd(lsi->lsi_svname);
1364         if (!obd) {
1365                 CERROR("no server named %s was started\n", lsi->lsi_svname);
1366                 GOTO(out_mgc, rc = -ENXIO);
1367         }
1368
1369         if (IS_OST(lsi) || IS_MDT(lsi)) {
1370                 rc = lustre_start_lwp(sb);
1371                 if (rc) {
1372                         CERROR("%s: failed to start LWP: %d\n",
1373                                lsi->lsi_svname, rc);
1374                         GOTO(out_mgc, rc);
1375                 }
1376         }
1377
1378         server_notify_target(sb, obd);
1379
1380         /* calculate recovery timeout, do it after lustre_process_log */
1381         server_calc_timeout(lsi, obd);
1382
1383         /* log has been fully processed */
1384         obd_notify(obd, NULL, OBD_NOTIFY_CONFIG, (void *)CONFIG_LOG);
1385
1386         /* log has been fully processed, let clients connect */
1387         dev = obd->obd_lu_dev;
1388         if (dev && dev->ld_ops->ldo_prepare) {
1389                 struct lu_env env;
1390
1391                 rc = lu_env_init(&env, dev->ld_type->ldt_ctx_tags);
1392                 if (rc == 0) {
1393                         struct lu_context  session_ctx;
1394
1395                         lu_context_init(&session_ctx, LCT_SERVER_SESSION);
1396                         session_ctx.lc_thread = NULL;
1397                         lu_context_enter(&session_ctx);
1398                         env.le_ses = &session_ctx;
1399
1400                         rc = dev->ld_ops->ldo_prepare(&env, NULL, dev);
1401
1402                         lu_env_fini(&env);
1403                         lu_context_exit(&session_ctx);
1404                         lu_context_fini(&session_ctx);
1405                 }
1406         }
1407
1408         /* abort recovery only on the complete stack:
1409          * many devices can be involved */
1410         if ((lsi->lsi_lmd->lmd_flags & LMD_FLG_ABORT_RECOV) &&
1411             (OBP(obd, iocontrol))) {
1412                 obd_iocontrol(OBD_IOC_ABORT_RECOVERY, obd->obd_self_export, 0,
1413                               NULL, NULL);
1414         }
1415
1416 out_mgc:
1417         /* Release the mgc fs for others to use */
1418         server_mgc_clear_fs(&mgc_env, lsi->lsi_mgc);
1419 out_env:
1420         lu_env_fini(&mgc_env);
1421 out_stop_service:
1422         if (rc != 0)
1423                 server_stop_servers(lsi->lsi_flags);
1424
1425         RETURN(rc);
1426 }
1427
1428 static int lsi_prepare(struct lustre_sb_info *lsi)
1429 {
1430         const char *osd_type;
1431         const char *fstype;
1432         __u32 index;
1433         int rc;
1434         ENTRY;
1435
1436         LASSERT(lsi);
1437         LASSERT(lsi->lsi_lmd);
1438
1439         /* The server name is given as a mount line option */
1440         if (lsi->lsi_lmd->lmd_profile == NULL) {
1441                 LCONSOLE_ERROR("Can't determine server name\n");
1442                 RETURN(-EINVAL);
1443         }
1444
1445         /* Determine osd type */
1446         if (lsi->lsi_lmd->lmd_osd_type == NULL) {
1447                 osd_type = LUSTRE_OSD_LDISKFS_NAME;
1448                 fstype = "ldiskfs";
1449         } else {
1450                 osd_type = lsi->lsi_lmd->lmd_osd_type;
1451                 fstype = lsi->lsi_lmd->lmd_osd_type;
1452         }
1453
1454         if (strlen(lsi->lsi_lmd->lmd_profile) >= sizeof(lsi->lsi_svname) ||
1455             strlen(osd_type) >= sizeof(lsi->lsi_osd_type) ||
1456             strlen(fstype) >= sizeof(lsi->lsi_fstype))
1457                 RETURN(-ENAMETOOLONG);
1458
1459         strlcpy(lsi->lsi_svname, lsi->lsi_lmd->lmd_profile,
1460                 sizeof(lsi->lsi_svname));
1461         strlcpy(lsi->lsi_osd_type, osd_type, sizeof(lsi->lsi_osd_type));
1462         /* XXX: a temp. solution for components using ldiskfs
1463          *      to be removed in one of the subsequent patches */
1464         strlcpy(lsi->lsi_fstype, fstype, sizeof(lsi->lsi_fstype));
1465
1466         /* Determine server type */
1467         rc = server_name2index(lsi->lsi_svname, &index, NULL);
1468         if (rc < 0) {
1469                 if (lsi->lsi_lmd->lmd_flags & LMD_FLG_MGS) {
1470                         /* Assume we're a bare MGS */
1471                         rc = 0;
1472                         lsi->lsi_lmd->lmd_flags |= LMD_FLG_NOSVC;
1473                 } else {
1474                         LCONSOLE_ERROR("Can't determine server type of '%s'\n",
1475                                        lsi->lsi_svname);
1476                         RETURN(rc);
1477                 }
1478         }
1479         lsi->lsi_flags |= rc;
1480
1481         /* Add mount line flags that used to be in ldd:
1482          * writeconf, mgs, anything else?
1483          */
1484         lsi->lsi_flags |= (lsi->lsi_lmd->lmd_flags & LMD_FLG_WRITECONF) ?
1485                 LDD_F_WRITECONF : 0;
1486         lsi->lsi_flags |= (lsi->lsi_lmd->lmd_flags & LMD_FLG_VIRGIN) ?
1487                 LDD_F_VIRGIN : 0;
1488         lsi->lsi_flags |= (lsi->lsi_lmd->lmd_flags & LMD_FLG_UPDATE) ?
1489                 LDD_F_UPDATE : 0;
1490         lsi->lsi_flags |= (lsi->lsi_lmd->lmd_flags & LMD_FLG_MGS) ?
1491                 LDD_F_SV_TYPE_MGS : 0;
1492         lsi->lsi_flags |= (lsi->lsi_lmd->lmd_flags & LMD_FLG_NO_PRIMNODE) ?
1493                 LDD_F_NO_PRIMNODE : 0;
1494
1495         RETURN(0);
1496 }
1497
1498 /*************** server mount ******************/
1499
1500 /** Start the shutdown of servers at umount.
1501  */
1502 static void server_put_super(struct super_block *sb)
1503 {
1504         struct lustre_sb_info *lsi = s2lsi(sb);
1505         struct obd_device     *obd;
1506         char *tmpname, *extraname = NULL;
1507         int tmpname_sz;
1508         int lsiflags = lsi->lsi_flags;
1509         ENTRY;
1510
1511         LASSERT(IS_SERVER(lsi));
1512
1513         tmpname_sz = strlen(lsi->lsi_svname) + 1;
1514         OBD_ALLOC(tmpname, tmpname_sz);
1515         memcpy(tmpname, lsi->lsi_svname, tmpname_sz);
1516         CDEBUG(D_MOUNT, "server put_super %s\n", tmpname);
1517         if (IS_MDT(lsi) && (lsi->lsi_lmd->lmd_flags & LMD_FLG_NOSVC))
1518                 snprintf(tmpname, tmpname_sz, "MGS");
1519
1520         /* disconnect the lwp first to drain off the inflight request */
1521         if (IS_OST(lsi) || IS_MDT(lsi)) {
1522                 int     rc;
1523
1524                 rc = lustre_disconnect_lwp(sb);
1525                 if (rc != 0 && rc != -ETIMEDOUT &&
1526                     rc != -ENOTCONN && rc != -ESHUTDOWN)
1527                         CWARN("%s: failed to disconnect lwp: rc= %d\n",
1528                               tmpname, rc);
1529         }
1530
1531         /* Stop the target */
1532         if (!(lsi->lsi_lmd->lmd_flags & LMD_FLG_NOSVC) &&
1533             (IS_MDT(lsi) || IS_OST(lsi))) {
1534                 struct lustre_profile *lprof = NULL;
1535
1536                 /* tell the mgc to drop the config log */
1537                 lustre_end_log(sb, lsi->lsi_svname, NULL);
1538
1539                 /* COMPAT_146 - profile may get deleted in mgc_cleanup.
1540                    If there are any setup/cleanup errors, save the lov
1541                    name for safety cleanup later. */
1542                 lprof = class_get_profile(lsi->lsi_svname);
1543                 if (lprof != NULL) {
1544                         if (lprof->lp_dt != NULL) {
1545                                 OBD_ALLOC(extraname, strlen(lprof->lp_dt) + 1);
1546                                 strncpy(extraname, lprof->lp_dt,
1547                                         strlen(lprof->lp_dt) + 1);
1548                         }
1549                         class_put_profile(lprof);
1550                 }
1551
1552                 obd = class_name2obd(lsi->lsi_svname);
1553                 if (obd) {
1554                         CDEBUG(D_MOUNT, "stopping %s\n", obd->obd_name);
1555                         if (lsiflags & LSI_UMOUNT_FAILOVER)
1556                                 obd->obd_fail = 1;
1557                         /* We can't seem to give an error return code
1558                          * to .put_super, so we better make sure we clean up! */
1559                         obd->obd_force = 1;
1560                         class_manual_cleanup(obd);
1561                 } else {
1562                         CERROR("no obd %s\n", lsi->lsi_svname);
1563                         server_deregister_mount(lsi->lsi_svname);
1564                 }
1565         }
1566
1567         /* If they wanted the mgs to stop separately from the mdt, they
1568            should have put it on a different device. */
1569         if (IS_MGS(lsi)) {
1570                 /* if MDS start with --nomgs, don't stop MGS then */
1571                 if (!(lsi->lsi_lmd->lmd_flags & LMD_FLG_NOMGS))
1572                         server_stop_mgs(sb);
1573         }
1574
1575         if (IS_OST(lsi) || IS_MDT(lsi)) {
1576                 if (lustre_stop_lwp(sb) < 0)
1577                         CERROR("%s: failed to stop lwp!\n", tmpname);
1578         }
1579
1580         /* Clean the mgc and sb */
1581         lustre_common_put_super(sb);
1582
1583         /* wait till all in-progress cleanups are done
1584          * specifically we're interested in ofd cleanup
1585          * as it pins OSS */
1586         obd_zombie_barrier();
1587
1588         /* Stop the servers (MDS, OSS) if no longer needed.  We must wait
1589            until the target is really gone so that our type refcount check
1590            is right. */
1591         server_stop_servers(lsiflags);
1592
1593         /* In case of startup or cleanup err, stop related obds */
1594         if (extraname) {
1595                 obd = class_name2obd(extraname);
1596                 if (obd) {
1597                         CWARN("Cleaning orphaned obd %s\n", extraname);
1598                         obd->obd_force = 1;
1599                         class_manual_cleanup(obd);
1600                 }
1601                 OBD_FREE(extraname, strlen(extraname) + 1);
1602         }
1603
1604         LCONSOLE_WARN("server umount %s complete\n", tmpname);
1605         OBD_FREE(tmpname, tmpname_sz);
1606         EXIT;
1607 }
1608
1609 /** Called only for 'umount -f'
1610  */
1611 static void server_umount_begin(struct super_block *sb)
1612 {
1613         struct lustre_sb_info *lsi = s2lsi(sb);
1614         ENTRY;
1615
1616         CDEBUG(D_MOUNT, "umount -f\n");
1617         /* umount = failover
1618            umount -f = force
1619            no third way to do non-force, non-failover */
1620         lsi->lsi_flags &= ~LSI_UMOUNT_FAILOVER;
1621         EXIT;
1622 }
1623
1624 static int server_statfs(struct dentry *dentry, struct kstatfs *buf)
1625 {
1626         struct super_block *sb = dentry->d_sb;
1627         struct lustre_sb_info *lsi = s2lsi(sb);
1628         struct obd_statfs statfs;
1629         int rc;
1630         ENTRY;
1631
1632         if (lsi->lsi_dt_dev) {
1633                 rc = dt_statfs(NULL, lsi->lsi_dt_dev, &statfs);
1634                 if (rc == 0) {
1635                         statfs_unpack(buf, &statfs);
1636                         buf->f_type = sb->s_magic;
1637                         RETURN(0);
1638                 }
1639         }
1640
1641         /* just return 0 */
1642         buf->f_type = sb->s_magic;
1643         buf->f_bsize = sb->s_blocksize;
1644         buf->f_blocks = 1;
1645         buf->f_bfree = 0;
1646         buf->f_bavail = 0;
1647         buf->f_files = 1;
1648         buf->f_ffree = 0;
1649         buf->f_namelen = NAME_MAX;
1650         RETURN(0);
1651 }
1652
1653 /** The operations we support directly on the superblock:
1654  * mount, umount, and df.
1655  */
1656 static struct super_operations server_ops = {
1657         .put_super      = server_put_super,
1658         .umount_begin   = server_umount_begin, /* umount -f */
1659         .statfs         = server_statfs,
1660 };
1661
1662 /*
1663  * Xattr support for Lustre servers
1664  */
1665 static ssize_t lustre_getxattr(struct dentry *dentry, const char *name,
1666                                 void *buffer, size_t size)
1667 {
1668         if (!selinux_is_enabled())
1669                 return -EOPNOTSUPP;
1670         return -ENODATA;
1671 }
1672
1673 static int lustre_setxattr(struct dentry *dentry, const char *name,
1674                             const void *value, size_t size, int flags)
1675 {
1676         return -EOPNOTSUPP;
1677 }
1678
1679 static ssize_t lustre_listxattr(struct dentry *d_entry, char *name,
1680                                 size_t size)
1681 {
1682         return -EOPNOTSUPP;
1683 }
1684
1685 static const struct inode_operations server_inode_operations = {
1686         .setxattr       = lustre_setxattr,
1687         .getxattr       = lustre_getxattr,
1688         .listxattr      = lustre_listxattr,
1689 };
1690
1691 #define log2(n) ffz(~(n))
1692 #define LUSTRE_SUPER_MAGIC 0x0BD00BD1
1693
1694 static int server_fill_super_common(struct super_block *sb)
1695 {
1696         struct inode *root = NULL;
1697         ENTRY;
1698
1699         CDEBUG(D_MOUNT, "Server sb, dev=%d\n", (int)sb->s_dev);
1700
1701         sb->s_blocksize = 4096;
1702         sb->s_blocksize_bits = log2(sb->s_blocksize);
1703         sb->s_magic = LUSTRE_SUPER_MAGIC;
1704         sb->s_maxbytes = 0; /* we don't allow file IO on server mountpoints */
1705         sb->s_flags |= MS_RDONLY;
1706         sb->s_op = &server_ops;
1707
1708         root = new_inode(sb);
1709         if (!root) {
1710                 CERROR("Can't make root inode\n");
1711                 RETURN(-EIO);
1712         }
1713
1714         /* returns -EIO for every operation */
1715         /* make_bad_inode(root); -- badness - can't umount */
1716         /* apparently we need to be a directory for the mount to finish */
1717         root->i_mode = S_IFDIR;
1718         root->i_op = &server_inode_operations;
1719         sb->s_root = d_make_root(root);
1720         if (!sb->s_root) {
1721                 CERROR("%s: can't make root dentry\n", sb->s_id);
1722                 RETURN(-EIO);
1723         }
1724
1725         RETURN(0);
1726 }
1727
1728 static int osd_start(struct lustre_sb_info *lsi, unsigned long mflags)
1729 {
1730         struct lustre_mount_data *lmd = lsi->lsi_lmd;
1731         struct obd_device        *obd;
1732         struct dt_device_param    p;
1733         char                      flagstr[16];
1734         int                       rc;
1735         ENTRY;
1736
1737         CDEBUG(D_MOUNT,
1738                "Attempting to start %s, type=%s, lsifl=%x, mountfl=%lx\n",
1739                lsi->lsi_svname, lsi->lsi_osd_type, lsi->lsi_flags, mflags);
1740
1741         sprintf(lsi->lsi_osd_obdname, "%s-osd", lsi->lsi_svname);
1742         strcpy(lsi->lsi_osd_uuid, lsi->lsi_osd_obdname);
1743         strcat(lsi->lsi_osd_uuid, "_UUID");
1744         sprintf(flagstr, "%lu:%lu", mflags, (unsigned long) lmd->lmd_flags);
1745
1746         obd = class_name2obd(lsi->lsi_osd_obdname);
1747         if (obd == NULL) {
1748                 rc = lustre_start_simple(lsi->lsi_osd_obdname,
1749                                          lsi->lsi_osd_type,
1750                                          lsi->lsi_osd_uuid, lmd->lmd_dev,
1751                                          flagstr, lsi->lsi_lmd->lmd_opts,
1752                                          lsi->lsi_svname);
1753                 if (rc)
1754                         GOTO(out, rc);
1755                 obd = class_name2obd(lsi->lsi_osd_obdname);
1756                 LASSERT(obd);
1757         } else {
1758                 CDEBUG(D_MOUNT, "%s already started\n", lsi->lsi_osd_obdname);
1759                 /* but continue setup to allow special case of MDT and internal
1760                  * MGT being started separately. */
1761                 if (!((IS_MGS(lsi) && (lsi->lsi_lmd->lmd_flags &
1762                                       LMD_FLG_NOMGS)) ||
1763                      (IS_MDT(lsi) && (lsi->lsi_lmd->lmd_flags &
1764                                       LMD_FLG_NOSVC))))
1765                         RETURN(-EALREADY);
1766         }
1767
1768         rc = obd_connect(NULL, &lsi->lsi_osd_exp,
1769                          obd, &obd->obd_uuid, NULL, NULL);
1770
1771         if (rc) {
1772                 obd->obd_force = 1;
1773                 class_manual_cleanup(obd);
1774                 lsi->lsi_dt_dev = NULL;
1775                 RETURN(rc);
1776         }
1777
1778         LASSERT(obd->obd_lu_dev);
1779         lu_device_get(obd->obd_lu_dev);
1780         lsi->lsi_dt_dev = lu2dt_dev(obd->obd_lu_dev);
1781         LASSERT(lsi->lsi_dt_dev);
1782
1783         /* set disk context for llog usage */
1784         OBD_SET_CTXT_MAGIC(&obd->obd_lvfs_ctxt);
1785         obd->obd_lvfs_ctxt.dt = lsi->lsi_dt_dev;
1786
1787         dt_conf_get(NULL, lsi->lsi_dt_dev, &p);
1788 out:
1789         RETURN(rc);
1790 }
1791
1792 /** Fill in the superblock info for a Lustre server.
1793  * Mount the device with the correct options.
1794  * Read the on-disk config file.
1795  * Start the services.
1796  */
1797 int server_fill_super(struct super_block *sb)
1798 {
1799         struct lustre_sb_info *lsi = s2lsi(sb);
1800         int rc;
1801         ENTRY;
1802
1803         /* to simulate target mount race */
1804         OBD_RACE(OBD_FAIL_TGT_MOUNT_RACE);
1805
1806         rc = lsi_prepare(lsi);
1807         if (rc)
1808                 RETURN(rc);
1809
1810         /* Start low level OSD */
1811         rc = osd_start(lsi, sb->s_flags);
1812         if (rc) {
1813                 CERROR("Unable to start osd on %s: %d\n",
1814                        lsi->lsi_lmd->lmd_dev, rc);
1815                 lustre_put_lsi(sb);
1816                 RETURN(rc);
1817         }
1818
1819         CDEBUG(D_MOUNT, "Found service %s on device %s\n",
1820                lsi->lsi_svname, lsi->lsi_lmd->lmd_dev);
1821
1822         if (class_name2obd(lsi->lsi_svname)) {
1823                 LCONSOLE_ERROR_MSG(0x161, "The target named %s is already "
1824                                    "running. Double-mount may have compromised"
1825                                    " the disk journal.\n",
1826                                    lsi->lsi_svname);
1827                 lustre_put_lsi(sb);
1828                 RETURN(-EALREADY);
1829         }
1830
1831         /* Start MGS before MGC */
1832         if (IS_MGS(lsi) && !(lsi->lsi_lmd->lmd_flags & LMD_FLG_NOMGS)) {
1833                 rc = server_start_mgs(sb);
1834                 if (rc)
1835                         GOTO(out_mnt, rc);
1836         }
1837
1838         /* Start MGC before servers */
1839         rc = lustre_start_mgc(sb);
1840         if (rc)
1841                 GOTO(out_mnt, rc);
1842
1843         /* Set up all obd devices for service */
1844         if (!(lsi->lsi_lmd->lmd_flags & LMD_FLG_NOSVC) &&
1845             (IS_OST(lsi) || IS_MDT(lsi))) {
1846                 rc = server_start_targets(sb);
1847                 if (rc < 0) {
1848                         CERROR("Unable to start targets: %d\n", rc);
1849                         GOTO(out_mnt, rc);
1850                 }
1851                 /* FIXME overmount client here, or can we just start a
1852                  * client log and client_fill_super on this sb?  We
1853                  * need to make sure server_put_super gets called too
1854                  * - ll_put_super calls lustre_common_put_super; check
1855                  * there for LSI_SERVER flag, call s_p_s if so.
1856                  *
1857                  * Probably should start client from new thread so we
1858                  * can return.  Client will not finish until all
1859                  * servers are connected.  Note - MGS-only server does
1860                  * NOT get a client, since there is no lustre fs
1861                  * associated - the MGS is for all lustre fs's */
1862         }
1863
1864         rc = server_fill_super_common(sb);
1865         if (rc)
1866                 GOTO(out_mnt, rc);
1867
1868         RETURN(0);
1869 out_mnt:
1870         /* We jump here in case of failure while starting targets or MGS.
1871          * In this case we can't just put @mnt and have to do real cleanup
1872          * with stoping targets, etc. */
1873         server_put_super(sb);
1874         return rc;
1875 }
1876
1877 /*
1878  * Calculate timeout value for a target.
1879  */
1880 void server_calc_timeout(struct lustre_sb_info *lsi, struct obd_device *obd)
1881 {
1882         struct lustre_mount_data *lmd;
1883         int soft = 0;
1884         int hard = 0;
1885         int factor = 0;
1886         bool has_ir = !!(lsi->lsi_flags & LDD_F_IR_CAPABLE);
1887         int min = OBD_RECOVERY_TIME_MIN;
1888
1889         LASSERT(IS_SERVER(lsi));
1890
1891         lmd = lsi->lsi_lmd;
1892         if (lmd) {
1893                 soft   = lmd->lmd_recovery_time_soft;
1894                 hard   = lmd->lmd_recovery_time_hard;
1895                 has_ir = has_ir && !(lmd->lmd_flags & LMD_FLG_NOIR);
1896                 obd->obd_no_ir = !has_ir;
1897         }
1898
1899         if (soft == 0)
1900                 soft = OBD_RECOVERY_TIME_SOFT;
1901         if (hard == 0)
1902                 hard = OBD_RECOVERY_TIME_HARD;
1903
1904         /* target may have ir_factor configured. */
1905         factor = OBD_IR_FACTOR_DEFAULT;
1906         if (obd->obd_recovery_ir_factor)
1907                 factor = obd->obd_recovery_ir_factor;
1908
1909         if (has_ir) {
1910                 int new_soft = soft;
1911                 int new_hard = hard;
1912
1913                 /* adjust timeout value by imperative recovery */
1914
1915                 new_soft = (soft * factor) / OBD_IR_FACTOR_MAX;
1916                 new_hard = (hard * factor) / OBD_IR_FACTOR_MAX;
1917
1918                 /* make sure the timeout is not too short */
1919                 new_soft = max(min, new_soft);
1920                 new_hard = max(new_soft, new_hard);
1921
1922                 LCONSOLE_INFO("%s: Imperative Recovery enabled, recovery "
1923                               "window shrunk from %d-%d down to %d-%d\n",
1924                               obd->obd_name, soft, hard, new_soft, new_hard);
1925
1926                 soft = new_soft;
1927                 hard = new_hard;
1928         }
1929
1930         /* we're done */
1931         obd->obd_recovery_timeout   = max(obd->obd_recovery_timeout, soft);
1932         obd->obd_recovery_time_hard = hard;
1933         obd->obd_recovery_ir_factor = factor;
1934 }