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