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