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