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