Whamcloud - gitweb
LU-5991 obd: fix mount error handing
[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, 2017, 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         int tried = 0;
1191         ENTRY;
1192
1193         LASSERT(mgc);
1194
1195         if (!IS_SERVER(lsi))
1196                 RETURN(-EINVAL);
1197
1198         OBD_ALLOC_PTR(mti);
1199         if (!mti)
1200                 RETURN(-ENOMEM);
1201
1202         rc = server_lsi2mti(lsi, mti);
1203         if (rc)
1204                 GOTO(out, rc);
1205
1206         CDEBUG(D_MOUNT, "Registration %s, fs=%s, %s, index=%04x, flags=%#x\n",
1207                mti->mti_svname, mti->mti_fsname,
1208                libcfs_nid2str(mti->mti_nids[0]), mti->mti_stripe_index,
1209                mti->mti_flags);
1210
1211         /* if write_conf is true, the registration must succeed */
1212         writeconf = !!(lsi->lsi_flags & (LDD_F_NEED_INDEX | LDD_F_UPDATE));
1213         mti->mti_flags |= LDD_F_OPC_REG;
1214
1215 again:
1216         /* Register the target */
1217         /* FIXME use mgc_process_config instead */
1218         rc = obd_set_info_async(NULL, mgc->u.cli.cl_mgc_mgsexp,
1219                                 sizeof(KEY_REGISTER_TARGET),
1220                                 KEY_REGISTER_TARGET,
1221                                 sizeof(*mti), mti, NULL);
1222         if (rc) {
1223                 if (mti->mti_flags & LDD_F_ERROR) {
1224                         LCONSOLE_ERROR_MSG(0x160,
1225                                 "%s: the MGS refuses to allow this server "
1226                                 "to start: rc = %d. Please see messages on "
1227                                 "the MGS.\n", lsi->lsi_svname, rc);
1228                 } else if (writeconf) {
1229                         if ((rc == -ESHUTDOWN || rc == -EIO) && ++tried < 5) {
1230                                 /* The connection with MGS is not established.
1231                                  * Try again after 2 seconds. Interruptable. */
1232                                 set_current_state(TASK_INTERRUPTIBLE);
1233                                 schedule_timeout(
1234                                         msecs_to_jiffies(MSEC_PER_SEC) * 2);
1235                                 set_current_state(TASK_RUNNING);
1236                                 if (!signal_pending(current))
1237                                         goto again;
1238                         }
1239
1240                         LCONSOLE_ERROR_MSG(0x15f,
1241                                 "%s: cannot register this server with the MGS: "
1242                                 "rc = %d. Is the MGS running?\n",
1243                                 lsi->lsi_svname, rc);
1244                 } else {
1245                         CDEBUG(D_HA, "%s: error registering with the MGS: "
1246                                "rc = %d (not fatal)\n", lsi->lsi_svname, rc);
1247                         /* reset the error code for non-fatal error. */
1248                         rc = 0;
1249                 }
1250                 GOTO(out, rc);
1251         }
1252
1253 out:
1254         if (mti)
1255                 OBD_FREE_PTR(mti);
1256         RETURN(rc);
1257 }
1258
1259 /**
1260  * Notify the MGS that this target is ready.
1261  * Used by IR - if the MGS receives this message, it will notify clients.
1262  */
1263 static int server_notify_target(struct super_block *sb, struct obd_device *obd)
1264 {
1265         struct lustre_sb_info *lsi = s2lsi(sb);
1266         struct obd_device *mgc = lsi->lsi_mgc;
1267         struct mgs_target_info *mti = NULL;
1268         int rc;
1269         ENTRY;
1270
1271         LASSERT(mgc);
1272
1273         if (!(IS_SERVER(lsi)))
1274                 RETURN(-EINVAL);
1275
1276         OBD_ALLOC_PTR(mti);
1277         if (!mti)
1278                 RETURN(-ENOMEM);
1279         rc = server_lsi2mti(lsi, mti);
1280         if (rc)
1281                 GOTO(out, rc);
1282
1283         mti->mti_instance = obd->u.obt.obt_instance;
1284         mti->mti_flags |= LDD_F_OPC_READY;
1285
1286         /* FIXME use mgc_process_config instead */
1287         rc = obd_set_info_async(NULL, mgc->u.cli.cl_mgc_mgsexp,
1288                                 sizeof(KEY_REGISTER_TARGET),
1289                                 KEY_REGISTER_TARGET,
1290                                 sizeof(*mti), mti, NULL);
1291
1292         /* Imperative recovery: if the mgs informs us to use IR? */
1293         if (!rc && !(mti->mti_flags & LDD_F_ERROR) &&
1294             (mti->mti_flags & LDD_F_IR_CAPABLE))
1295                 lsi->lsi_flags |= LDD_F_IR_CAPABLE;
1296
1297 out:
1298         if (mti)
1299                 OBD_FREE_PTR(mti);
1300         RETURN(rc);
1301
1302 }
1303
1304 /** Start server targets: MDTs and OSTs
1305  */
1306 static int server_start_targets(struct super_block *sb)
1307 {
1308         struct obd_device *obd;
1309         struct lustre_sb_info *lsi = s2lsi(sb);
1310         struct config_llog_instance cfg;
1311         struct lu_env mgc_env;
1312         struct lu_device *dev;
1313         int rc;
1314         ENTRY;
1315
1316         CDEBUG(D_MOUNT, "starting target %s\n", lsi->lsi_svname);
1317
1318         if (IS_MDT(lsi)) {
1319                 /* make sure the MDS is started */
1320                 mutex_lock(&server_start_lock);
1321                 obd = class_name2obd(LUSTRE_MDS_OBDNAME);
1322                 if (!obd) {
1323                         rc = lustre_start_simple(LUSTRE_MDS_OBDNAME,
1324                                                  LUSTRE_MDS_NAME,
1325                                                  LUSTRE_MDS_OBDNAME"_uuid",
1326                                                  NULL, NULL, NULL, NULL);
1327                         if (rc) {
1328                                 mutex_unlock(&server_start_lock);
1329                                 CERROR("failed to start MDS: %d\n", rc);
1330                                 RETURN(rc);
1331                         }
1332                 }
1333                 mutex_unlock(&server_start_lock);
1334         }
1335
1336         /* If we're an OST, make sure the global OSS is running */
1337         if (IS_OST(lsi)) {
1338                 /* make sure OSS is started */
1339                 mutex_lock(&server_start_lock);
1340                 obd = class_name2obd(LUSTRE_OSS_OBDNAME);
1341                 if (!obd) {
1342                         rc = lustre_start_simple(LUSTRE_OSS_OBDNAME,
1343                                                  LUSTRE_OSS_NAME,
1344                                                  LUSTRE_OSS_OBDNAME"_uuid",
1345                                                  NULL, NULL, NULL, NULL);
1346                         if (rc) {
1347                                 mutex_unlock(&server_start_lock);
1348                                 CERROR("failed to start OSS: %d\n", rc);
1349                                 RETURN(rc);
1350                         }
1351                 }
1352                 mutex_unlock(&server_start_lock);
1353         }
1354
1355         rc = lu_env_init(&mgc_env, LCT_MG_THREAD);
1356         if (rc != 0)
1357                 GOTO(out_stop_service, rc);
1358
1359         /* Set the mgc fs to our server disk.  This allows the MGC to
1360          * read and write configs locally, in case it can't talk to the MGS. */
1361         rc = server_mgc_set_fs(&mgc_env, lsi->lsi_mgc, sb);
1362         if (rc)
1363                 GOTO(out_env, rc);
1364
1365         /* Register with MGS */
1366         rc = server_register_target(lsi);
1367         if (rc)
1368                 GOTO(out_mgc, rc);
1369
1370         /* Let the target look up the mount using the target's name
1371            (we can't pass the sb or mnt through class_process_config.) */
1372         rc = server_register_mount(lsi->lsi_svname, sb);
1373         if (rc)
1374                 GOTO(out_mgc, rc);
1375
1376         /* Start targets using the llog named for the target */
1377         memset(&cfg, 0, sizeof(cfg));
1378         cfg.cfg_callback = class_config_llog_handler;
1379         cfg.cfg_sub_clds = CONFIG_SUB_SERVER;
1380         rc = lustre_process_log(sb, lsi->lsi_svname, &cfg);
1381         if (rc) {
1382                 CERROR("failed to start server %s: %d\n",
1383                        lsi->lsi_svname, rc);
1384                 /* Do NOT call server_deregister_mount() here. This makes it
1385                  * impossible to find mount later in cleanup time and leaves
1386                  * @lsi and othder stuff leaked. -umka */
1387                 GOTO(out_mgc, rc);
1388         }
1389
1390         obd = class_name2obd(lsi->lsi_svname);
1391         if (!obd) {
1392                 CERROR("no server named %s was started\n", lsi->lsi_svname);
1393                 GOTO(out_mgc, rc = -ENXIO);
1394         }
1395
1396         if (IS_OST(lsi) || IS_MDT(lsi)) {
1397                 rc = lustre_start_lwp(sb);
1398                 if (rc) {
1399                         CERROR("%s: failed to start LWP: %d\n",
1400                                lsi->lsi_svname, rc);
1401                         GOTO(out_mgc, rc);
1402                 }
1403         }
1404
1405         server_notify_target(sb, obd);
1406
1407         /* calculate recovery timeout, do it after lustre_process_log */
1408         server_calc_timeout(lsi, obd);
1409
1410         /* log has been fully processed, let clients connect */
1411         dev = obd->obd_lu_dev;
1412         if (dev && dev->ld_ops->ldo_prepare) {
1413                 struct lu_env env;
1414
1415                 rc = lu_env_init(&env, dev->ld_type->ldt_ctx_tags);
1416                 if (rc == 0) {
1417                         struct lu_context  session_ctx;
1418
1419                         lu_context_init(&session_ctx, LCT_SERVER_SESSION);
1420                         session_ctx.lc_thread = NULL;
1421                         lu_context_enter(&session_ctx);
1422                         env.le_ses = &session_ctx;
1423
1424                         rc = dev->ld_ops->ldo_prepare(&env, NULL, dev);
1425
1426                         lu_env_fini(&env);
1427                         lu_context_exit(&session_ctx);
1428                         lu_context_fini(&session_ctx);
1429                 }
1430         }
1431
1432         /* abort recovery only on the complete stack:
1433          * many devices can be involved */
1434         if ((lsi->lsi_lmd->lmd_flags & LMD_FLG_ABORT_RECOV) &&
1435             (OBP(obd, iocontrol))) {
1436                 obd_iocontrol(OBD_IOC_ABORT_RECOVERY, obd->obd_self_export, 0,
1437                               NULL, NULL);
1438         }
1439
1440 out_mgc:
1441         /* Release the mgc fs for others to use */
1442         server_mgc_clear_fs(&mgc_env, lsi->lsi_mgc);
1443 out_env:
1444         lu_env_fini(&mgc_env);
1445 out_stop_service:
1446         if (rc != 0)
1447                 server_stop_servers(lsi->lsi_flags);
1448
1449         RETURN(rc);
1450 }
1451
1452 static int lsi_prepare(struct lustre_sb_info *lsi)
1453 {
1454         const char *osd_type;
1455         const char *fstype;
1456         __u32 index;
1457         int rc;
1458         ENTRY;
1459
1460         LASSERT(lsi);
1461         LASSERT(lsi->lsi_lmd);
1462
1463         /* The server name is given as a mount line option */
1464         if (lsi->lsi_lmd->lmd_profile == NULL) {
1465                 LCONSOLE_ERROR("Can't determine server name\n");
1466                 RETURN(-EINVAL);
1467         }
1468
1469         /* Determine osd type */
1470         if (lsi->lsi_lmd->lmd_osd_type == NULL) {
1471                 osd_type = LUSTRE_OSD_LDISKFS_NAME;
1472                 fstype = "ldiskfs";
1473         } else {
1474                 osd_type = lsi->lsi_lmd->lmd_osd_type;
1475                 fstype = lsi->lsi_lmd->lmd_osd_type;
1476         }
1477
1478         if (strlen(lsi->lsi_lmd->lmd_profile) >= sizeof(lsi->lsi_svname) ||
1479             strlen(osd_type) >= sizeof(lsi->lsi_osd_type) ||
1480             strlen(fstype) >= sizeof(lsi->lsi_fstype))
1481                 RETURN(-ENAMETOOLONG);
1482
1483         strlcpy(lsi->lsi_svname, lsi->lsi_lmd->lmd_profile,
1484                 sizeof(lsi->lsi_svname));
1485         strlcpy(lsi->lsi_osd_type, osd_type, sizeof(lsi->lsi_osd_type));
1486         /* XXX: a temp. solution for components using ldiskfs
1487          *      to be removed in one of the subsequent patches */
1488         strlcpy(lsi->lsi_fstype, fstype, sizeof(lsi->lsi_fstype));
1489
1490         /* Determine server type */
1491         rc = server_name2index(lsi->lsi_svname, &index, NULL);
1492         if (rc < 0) {
1493                 if (lsi->lsi_lmd->lmd_flags & LMD_FLG_MGS) {
1494                         /* Assume we're a bare MGS */
1495                         rc = 0;
1496                         lsi->lsi_lmd->lmd_flags |= LMD_FLG_NOSVC;
1497                 } else {
1498                         LCONSOLE_ERROR("Can't determine server type of '%s'\n",
1499                                        lsi->lsi_svname);
1500                         RETURN(rc);
1501                 }
1502         }
1503         lsi->lsi_flags |= rc;
1504
1505         /* Add mount line flags that used to be in ldd:
1506          * writeconf, mgs, anything else?
1507          */
1508         lsi->lsi_flags |= (lsi->lsi_lmd->lmd_flags & LMD_FLG_WRITECONF) ?
1509                 LDD_F_WRITECONF : 0;
1510         lsi->lsi_flags |= (lsi->lsi_lmd->lmd_flags & LMD_FLG_VIRGIN) ?
1511                 LDD_F_VIRGIN : 0;
1512         lsi->lsi_flags |= (lsi->lsi_lmd->lmd_flags & LMD_FLG_UPDATE) ?
1513                 LDD_F_UPDATE : 0;
1514         lsi->lsi_flags |= (lsi->lsi_lmd->lmd_flags & LMD_FLG_MGS) ?
1515                 LDD_F_SV_TYPE_MGS : 0;
1516         lsi->lsi_flags |= (lsi->lsi_lmd->lmd_flags & LMD_FLG_NO_PRIMNODE) ?
1517                 LDD_F_NO_PRIMNODE : 0;
1518
1519         RETURN(0);
1520 }
1521
1522 /*************** server mount ******************/
1523
1524 /** Start the shutdown of servers at umount.
1525  */
1526 static void server_put_super(struct super_block *sb)
1527 {
1528         struct lustre_sb_info *lsi = s2lsi(sb);
1529         struct obd_device     *obd;
1530         char *tmpname, *extraname = NULL;
1531         int tmpname_sz;
1532         int lsiflags = lsi->lsi_flags;
1533         ENTRY;
1534
1535         LASSERT(IS_SERVER(lsi));
1536
1537         tmpname_sz = strlen(lsi->lsi_svname) + 1;
1538         OBD_ALLOC(tmpname, tmpname_sz);
1539         memcpy(tmpname, lsi->lsi_svname, tmpname_sz);
1540         CDEBUG(D_MOUNT, "server put_super %s\n", tmpname);
1541         if (IS_MDT(lsi) && (lsi->lsi_lmd->lmd_flags & LMD_FLG_NOSVC))
1542                 snprintf(tmpname, tmpname_sz, "MGS");
1543
1544         /* disconnect the lwp first to drain off the inflight request */
1545         if (IS_OST(lsi) || IS_MDT(lsi)) {
1546                 int     rc;
1547
1548                 rc = lustre_disconnect_lwp(sb);
1549                 if (rc != 0 && rc != -ETIMEDOUT &&
1550                     rc != -ENOTCONN && rc != -ESHUTDOWN)
1551                         CWARN("%s: failed to disconnect lwp: rc= %d\n",
1552                               tmpname, rc);
1553         }
1554
1555         /* Stop the target */
1556         if (!(lsi->lsi_lmd->lmd_flags & LMD_FLG_NOSVC) &&
1557             (IS_MDT(lsi) || IS_OST(lsi))) {
1558                 struct lustre_profile *lprof = NULL;
1559
1560                 /* tell the mgc to drop the config log */
1561                 lustre_end_log(sb, lsi->lsi_svname, NULL);
1562
1563                 /* COMPAT_146 - profile may get deleted in mgc_cleanup.
1564                    If there are any setup/cleanup errors, save the lov
1565                    name for safety cleanup later. */
1566                 lprof = class_get_profile(lsi->lsi_svname);
1567                 if (lprof != NULL) {
1568                         if (lprof->lp_dt != NULL) {
1569                                 OBD_ALLOC(extraname, strlen(lprof->lp_dt) + 1);
1570                                 strncpy(extraname, lprof->lp_dt,
1571                                         strlen(lprof->lp_dt) + 1);
1572                         }
1573                         class_put_profile(lprof);
1574                 }
1575
1576                 obd = class_name2obd(lsi->lsi_svname);
1577                 if (obd) {
1578                         CDEBUG(D_MOUNT, "stopping %s\n", obd->obd_name);
1579                         if (lsiflags & LSI_UMOUNT_FAILOVER)
1580                                 obd->obd_fail = 1;
1581                         /* We can't seem to give an error return code
1582                          * to .put_super, so we better make sure we clean up! */
1583                         obd->obd_force = 1;
1584                         class_manual_cleanup(obd);
1585                 } else {
1586                         CERROR("no obd %s\n", lsi->lsi_svname);
1587                         server_deregister_mount(lsi->lsi_svname);
1588                 }
1589         }
1590
1591         /* If they wanted the mgs to stop separately from the mdt, they
1592            should have put it on a different device. */
1593         if (IS_MGS(lsi)) {
1594                 /* if MDS start with --nomgs, don't stop MGS then */
1595                 if (!(lsi->lsi_lmd->lmd_flags & LMD_FLG_NOMGS))
1596                         server_stop_mgs(sb);
1597         }
1598
1599         if (IS_OST(lsi) || IS_MDT(lsi)) {
1600                 if (lustre_stop_lwp(sb) < 0)
1601                         CERROR("%s: failed to stop lwp!\n", tmpname);
1602         }
1603
1604         /* Clean the mgc and sb */
1605         lustre_common_put_super(sb);
1606
1607         /* wait till all in-progress cleanups are done
1608          * specifically we're interested in ofd cleanup
1609          * as it pins OSS */
1610         obd_zombie_barrier();
1611
1612         /* Stop the servers (MDS, OSS) if no longer needed.  We must wait
1613            until the target is really gone so that our type refcount check
1614            is right. */
1615         server_stop_servers(lsiflags);
1616
1617         /* In case of startup or cleanup err, stop related obds */
1618         if (extraname) {
1619                 obd = class_name2obd(extraname);
1620                 if (obd) {
1621                         CWARN("Cleaning orphaned obd %s\n", extraname);
1622                         obd->obd_force = 1;
1623                         class_manual_cleanup(obd);
1624                 }
1625                 OBD_FREE(extraname, strlen(extraname) + 1);
1626         }
1627
1628         LCONSOLE_WARN("server umount %s complete\n", tmpname);
1629         OBD_FREE(tmpname, tmpname_sz);
1630         EXIT;
1631 }
1632
1633 /** Called only for 'umount -f'
1634  */
1635 static void server_umount_begin(struct super_block *sb)
1636 {
1637         struct lustre_sb_info *lsi = s2lsi(sb);
1638         ENTRY;
1639
1640         CDEBUG(D_MOUNT, "umount -f\n");
1641         /* umount = failover
1642            umount -f = force
1643            no third way to do non-force, non-failover */
1644         lsi->lsi_flags &= ~LSI_UMOUNT_FAILOVER;
1645         EXIT;
1646 }
1647
1648 static int server_statfs(struct dentry *dentry, struct kstatfs *buf)
1649 {
1650         struct super_block *sb = dentry->d_sb;
1651         struct lustre_sb_info *lsi = s2lsi(sb);
1652         struct obd_statfs statfs;
1653         int rc;
1654         ENTRY;
1655
1656         if (lsi->lsi_dt_dev) {
1657                 rc = dt_statfs(NULL, lsi->lsi_dt_dev, &statfs);
1658                 if (rc == 0) {
1659                         statfs_unpack(buf, &statfs);
1660                         buf->f_type = sb->s_magic;
1661                         RETURN(0);
1662                 }
1663         }
1664
1665         /* just return 0 */
1666         buf->f_type = sb->s_magic;
1667         buf->f_bsize = sb->s_blocksize;
1668         buf->f_blocks = 1;
1669         buf->f_bfree = 0;
1670         buf->f_bavail = 0;
1671         buf->f_files = 1;
1672         buf->f_ffree = 0;
1673         buf->f_namelen = NAME_MAX;
1674         RETURN(0);
1675 }
1676
1677 #ifdef HAVE_SUPEROPS_USE_DENTRY
1678 int server_show_options(struct seq_file *seq, struct dentry *dentry)
1679 #else
1680 int server_show_options(struct seq_file *seq, struct vfsmount *vfs)
1681 #endif
1682 {
1683         struct lustre_sb_info *lsi;
1684         struct lustre_mount_data *lmd;
1685
1686 #ifdef HAVE_SUPEROPS_USE_DENTRY
1687         LASSERT(seq != NULL && dentry != NULL);
1688         lsi = s2lsi(dentry->d_sb);
1689 #else
1690         LASSERT(seq != NULL && vfs != NULL);
1691         lsi = s2lsi(vfs->mnt_sb);
1692 #endif
1693
1694         lmd = lsi->lsi_lmd;
1695         seq_printf(seq, ",svname=%s", lmd->lmd_profile);
1696
1697         if  (lmd->lmd_flags & LMD_FLG_ABORT_RECOV)
1698                 seq_puts(seq, ",abort_recov");
1699
1700         if (lmd->lmd_flags & LMD_FLG_NOIR)
1701                 seq_puts(seq, ",noir");
1702
1703         if (lmd->lmd_flags & LMD_FLG_NOSVC)
1704                 seq_puts(seq, ",nosvc");
1705
1706         if (lmd->lmd_flags & LMD_FLG_NOMGS)
1707                 seq_puts(seq, ",nomgs");
1708
1709         if (lmd->lmd_flags & LMD_FLG_NOSCRUB)
1710                 seq_puts(seq, ",noscrub");
1711         if (lmd->lmd_flags & LMD_FLG_SKIP_LFSCK)
1712                 seq_puts(seq, ",skip_lfsck");
1713
1714         if (lmd->lmd_flags & LMD_FLG_DEV_RDONLY)
1715                 seq_puts(seq, ",rdonly_dev");
1716
1717         if (lmd->lmd_flags & LMD_FLG_MGS)
1718                 seq_puts(seq, ",mgs");
1719
1720         if (lmd->lmd_mgs != NULL)
1721                 seq_printf(seq, ",mgsnode=%s", lmd->lmd_mgs);
1722
1723         if (lmd->lmd_osd_type != NULL)
1724                 seq_printf(seq, ",osd=%s", lmd->lmd_osd_type);
1725
1726         if (lmd->lmd_opts != NULL) {
1727                 seq_putc(seq, ',');
1728                 seq_puts(seq, lmd->lmd_opts);
1729         }
1730
1731         RETURN(0);
1732 }
1733
1734 /** The operations we support directly on the superblock:
1735  * mount, umount, and df.
1736  */
1737 static struct super_operations server_ops = {
1738         .put_super      = server_put_super,
1739         .umount_begin   = server_umount_begin, /* umount -f */
1740         .statfs         = server_statfs,
1741         .show_options   = server_show_options,
1742 };
1743
1744 /*
1745  * Xattr support for Lustre servers
1746  */
1747 #ifdef HAVE_IOP_XATTR
1748 static ssize_t lustre_getxattr(struct dentry *dentry, const char *name,
1749                                 void *buffer, size_t size)
1750 {
1751         if (!selinux_is_enabled())
1752                 return -EOPNOTSUPP;
1753         return -ENODATA;
1754 }
1755
1756 static int lustre_setxattr(struct dentry *dentry, const char *name,
1757                             const void *value, size_t size, int flags)
1758 {
1759         return -EOPNOTSUPP;
1760 }
1761 #endif
1762
1763 static ssize_t lustre_listxattr(struct dentry *d_entry, char *name,
1764                                 size_t size)
1765 {
1766         return -EOPNOTSUPP;
1767 }
1768
1769 static const struct inode_operations server_inode_operations = {
1770 #ifdef HAVE_IOP_XATTR
1771         .setxattr       = lustre_setxattr,
1772         .getxattr       = lustre_getxattr,
1773 #endif
1774         .listxattr      = lustre_listxattr,
1775 };
1776
1777 #define log2(n) ffz(~(n))
1778 #define LUSTRE_SUPER_MAGIC 0x0BD00BD1
1779
1780 static int server_fill_super_common(struct super_block *sb)
1781 {
1782         struct inode *root = NULL;
1783         ENTRY;
1784
1785         CDEBUG(D_MOUNT, "Server sb, dev=%d\n", (int)sb->s_dev);
1786
1787         sb->s_blocksize = 4096;
1788         sb->s_blocksize_bits = log2(sb->s_blocksize);
1789         sb->s_magic = LUSTRE_SUPER_MAGIC;
1790         sb->s_maxbytes = 0; /* we don't allow file IO on server mountpoints */
1791         sb->s_flags |= MS_RDONLY;
1792         sb->s_op = &server_ops;
1793
1794         root = new_inode(sb);
1795         if (!root) {
1796                 CERROR("Can't make root inode\n");
1797                 RETURN(-EIO);
1798         }
1799
1800         /* returns -EIO for every operation */
1801         /* make_bad_inode(root); -- badness - can't umount */
1802         /* apparently we need to be a directory for the mount to finish */
1803         root->i_mode = S_IFDIR;
1804         root->i_op = &server_inode_operations;
1805         sb->s_root = d_make_root(root);
1806         if (!sb->s_root) {
1807                 CERROR("%s: can't make root dentry\n", sb->s_id);
1808                 RETURN(-EIO);
1809         }
1810
1811         RETURN(0);
1812 }
1813
1814 static int osd_start(struct lustre_sb_info *lsi, unsigned long mflags)
1815 {
1816         struct lustre_mount_data *lmd = lsi->lsi_lmd;
1817         struct obd_device        *obd;
1818         struct dt_device_param    p;
1819         char                      flagstr[16];
1820         int                       rc;
1821         ENTRY;
1822
1823         CDEBUG(D_MOUNT,
1824                "Attempting to start %s, type=%s, lsifl=%x, mountfl=%lx\n",
1825                lsi->lsi_svname, lsi->lsi_osd_type, lsi->lsi_flags, mflags);
1826
1827         sprintf(lsi->lsi_osd_obdname, "%s-osd", lsi->lsi_svname);
1828         strcpy(lsi->lsi_osd_uuid, lsi->lsi_osd_obdname);
1829         strcat(lsi->lsi_osd_uuid, "_UUID");
1830         sprintf(flagstr, "%lu:%lu", mflags, (unsigned long) lmd->lmd_flags);
1831
1832         obd = class_name2obd(lsi->lsi_osd_obdname);
1833         if (obd == NULL) {
1834                 rc = lustre_start_simple(lsi->lsi_osd_obdname,
1835                                          lsi->lsi_osd_type,
1836                                          lsi->lsi_osd_uuid, lmd->lmd_dev,
1837                                          flagstr, lsi->lsi_lmd->lmd_opts,
1838                                          lsi->lsi_svname);
1839                 if (rc)
1840                         GOTO(out, rc);
1841                 obd = class_name2obd(lsi->lsi_osd_obdname);
1842                 LASSERT(obd);
1843         } else {
1844                 CDEBUG(D_MOUNT, "%s already started\n", lsi->lsi_osd_obdname);
1845                 /* but continue setup to allow special case of MDT and internal
1846                  * MGT being started separately. */
1847                 if (!((IS_MGS(lsi) && (lsi->lsi_lmd->lmd_flags &
1848                                       LMD_FLG_NOMGS)) ||
1849                      (IS_MDT(lsi) && (lsi->lsi_lmd->lmd_flags &
1850                                       LMD_FLG_NOSVC))))
1851                         RETURN(-EALREADY);
1852         }
1853
1854         rc = obd_connect(NULL, &lsi->lsi_osd_exp,
1855                          obd, &obd->obd_uuid, NULL, NULL);
1856
1857         if (rc) {
1858                 obd->obd_force = 1;
1859                 class_manual_cleanup(obd);
1860                 lsi->lsi_dt_dev = NULL;
1861                 RETURN(rc);
1862         }
1863
1864         LASSERT(obd->obd_lu_dev);
1865         lu_device_get(obd->obd_lu_dev);
1866         lsi->lsi_dt_dev = lu2dt_dev(obd->obd_lu_dev);
1867         LASSERT(lsi->lsi_dt_dev);
1868
1869         /* set disk context for llog usage */
1870         OBD_SET_CTXT_MAGIC(&obd->obd_lvfs_ctxt);
1871         obd->obd_lvfs_ctxt.dt = lsi->lsi_dt_dev;
1872
1873         dt_conf_get(NULL, lsi->lsi_dt_dev, &p);
1874 out:
1875         RETURN(rc);
1876 }
1877
1878 /** Fill in the superblock info for a Lustre server.
1879  * Mount the device with the correct options.
1880  * Read the on-disk config file.
1881  * Start the services.
1882  */
1883 int server_fill_super(struct super_block *sb)
1884 {
1885         struct lustre_sb_info *lsi = s2lsi(sb);
1886         int rc;
1887         ENTRY;
1888
1889         /* to simulate target mount race */
1890         OBD_RACE(OBD_FAIL_TGT_MOUNT_RACE);
1891
1892         rc = lsi_prepare(lsi);
1893         if (rc) {
1894                 lustre_put_lsi(sb);
1895                 RETURN(rc);
1896         }
1897
1898         /* Start low level OSD */
1899         rc = osd_start(lsi, sb->s_flags);
1900         if (rc) {
1901                 CERROR("Unable to start osd on %s: %d\n",
1902                        lsi->lsi_lmd->lmd_dev, rc);
1903                 lustre_put_lsi(sb);
1904                 RETURN(rc);
1905         }
1906
1907         CDEBUG(D_MOUNT, "Found service %s on device %s\n",
1908                lsi->lsi_svname, lsi->lsi_lmd->lmd_dev);
1909
1910         if (class_name2obd(lsi->lsi_svname)) {
1911                 LCONSOLE_ERROR_MSG(0x161, "The target named %s is already "
1912                                    "running. Double-mount may have compromised"
1913                                    " the disk journal.\n",
1914                                    lsi->lsi_svname);
1915                 lustre_put_lsi(sb);
1916                 RETURN(-EALREADY);
1917         }
1918
1919         /* Start MGS before MGC */
1920         if (IS_MGS(lsi) && !(lsi->lsi_lmd->lmd_flags & LMD_FLG_NOMGS)) {
1921                 rc = server_start_mgs(sb);
1922                 if (rc)
1923                         GOTO(out_mnt, rc);
1924         }
1925
1926         /* Start MGC before servers */
1927         rc = lustre_start_mgc(sb);
1928         if (rc)
1929                 GOTO(out_mnt, rc);
1930
1931         /* Set up all obd devices for service */
1932         if (!(lsi->lsi_lmd->lmd_flags & LMD_FLG_NOSVC) &&
1933             (IS_OST(lsi) || IS_MDT(lsi))) {
1934                 rc = server_start_targets(sb);
1935                 if (rc < 0) {
1936                         CERROR("Unable to start targets: %d\n", rc);
1937                         GOTO(out_mnt, rc);
1938                 }
1939                 /* FIXME overmount client here, or can we just start a
1940                  * client log and client_fill_super on this sb?  We
1941                  * need to make sure server_put_super gets called too
1942                  * - ll_put_super calls lustre_common_put_super; check
1943                  * there for LSI_SERVER flag, call s_p_s if so.
1944                  *
1945                  * Probably should start client from new thread so we
1946                  * can return.  Client will not finish until all
1947                  * servers are connected.  Note - MGS-only server does
1948                  * NOT get a client, since there is no lustre fs
1949                  * associated - the MGS is for all lustre fs's */
1950         }
1951
1952         rc = server_fill_super_common(sb);
1953         if (rc)
1954                 GOTO(out_mnt, rc);
1955
1956         RETURN(0);
1957 out_mnt:
1958         /* We jump here in case of failure while starting targets or MGS.
1959          * In this case we can't just put @mnt and have to do real cleanup
1960          * with stoping targets, etc. */
1961         server_put_super(sb);
1962         return rc;
1963 }
1964
1965 /*
1966  * Calculate timeout value for a target.
1967  */
1968 void server_calc_timeout(struct lustre_sb_info *lsi, struct obd_device *obd)
1969 {
1970         struct lustre_mount_data *lmd;
1971         int soft = 0;
1972         int hard = 0;
1973         int factor = 0;
1974         bool has_ir = !!(lsi->lsi_flags & LDD_F_IR_CAPABLE);
1975         int min = OBD_RECOVERY_TIME_MIN;
1976
1977         LASSERT(IS_SERVER(lsi));
1978
1979         lmd = lsi->lsi_lmd;
1980         if (lmd) {
1981                 soft   = lmd->lmd_recovery_time_soft;
1982                 hard   = lmd->lmd_recovery_time_hard;
1983                 has_ir = has_ir && !(lmd->lmd_flags & LMD_FLG_NOIR);
1984                 obd->obd_no_ir = !has_ir;
1985         }
1986
1987         if (soft == 0)
1988                 soft = OBD_RECOVERY_TIME_SOFT;
1989         if (hard == 0)
1990                 hard = OBD_RECOVERY_TIME_HARD;
1991
1992         /* target may have ir_factor configured. */
1993         factor = OBD_IR_FACTOR_DEFAULT;
1994         if (obd->obd_recovery_ir_factor)
1995                 factor = obd->obd_recovery_ir_factor;
1996
1997         if (has_ir) {
1998                 int new_soft = soft;
1999
2000                 /* adjust timeout value by imperative recovery */
2001                 new_soft = (soft * factor) / OBD_IR_FACTOR_MAX;
2002                 /* make sure the timeout is not too short */
2003                 new_soft = max(min, new_soft);
2004
2005                 LCONSOLE_INFO("%s: Imperative Recovery enabled, recovery "
2006                               "window shrunk from %d-%d down to %d-%d\n",
2007                               obd->obd_name, soft, hard, new_soft, hard);
2008
2009                 soft = new_soft;
2010         } else {
2011                 LCONSOLE_INFO("%s: Imperative Recovery not enabled, recovery "
2012                               "window %d-%d\n", obd->obd_name, soft, hard);
2013         }
2014
2015         /* we're done */
2016         obd->obd_recovery_timeout = max_t(time64_t, obd->obd_recovery_timeout,
2017                                           soft);
2018         obd->obd_recovery_time_hard = hard;
2019         obd->obd_recovery_ir_factor = factor;
2020 }