4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
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.
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).
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
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
27 * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
28 * Use is subject to license terms.
30 * Copyright (c) 2013, Intel Corporation.
33 * This file is part of Lustre, http://www.lustre.org/
34 * Lustre is a trademark of Sun Microsystems, Inc.
36 * lustre/obdclass/obd_mount_server.c
38 * Server mount routines
40 * Author: Nathan Rutman <nathan@clusterfs.com>
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)
50 #include <obd_class.h>
51 #include <lustre/lustre_user.h>
52 #include <linux/version.h>
53 #include <lustre_ioctl.h>
54 #include <lustre_log.h>
55 #include <lustre_disk.h>
56 #include <lustre_param.h>
57 #ifdef HAVE_KERNEL_LOCKED
58 #include <linux/smp_lock.h>
60 #ifdef HAVE_SELINUX_IS_ENABLED
61 #include <linux/selinux.h>
64 /*********** mount lookup *********/
66 DEFINE_MUTEX(lustre_mount_info_lock);
67 static CFS_LIST_HEAD(server_mount_info_list);
69 static struct lustre_mount_info *server_find_mount(const char *name)
72 struct lustre_mount_info *lmi;
75 cfs_list_for_each(tmp, &server_mount_info_list) {
76 lmi = cfs_list_entry(tmp, struct lustre_mount_info,
78 if (strcmp(name, lmi->lmi_name) == 0)
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)
89 struct lustre_mount_info *lmi;
95 OBD_ALLOC(lmi, sizeof(*lmi));
98 OBD_ALLOC(name_cp, strlen(name) + 1);
100 OBD_FREE(lmi, sizeof(*lmi));
103 strcpy(name_cp, name);
105 mutex_lock(&lustre_mount_info_lock);
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);
114 lmi->lmi_name = name_cp;
116 cfs_list_add(&lmi->lmi_list_chain, &server_mount_info_list);
118 mutex_unlock(&lustre_mount_info_lock);
120 CDEBUG(D_MOUNT, "register mount %p from %s\n", sb, name);
125 /* when an obd no longer needs a mount */
126 static int server_deregister_mount(const char *name)
128 struct lustre_mount_info *lmi;
131 mutex_lock(&lustre_mount_info_lock);
132 lmi = server_find_mount(name);
134 mutex_unlock(&lustre_mount_info_lock);
135 CERROR("%s not registered\n", name);
139 CDEBUG(D_MOUNT, "deregister mount %p from %s\n", lmi->lmi_sb, name);
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);
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)
154 struct lustre_mount_info *lmi;
155 struct lustre_sb_info *lsi;
158 mutex_lock(&lustre_mount_info_lock);
159 lmi = server_find_mount(name);
160 mutex_unlock(&lustre_mount_info_lock);
162 CERROR("Can't find mount for %s\n", name);
165 lsi = s2lsi(lmi->lmi_sb);
167 atomic_inc(&lsi->lsi_mounts);
169 CDEBUG(D_MOUNT, "get mount %p from %s, refs=%d\n", lmi->lmi_sb,
170 name, atomic_read(&lsi->lsi_mounts));
174 EXPORT_SYMBOL(server_get_mount);
177 * server_put_mount: to be called from obd_cleanup methods
179 * @dereg_mnt: 0 or 1 depending on whether the mount is to be deregistered or
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.
188 int server_put_mount(const char *name, bool dereg_mnt)
190 struct lustre_mount_info *lmi;
191 struct lustre_sb_info *lsi;
194 mutex_lock(&lustre_mount_info_lock);
195 lmi = server_find_mount(name);
196 mutex_unlock(&lustre_mount_info_lock);
198 CERROR("Can't find mount for %s\n", name);
201 lsi = s2lsi(lmi->lmi_sb);
203 CDEBUG(D_MOUNT, "put mount %p from %s, refs=%d\n",
204 lmi->lmi_sb, name, atomic_read(&lsi->lsi_mounts));
206 if (lustre_put_lsi(lmi->lmi_sb))
207 CDEBUG(D_MOUNT, "Last put of mount %p from %s\n",
211 /* this obd should never need the mount again */
212 server_deregister_mount(name);
216 EXPORT_SYMBOL(server_put_mount);
218 /* Set up a MGS to serve startup logs */
219 static int server_start_mgs(struct super_block *sb)
221 struct lustre_sb_info *lsi = s2lsi(sb);
222 struct lustre_mount_info *lmi;
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);
230 lsi = s2lsi(lmi->lmi_sb);
231 LCONSOLE_ERROR_MSG(0x15d, "The MGS service was already started"
236 CDEBUG(D_CONFIG, "Start MGS service %s\n", LUSTRE_MGS_OBDNAME);
238 rc = server_register_mount(LUSTRE_MGS_OBDNAME, sb);
241 rc = lustre_start_simple(LUSTRE_MGS_OBDNAME, LUSTRE_MGS_NAME,
242 LUSTRE_MGS_OBDNAME, 0, 0,
243 lsi->lsi_osd_obdname, 0);
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. */
251 server_deregister_mount(LUSTRE_MGS_OBDNAME);
255 LCONSOLE_ERROR_MSG(0x15e, "Failed to start MGS '%s' (%d). "
256 "Is the 'mgs' module loaded?\n",
257 LUSTRE_MGS_OBDNAME, rc);
261 static int server_stop_mgs(struct super_block *sb)
263 struct obd_device *obd;
267 CDEBUG(D_MOUNT, "Stop MGS service %s\n", LUSTRE_MGS_OBDNAME);
269 /* There better be only one MGS */
270 obd = class_name2obd(LUSTRE_MGS_OBDNAME);
272 CDEBUG(D_CONFIG, "mgs %s not running\n", LUSTRE_MGS_OBDNAME);
276 /* The MGS should always stop when we say so */
278 rc = class_manual_cleanup(obd);
282 /* Since there's only one mgc per node, we have to change it's fs to get
283 access to the right disk. */
284 static int server_mgc_set_fs(struct obd_device *mgc, struct super_block *sb)
286 struct lustre_sb_info *lsi = s2lsi(sb);
290 CDEBUG(D_MOUNT, "Set mgc disk for %s\n", lsi->lsi_lmd->lmd_dev);
292 /* cl_mgc_sem in mgc insures we sleep if the mgc_fs is busy */
293 rc = obd_set_info_async(NULL, mgc->obd_self_export,
294 sizeof(KEY_SET_FS), KEY_SET_FS,
295 sizeof(*sb), sb, NULL);
297 CERROR("can't set_fs %d\n", rc);
302 static int server_mgc_clear_fs(struct obd_device *mgc)
307 CDEBUG(D_MOUNT, "Unassign mgc disk\n");
309 rc = obd_set_info_async(NULL, mgc->obd_self_export,
310 sizeof(KEY_CLEAR_FS), KEY_CLEAR_FS,
315 static inline bool is_mdc_device(const char *devname)
319 ptr = strrchr(devname, '-');
320 return ptr != NULL && strcmp(ptr, "-mdc") == 0;
323 static inline bool tgt_is_mdt(const char *tgtname, __u32 *idx)
327 type = server_name2index(tgtname, idx, NULL);
329 return type == LDD_F_SV_TYPE_MDT;
333 * Convert OST/MDT name(fsname-{MDT,OST}xxxx) to a lwp name with the @idx:yyyy
334 * (fsname-MDTyyyy-lwp-{MDT,OST}xxxx)
336 int tgt_name2lwp_name(const char *tgt_name, char *lwp_name, int len, __u32 idx)
343 OBD_ALLOC(fsname, MTI_NAME_MAXLEN);
347 rc = server_name2fsname(tgt_name, fsname, &tgt);
349 CERROR("%s: failed to get fsname from tgt_name: rc = %d\n",
354 if (*tgt != '-' && *tgt != ':') {
355 CERROR("%s: invalid tgt_name name!\n", tgt_name);
356 GOTO(cleanup, rc = -EINVAL);
360 if (strncmp(tgt, "OST", 3) != 0 && strncmp(tgt, "MDT", 3) != 0) {
361 CERROR("%s is not an OST or MDT target!\n", tgt_name);
362 GOTO(cleanup, rc = -EINVAL);
364 snprintf(lwp_name, len, "%s-MDT%04x-%s-%s",
365 fsname, idx, LUSTRE_LWP_NAME, tgt);
367 GOTO(cleanup, rc = 0);
371 OBD_FREE(fsname, MTI_NAME_MAXLEN);
375 EXPORT_SYMBOL(tgt_name2lwp_name);
377 static CFS_LIST_HEAD(lwp_register_list);
378 DEFINE_MUTEX(lwp_register_list_lock);
380 int lustre_register_lwp_item(const char *lwpname, struct obd_export **exp,
381 register_lwp_cb cb_func, void *cb_data)
383 struct obd_device *lwp;
384 struct lwp_register_item *lri;
387 LASSERTF(strlen(lwpname) < MTI_NAME_MAXLEN, "lwpname is too long %s\n",
389 LASSERT(exp != NULL && *exp == NULL);
395 mutex_lock(&lwp_register_list_lock);
397 lwp = class_name2obd(lwpname);
398 if (lwp != NULL && lwp->obd_set_up == 1) {
399 struct obd_uuid *uuid;
403 mutex_unlock(&lwp_register_list_lock);
407 memcpy(uuid->uuid, lwpname, strlen(lwpname));
408 *exp = cfs_hash_lookup(lwp->obd_uuid_hash, uuid);
412 memcpy(lri->lri_name, lwpname, strlen(lwpname));
414 lri->lri_cb_func = cb_func;
415 lri->lri_cb_data = cb_data;
416 CFS_INIT_LIST_HEAD(&lri->lri_list);
417 cfs_list_add(&lri->lri_list, &lwp_register_list);
419 if (*exp != NULL && cb_func != NULL)
422 mutex_unlock(&lwp_register_list_lock);
425 EXPORT_SYMBOL(lustre_register_lwp_item);
427 void lustre_deregister_lwp_item(struct obd_export **exp)
429 struct lwp_register_item *lri, *tmp;
431 mutex_lock(&lwp_register_list_lock);
432 cfs_list_for_each_entry_safe(lri, tmp, &lwp_register_list, lri_list) {
433 if (exp == lri->lri_exp) {
435 class_export_put(*exp);
436 cfs_list_del(&lri->lri_list);
441 mutex_unlock(&lwp_register_list_lock);
443 EXPORT_SYMBOL(lustre_deregister_lwp_item);
445 struct obd_export *lustre_find_lwp_by_index(const char *dev, __u32 idx)
447 struct lustre_mount_info *lmi;
448 struct lustre_sb_info *lsi;
449 struct obd_device *lwp;
450 struct obd_export *exp = NULL;
455 lmi = server_get_mount(dev);
459 lsi = s2lsi(lmi->lmi_sb);
460 rc = server_name2fsname(lsi->lsi_svname, fsname, NULL);
462 CERROR("%s: failed to get fsname: rc = %d\n",
463 lsi->lsi_svname, rc);
467 snprintf(lwp_name, sizeof(lwp_name), "%s-MDT%04x", fsname, idx);
468 spin_lock(&lsi->lsi_lwp_lock);
469 list_for_each_entry(lwp, &lsi->lsi_lwp_list, obd_lwp_list) {
470 char *ptr = strstr(lwp->obd_name, lwp_name);
473 exp = class_export_get(lwp->obd_lwp_export);
477 spin_unlock(&lsi->lsi_lwp_lock);
480 server_put_mount(dev, false);
484 EXPORT_SYMBOL(lustre_find_lwp_by_index);
486 static void lustre_notify_lwp_list(struct obd_export *exp)
488 struct lwp_register_item *lri, *tmp;
489 LASSERT(exp != NULL);
491 mutex_lock(&lwp_register_list_lock);
492 cfs_list_for_each_entry_safe(lri, tmp, &lwp_register_list, lri_list) {
493 if (strcmp(exp->exp_obd->obd_name, lri->lri_name))
495 if (*lri->lri_exp != NULL)
497 *lri->lri_exp = class_export_get(exp);
498 if (lri->lri_cb_func != NULL)
499 lri->lri_cb_func(lri->lri_cb_data);
501 mutex_unlock(&lwp_register_list_lock);
504 static int lustre_lwp_connect(struct obd_device *lwp)
507 struct lu_context session_ctx;
508 struct obd_export *exp;
509 struct obd_uuid *uuid = NULL;
510 struct obd_connect_data *data = NULL;
514 /* log has been fully processed, let clients connect */
515 rc = lu_env_init(&env, lwp->obd_lu_dev->ld_type->ldt_ctx_tags);
519 lu_context_init(&session_ctx, LCT_SERVER_SESSION);
520 session_ctx.lc_thread = NULL;
521 lu_context_enter(&session_ctx);
522 env.le_ses = &session_ctx;
526 GOTO(out, rc = -ENOMEM);
528 data->ocd_connect_flags = OBD_CONNECT_VERSION | OBD_CONNECT_INDEX;
529 data->ocd_version = LUSTRE_VERSION_CODE;
530 data->ocd_connect_flags |= OBD_CONNECT_MDS_MDS | OBD_CONNECT_FID |
531 OBD_CONNECT_AT | OBD_CONNECT_LRU_RESIZE |
532 OBD_CONNECT_FULL20 | OBD_CONNECT_LVB_TYPE |
533 OBD_CONNECT_LIGHTWEIGHT | OBD_CONNECT_LFSCK;
536 GOTO(out, rc = -ENOMEM);
538 if (strlen(lwp->obd_name) > sizeof(uuid->uuid)) {
539 CERROR("%s: Too long lwp name %s, max_size is %d\n",
540 lwp->obd_name, lwp->obd_name, (int)sizeof(uuid->uuid));
541 GOTO(out, rc = -EINVAL);
544 /* Use lwp name as the uuid, so we find the export by lwp name later */
545 memcpy(uuid->uuid, lwp->obd_name, strlen(lwp->obd_name));
546 rc = obd_connect(&env, &exp, lwp, uuid, data, NULL);
548 CERROR("%s: connect failed: rc = %d\n", lwp->obd_name, rc);
550 if (unlikely(lwp->obd_lwp_export != NULL))
551 class_export_put(lwp->obd_lwp_export);
552 lwp->obd_lwp_export = class_export_get(exp);
553 lustre_notify_lwp_list(exp);
565 lu_context_exit(&session_ctx);
566 lu_context_fini(&session_ctx);
572 * lwp is used by slaves (Non-MDT0 targets) to manage the connection to MDT0,
573 * or from the OSTx to MDTy.
575 static int lustre_lwp_setup(struct lustre_cfg *lcfg, struct lustre_sb_info *lsi,
578 struct obd_device *obd;
579 char *lwpname = NULL;
580 char *lwpuuid = NULL;
584 rc = class_add_uuid(lustre_cfg_string(lcfg, 1),
587 CERROR("%s: Can't add uuid: rc =%d\n", lsi->lsi_svname, rc);
591 OBD_ALLOC(lwpname, MTI_NAME_MAXLEN);
593 GOTO(out, rc = -ENOMEM);
595 rc = tgt_name2lwp_name(lsi->lsi_svname, lwpname, MTI_NAME_MAXLEN, idx);
597 CERROR("%s: failed to generate lwp name: rc = %d\n",
598 lsi->lsi_svname, rc);
602 OBD_ALLOC(lwpuuid, MTI_NAME_MAXLEN);
604 GOTO(out, rc = -ENOMEM);
606 sprintf(lwpuuid, "%s_UUID", lwpname);
607 rc = lustre_start_simple(lwpname, LUSTRE_LWP_NAME,
608 lwpuuid, lustre_cfg_string(lcfg, 1),
611 CERROR("%s: setup up failed: rc %d\n", lwpname, rc);
615 obd = class_name2obd(lwpname);
616 LASSERT(obd != NULL);
618 rc = lustre_lwp_connect(obd);
620 obd->u.cli.cl_max_mds_easize = MAX_MD_SIZE;
621 spin_lock(&lsi->lsi_lwp_lock);
622 list_add_tail(&obd->obd_lwp_list, &lsi->lsi_lwp_list);
623 spin_unlock(&lsi->lsi_lwp_lock);
625 CERROR("%s: connect failed: rc = %d\n", lwpname, rc);
632 OBD_FREE(lwpname, MTI_NAME_MAXLEN);
634 OBD_FREE(lwpuuid, MTI_NAME_MAXLEN);
639 /* the caller is responsible for memory free */
640 static struct obd_device *lustre_find_lwp(struct lustre_sb_info *lsi,
641 char **lwpname, __u32 idx)
643 struct obd_device *lwp;
647 LASSERT(lwpname != NULL);
648 LASSERT(IS_OST(lsi) || IS_MDT(lsi));
650 OBD_ALLOC(*lwpname, MTI_NAME_MAXLEN);
651 if (*lwpname == NULL)
652 RETURN(ERR_PTR(-ENOMEM));
654 rc = tgt_name2lwp_name(lsi->lsi_svname, *lwpname, MTI_NAME_MAXLEN, idx);
656 CERROR("%s: failed to generate lwp name: rc = %d\n",
657 lsi->lsi_svname, rc);
658 GOTO(out, rc = -EINVAL);
661 lwp = class_name2obd(*lwpname);
665 if (*lwpname != NULL) {
666 OBD_FREE(*lwpname, MTI_NAME_MAXLEN);
672 RETURN(lwp != NULL ? lwp : ERR_PTR(-ENOENT));
675 static int lustre_lwp_add_conn(struct lustre_cfg *cfg,
676 struct lustre_sb_info *lsi, __u32 idx)
678 struct lustre_cfg_bufs *bufs = NULL;
679 struct lustre_cfg *lcfg = NULL;
680 char *lwpname = NULL;
681 struct obd_device *lwp;
685 lwp = lustre_find_lwp(lsi, &lwpname, idx);
687 CERROR("%s: can't find lwp device.\n", lsi->lsi_svname);
688 GOTO(out, rc = PTR_ERR(lwp));
690 LASSERT(lwpname != NULL);
694 GOTO(out, rc = -ENOMEM);
696 lustre_cfg_bufs_reset(bufs, lwpname);
697 lustre_cfg_bufs_set_string(bufs, 1,
698 lustre_cfg_string(cfg, 1));
700 lcfg = lustre_cfg_new(LCFG_ADD_CONN, bufs);
702 GOTO(out_cfg, rc = -ENOMEM);
703 rc = class_add_conn(lwp, lcfg);
705 CERROR("%s: can't add conn: rc = %d\n", lwpname, rc);
708 lustre_cfg_free(lcfg);
714 OBD_FREE(lwpname, MTI_NAME_MAXLEN);
719 * Retrieve MDT nids from the client log, then start the lwp device.
720 * there are only two scenarios which would include mdt nid.
722 * marker 5 (flags=0x01, v2.1.54.0) lustre-MDTyyyy 'add mdc' xxx-
723 * add_uuid nid=192.168.122.162@tcp(0x20000c0a87aa2) 0: 1:192.168.122.162@tcp
724 * attach 0:lustre-MDTyyyy-mdc 1:mdc 2:lustre-clilmv_UUID
725 * setup 0:lustre-MDTyyyy-mdc 1:lustre-MDTyyyy_UUID 2:192.168.122.162@tcp
726 * add_uuid nid=192.168.172.1@tcp(0x20000c0a8ac01) 0: 1:192.168.172.1@tcp
727 * add_conn 0:lustre-MDTyyyy-mdc 1:192.168.172.1@tcp
728 * modify_mdc_tgts add 0:lustre-clilmv 1:lustre-MDTyyyy_UUID xxxx
729 * marker 5 (flags=0x02, v2.1.54.0) lustre-MDTyyyy 'add mdc' xxxx-
731 * marker 7 (flags=0x01, v2.1.54.0) lustre-MDTyyyy 'add failnid' xxxx-
732 * add_uuid nid=192.168.122.2@tcp(0x20000c0a87a02) 0: 1:192.168.122.2@tcp
733 * add_conn 0:lustre-MDTyyyy-mdc 1:192.168.122.2@tcp
734 * marker 7 (flags=0x02, v2.1.54.0) lustre-MDTyyyy 'add failnid' xxxx-
736 static int client_lwp_config_process(const struct lu_env *env,
737 struct llog_handle *handle,
738 struct llog_rec_hdr *rec, void *data)
740 struct config_llog_instance *clli = data;
741 int cfg_len = rec->lrh_len;
742 char *cfg_buf = (char *) (rec + 1);
743 struct lustre_cfg *lcfg = NULL;
744 struct lustre_sb_info *lsi;
745 int rc = 0, swab = 0;
748 if (rec->lrh_type != OBD_CFG_REC) {
749 CERROR("Unknown llog record type %#x encountered\n",
754 LASSERT(clli->cfg_sb != NULL);
755 lsi = s2lsi(clli->cfg_sb);
757 lcfg = (struct lustre_cfg *)cfg_buf;
758 if (lcfg->lcfg_version == __swab32(LUSTRE_CFG_VERSION)) {
759 lustre_swab_lustre_cfg(lcfg);
763 rc = lustre_cfg_sanity_check(cfg_buf, cfg_len);
767 switch (lcfg->lcfg_command) {
769 struct cfg_marker *marker = lustre_cfg_buf(lcfg, 1);
771 lustre_swab_cfg_marker(marker, swab,
772 LUSTRE_CFG_BUFLEN(lcfg, 1));
773 if (marker->cm_flags & CM_SKIP ||
774 marker->cm_flags & CM_EXCLUDE)
777 if (!tgt_is_mdt(marker->cm_tgtname, &clli->cfg_lwp_idx))
780 if (IS_MDT(lsi) && clli->cfg_lwp_idx != 0)
783 if (!strncmp(marker->cm_comment, "add mdc", 7) ||
784 !strncmp(marker->cm_comment, "add failnid", 11)) {
785 if (marker->cm_flags & CM_START) {
786 clli->cfg_flags = CFG_F_MARKER;
787 /* This hack is to differentiate the
788 * ADD_UUID is come from "add mdc" record
789 * or from "add failnid" record. */
790 if (!strncmp(marker->cm_comment,
792 clli->cfg_flags |= CFG_F_SKIP;
793 } else if (marker->cm_flags & CM_END) {
799 case LCFG_ADD_UUID: {
800 if (clli->cfg_flags == CFG_F_MARKER) {
801 rc = lustre_lwp_setup(lcfg, lsi, clli->cfg_lwp_idx);
802 /* XXX: process only the first nid as
803 * we don't need another instance of lwp */
804 clli->cfg_flags |= CFG_F_SKIP;
805 } else if (clli->cfg_flags == (CFG_F_MARKER | CFG_F_SKIP)) {
806 rc = class_add_uuid(lustre_cfg_string(lcfg, 1),
809 CERROR("%s: Fail to add uuid, rc:%d\n",
810 lsi->lsi_svname, rc);
814 case LCFG_ADD_CONN: {
815 char *devname = lustre_cfg_string(lcfg, 0);
819 if (!is_mdc_device(devname))
822 ptr = strrchr(devname, '-');
827 if (!tgt_is_mdt(devname, &idx)) {
833 if (IS_MDT(lsi) && idx != 0)
836 rc = lustre_lwp_add_conn(lcfg, lsi, idx);
846 static int lustre_disconnect_lwp(struct super_block *sb)
848 struct lustre_sb_info *lsi = s2lsi(sb);
849 struct obd_device *lwp;
850 char *logname = NULL;
851 struct lustre_cfg_bufs *bufs = NULL;
852 struct config_llog_instance *cfg = NULL;
857 if (likely(lsi->lsi_lwp_started)) {
858 OBD_ALLOC(logname, MTI_NAME_MAXLEN);
862 rc = server_name2fsname(lsi->lsi_svname, logname, NULL);
864 CERROR("%s: failed to get fsname from svname: "
865 "rc = %d\n", lsi->lsi_svname, rc);
866 GOTO(out, rc = -EINVAL);
869 strcat(logname, "-client");
872 GOTO(out, rc = -ENOMEM);
875 cfg->cfg_instance = sb;
876 rc = lustre_end_log(sb, logname, cfg);
880 lsi->lsi_lwp_started = 0;
885 GOTO(out, rc = -ENOMEM);
887 list_for_each_entry(lwp, &lsi->lsi_lwp_list, obd_lwp_list) {
888 struct lustre_cfg *lcfg;
890 if (likely(lwp->obd_lwp_export != NULL)) {
891 class_export_put(lwp->obd_lwp_export);
892 lwp->obd_lwp_export = NULL;
895 lustre_cfg_bufs_reset(bufs, lwp->obd_name);
896 lustre_cfg_bufs_set_string(bufs, 1, NULL);
897 lcfg = lustre_cfg_new(LCFG_CLEANUP, bufs);
899 GOTO(out, rc = -ENOMEM);
901 /* Disconnect import first. NULL is passed for the '@env',
902 * since it will not be used. */
903 rc = lwp->obd_lu_dev->ld_ops->ldo_process_config(NULL,
904 lwp->obd_lu_dev, lcfg);
905 lustre_cfg_free(lcfg);
906 if (rc != 0 && rc != -ETIMEDOUT) {
907 CERROR("%s: fail to disconnect LWP: rc = %d\n",
921 OBD_FREE(logname, MTI_NAME_MAXLEN);
923 return rc1 != 0 ? rc1 : rc;
927 * Stop the lwp for an OST/MDT target.
929 static int lustre_stop_lwp(struct super_block *sb)
931 struct lustre_sb_info *lsi = s2lsi(sb);
932 struct obd_device *lwp;
937 while (!list_empty(&lsi->lsi_lwp_list)) {
938 lwp = list_entry(lsi->lsi_lwp_list.next, struct obd_device,
940 list_del_init(&lwp->obd_lwp_list);
942 rc = class_manual_cleanup(lwp);
944 CERROR("%s: fail to stop LWP: rc = %d\n",
950 RETURN(rc1 != 0 ? rc1 : rc);
954 * Start the lwp(fsname-MDTyyyy-lwp-{MDT,OST}xxxx) for a MDT/OST or MDT target.
956 static int lustre_start_lwp(struct super_block *sb)
958 struct lustre_sb_info *lsi = s2lsi(sb);
959 struct config_llog_instance *cfg = NULL;
964 if (unlikely(lsi->lsi_lwp_started))
967 OBD_ALLOC(logname, MTI_NAME_MAXLEN);
971 rc = server_name2fsname(lsi->lsi_svname, logname, NULL);
973 CERROR("%s: failed to get fsname from svname: rc = %d\n",
974 lsi->lsi_svname, rc);
975 GOTO(out, rc = -EINVAL);
978 strcat(logname, "-client");
981 GOTO(out, rc = -ENOMEM);
983 cfg->cfg_callback = client_lwp_config_process;
984 cfg->cfg_instance = sb;
985 rc = lustre_process_log(sb, logname, cfg);
987 lsi->lsi_lwp_started = 1;
992 OBD_FREE(logname, MTI_NAME_MAXLEN);
999 DEFINE_MUTEX(server_start_lock);
1001 /* Stop MDS/OSS if nobody is using them */
1002 static int server_stop_servers(int lsiflags)
1004 struct obd_device *obd = NULL;
1005 struct obd_type *type = NULL;
1009 mutex_lock(&server_start_lock);
1011 /* Either an MDT or an OST or neither */
1012 /* if this was an MDT, and there are no more MDT's, clean up the MDS */
1013 if (lsiflags & LDD_F_SV_TYPE_MDT) {
1014 obd = class_name2obd(LUSTRE_MDS_OBDNAME);
1016 type = class_search_type(LUSTRE_MDT_NAME);
1019 /* if this was an OST, and there are no more OST's, clean up the OSS */
1020 if (lsiflags & LDD_F_SV_TYPE_OST) {
1021 obd = class_name2obd(LUSTRE_OSS_OBDNAME);
1023 type = class_search_type(LUSTRE_OST_NAME);
1026 if (obd != NULL && (type == NULL || type->typ_refcnt == 0)) {
1028 /* obd_fail doesn't mean much on a server obd */
1029 rc = class_manual_cleanup(obd);
1032 mutex_unlock(&server_start_lock);
1037 int server_mti_print(const char *title, struct mgs_target_info *mti)
1039 PRINT_CMD(PRINT_MASK, "mti %s\n", title);
1040 PRINT_CMD(PRINT_MASK, "server: %s\n", mti->mti_svname);
1041 PRINT_CMD(PRINT_MASK, "fs: %s\n", mti->mti_fsname);
1042 PRINT_CMD(PRINT_MASK, "uuid: %s\n", mti->mti_uuid);
1043 PRINT_CMD(PRINT_MASK, "ver: %d flags: %#x\n",
1044 mti->mti_config_ver, mti->mti_flags);
1047 EXPORT_SYMBOL(server_mti_print);
1049 /* Generate data for registration */
1050 static int server_lsi2mti(struct lustre_sb_info *lsi,
1051 struct mgs_target_info *mti)
1053 lnet_process_id_t id;
1058 if (!IS_SERVER(lsi))
1061 if (strlcpy(mti->mti_svname, lsi->lsi_svname, sizeof(mti->mti_svname))
1062 >= sizeof(mti->mti_svname))
1065 mti->mti_nid_count = 0;
1066 while (LNetGetId(i++, &id) != -ENOENT) {
1067 if (LNET_NETTYP(LNET_NIDNET(id.nid)) == LOLND)
1070 /* server use --servicenode param, only allow specified
1071 * nids be registered */
1072 if ((lsi->lsi_lmd->lmd_flags & LMD_FLG_NO_PRIMNODE) != 0 &&
1073 class_match_nid(lsi->lsi_lmd->lmd_params,
1074 PARAM_FAILNODE, id.nid) < 1)
1077 /* match specified network */
1078 if (!class_match_net(lsi->lsi_lmd->lmd_params,
1079 PARAM_NETWORK, LNET_NIDNET(id.nid)))
1082 mti->mti_nids[mti->mti_nid_count] = id.nid;
1083 mti->mti_nid_count++;
1084 if (mti->mti_nid_count >= MTI_NIDS_MAX) {
1085 CWARN("Only using first %d nids for %s\n",
1086 mti->mti_nid_count, mti->mti_svname);
1091 mti->mti_lustre_ver = LUSTRE_VERSION_CODE;
1092 mti->mti_config_ver = 0;
1094 rc = server_name2fsname(lsi->lsi_svname, mti->mti_fsname, NULL);
1098 rc = server_name2index(lsi->lsi_svname, &mti->mti_stripe_index, NULL);
1101 /* Orion requires index to be set */
1102 LASSERT(!(rc & LDD_F_NEED_INDEX));
1103 /* keep only LDD flags */
1104 mti->mti_flags = lsi->lsi_flags & LDD_F_MASK;
1105 if (mti->mti_flags & (LDD_F_WRITECONF | LDD_F_VIRGIN))
1106 mti->mti_flags |= LDD_F_UPDATE;
1107 cplen = strlcpy(mti->mti_params, lsi->lsi_lmd->lmd_params,
1108 sizeof(mti->mti_params));
1109 if (cplen >= sizeof(mti->mti_params))
1114 /* Register an old or new target with the MGS. If needed MGS will construct
1115 startup logs and assign index */
1116 static int server_register_target(struct lustre_sb_info *lsi)
1118 struct obd_device *mgc = lsi->lsi_mgc;
1119 struct mgs_target_info *mti = NULL;
1126 if (!IS_SERVER(lsi))
1133 rc = server_lsi2mti(lsi, mti);
1137 CDEBUG(D_MOUNT, "Registration %s, fs=%s, %s, index=%04x, flags=%#x\n",
1138 mti->mti_svname, mti->mti_fsname,
1139 libcfs_nid2str(mti->mti_nids[0]), mti->mti_stripe_index,
1142 /* if write_conf is true, the registration must succeed */
1143 writeconf = !!(lsi->lsi_flags & (LDD_F_NEED_INDEX | LDD_F_UPDATE));
1144 mti->mti_flags |= LDD_F_OPC_REG;
1146 /* Register the target */
1147 /* FIXME use mgc_process_config instead */
1148 rc = obd_set_info_async(NULL, mgc->u.cli.cl_mgc_mgsexp,
1149 sizeof(KEY_REGISTER_TARGET),
1150 KEY_REGISTER_TARGET,
1151 sizeof(*mti), mti, NULL);
1153 if (mti->mti_flags & LDD_F_ERROR) {
1154 LCONSOLE_ERROR_MSG(0x160,
1155 "%s: the MGS refuses to allow this server "
1156 "to start: rc = %d. Please see messages on "
1157 "the MGS.\n", lsi->lsi_svname, rc);
1158 } else if (writeconf) {
1159 LCONSOLE_ERROR_MSG(0x15f,
1160 "%s: cannot register this server with the MGS: "
1161 "rc = %d. Is the MGS running?\n",
1162 lsi->lsi_svname, rc);
1164 CERROR("%s: error registering with the MGS: rc = %d "
1165 "(not fatal)\n", lsi->lsi_svname, rc);
1166 /* reset the error code for non-fatal error. */
1179 * Notify the MGS that this target is ready.
1180 * Used by IR - if the MGS receives this message, it will notify clients.
1182 static int server_notify_target(struct super_block *sb, struct obd_device *obd)
1184 struct lustre_sb_info *lsi = s2lsi(sb);
1185 struct obd_device *mgc = lsi->lsi_mgc;
1186 struct mgs_target_info *mti = NULL;
1192 if (!(IS_SERVER(lsi)))
1198 rc = server_lsi2mti(lsi, mti);
1202 mti->mti_instance = obd->u.obt.obt_instance;
1203 mti->mti_flags |= LDD_F_OPC_READY;
1205 /* FIXME use mgc_process_config instead */
1206 rc = obd_set_info_async(NULL, mgc->u.cli.cl_mgc_mgsexp,
1207 sizeof(KEY_REGISTER_TARGET),
1208 KEY_REGISTER_TARGET,
1209 sizeof(*mti), mti, NULL);
1211 /* Imperative recovery: if the mgs informs us to use IR? */
1212 if (!rc && !(mti->mti_flags & LDD_F_ERROR) &&
1213 (mti->mti_flags & LDD_F_IR_CAPABLE))
1214 lsi->lsi_flags |= LDD_F_IR_CAPABLE;
1223 /** Start server targets: MDTs and OSTs
1225 static int server_start_targets(struct super_block *sb)
1227 struct obd_device *obd;
1228 struct lustre_sb_info *lsi = s2lsi(sb);
1229 struct config_llog_instance cfg;
1231 struct lu_device *dev;
1235 CDEBUG(D_MOUNT, "starting target %s\n", lsi->lsi_svname);
1238 /* make sure the MDS is started */
1239 mutex_lock(&server_start_lock);
1240 obd = class_name2obd(LUSTRE_MDS_OBDNAME);
1242 rc = lustre_start_simple(LUSTRE_MDS_OBDNAME,
1244 LUSTRE_MDS_OBDNAME"_uuid",
1247 mutex_unlock(&server_start_lock);
1248 CERROR("failed to start MDS: %d\n", rc);
1252 mutex_unlock(&server_start_lock);
1255 /* If we're an OST, make sure the global OSS is running */
1257 /* make sure OSS is started */
1258 mutex_lock(&server_start_lock);
1259 obd = class_name2obd(LUSTRE_OSS_OBDNAME);
1261 rc = lustre_start_simple(LUSTRE_OSS_OBDNAME,
1263 LUSTRE_OSS_OBDNAME"_uuid",
1266 mutex_unlock(&server_start_lock);
1267 CERROR("failed to start OSS: %d\n", rc);
1271 mutex_unlock(&server_start_lock);
1274 /* Set the mgc fs to our server disk. This allows the MGC to
1275 * read and write configs locally, in case it can't talk to the MGS. */
1276 rc = server_mgc_set_fs(lsi->lsi_mgc, sb);
1278 GOTO(out_stop_service, rc);
1280 /* Register with MGS */
1281 rc = server_register_target(lsi);
1285 /* Let the target look up the mount using the target's name
1286 (we can't pass the sb or mnt through class_process_config.) */
1287 rc = server_register_mount(lsi->lsi_svname, sb);
1291 /* Start targets using the llog named for the target */
1292 memset(&cfg, 0, sizeof(cfg));
1293 cfg.cfg_callback = class_config_llog_handler;
1294 rc = lustre_process_log(sb, lsi->lsi_svname, &cfg);
1296 CERROR("failed to start server %s: %d\n",
1297 lsi->lsi_svname, rc);
1298 /* Do NOT call server_deregister_mount() here. This makes it
1299 * impossible to find mount later in cleanup time and leaves
1300 * @lsi and othder stuff leaked. -umka */
1304 obd = class_name2obd(lsi->lsi_svname);
1306 CERROR("no server named %s was started\n", lsi->lsi_svname);
1307 GOTO(out_mgc, rc = -ENXIO);
1310 if (IS_OST(lsi) || IS_MDT(lsi)) {
1311 rc = lustre_start_lwp(sb);
1313 CERROR("%s: failed to start LWP: %d\n",
1314 lsi->lsi_svname, rc);
1319 server_notify_target(sb, obd);
1321 /* calculate recovery timeout, do it after lustre_process_log */
1322 server_calc_timeout(lsi, obd);
1324 /* log has been fully processed */
1325 obd_notify(obd, NULL, OBD_NOTIFY_CONFIG, (void *)CONFIG_LOG);
1327 /* log has been fully processed, let clients connect */
1328 dev = obd->obd_lu_dev;
1329 if (dev && dev->ld_ops->ldo_prepare) {
1330 rc = lu_env_init(&env, dev->ld_type->ldt_ctx_tags);
1332 struct lu_context session_ctx;
1334 lu_context_init(&session_ctx, LCT_SERVER_SESSION);
1335 session_ctx.lc_thread = NULL;
1336 lu_context_enter(&session_ctx);
1337 env.le_ses = &session_ctx;
1339 rc = dev->ld_ops->ldo_prepare(&env, NULL, dev);
1342 lu_context_exit(&session_ctx);
1343 lu_context_fini(&session_ctx);
1347 /* abort recovery only on the complete stack:
1348 * many devices can be involved */
1349 if ((lsi->lsi_lmd->lmd_flags & LMD_FLG_ABORT_RECOV) &&
1350 (OBP(obd, iocontrol))) {
1351 obd_iocontrol(OBD_IOC_ABORT_RECOVERY, obd->obd_self_export, 0,
1356 /* Release the mgc fs for others to use */
1357 server_mgc_clear_fs(lsi->lsi_mgc);
1361 server_stop_servers(lsi->lsi_flags);
1366 static int lsi_prepare(struct lustre_sb_info *lsi)
1373 LASSERT(lsi->lsi_lmd);
1375 /* The server name is given as a mount line option */
1376 if (lsi->lsi_lmd->lmd_profile == NULL) {
1377 LCONSOLE_ERROR("Can't determine server name\n");
1381 if (strlen(lsi->lsi_lmd->lmd_profile) >= sizeof(lsi->lsi_svname))
1382 RETURN(-ENAMETOOLONG);
1384 strcpy(lsi->lsi_svname, lsi->lsi_lmd->lmd_profile);
1386 /* Determine osd type */
1387 if (lsi->lsi_lmd->lmd_osd_type != NULL) {
1388 if (strlen(lsi->lsi_lmd->lmd_osd_type) >=
1389 sizeof(lsi->lsi_osd_type))
1390 RETURN(-ENAMETOOLONG);
1392 strcpy(lsi->lsi_osd_type, lsi->lsi_lmd->lmd_osd_type);
1394 strcpy(lsi->lsi_osd_type, LUSTRE_OSD_LDISKFS_NAME);
1397 /* XXX: a temp. solution for components using ldiskfs
1398 * to be removed in one of the subsequent patches */
1399 if (!strcmp(lsi->lsi_lmd->lmd_osd_type, "osd-ldiskfs"))
1400 strcpy(lsi->lsi_fstype, "ldiskfs");
1402 strcpy(lsi->lsi_fstype, lsi->lsi_lmd->lmd_osd_type);
1404 /* Determine server type */
1405 rc = server_name2index(lsi->lsi_svname, &index, NULL);
1407 if (lsi->lsi_lmd->lmd_flags & LMD_FLG_MGS) {
1408 /* Assume we're a bare MGS */
1410 lsi->lsi_lmd->lmd_flags |= LMD_FLG_NOSVC;
1412 LCONSOLE_ERROR("Can't determine server type of '%s'\n",
1417 lsi->lsi_flags |= rc;
1419 /* Add mount line flags that used to be in ldd:
1420 * writeconf, mgs, anything else?
1422 lsi->lsi_flags |= (lsi->lsi_lmd->lmd_flags & LMD_FLG_WRITECONF) ?
1423 LDD_F_WRITECONF : 0;
1424 lsi->lsi_flags |= (lsi->lsi_lmd->lmd_flags & LMD_FLG_VIRGIN) ?
1426 lsi->lsi_flags |= (lsi->lsi_lmd->lmd_flags & LMD_FLG_UPDATE) ?
1428 lsi->lsi_flags |= (lsi->lsi_lmd->lmd_flags & LMD_FLG_MGS) ?
1429 LDD_F_SV_TYPE_MGS : 0;
1430 lsi->lsi_flags |= (lsi->lsi_lmd->lmd_flags & LMD_FLG_NO_PRIMNODE) ?
1431 LDD_F_NO_PRIMNODE : 0;
1436 /*************** server mount ******************/
1438 /** Start the shutdown of servers at umount.
1440 static void server_put_super(struct super_block *sb)
1442 struct lustre_sb_info *lsi = s2lsi(sb);
1443 struct obd_device *obd;
1444 char *tmpname, *extraname = NULL;
1446 int lsiflags = lsi->lsi_flags;
1449 LASSERT(IS_SERVER(lsi));
1451 tmpname_sz = strlen(lsi->lsi_svname) + 1;
1452 OBD_ALLOC(tmpname, tmpname_sz);
1453 memcpy(tmpname, lsi->lsi_svname, tmpname_sz);
1454 CDEBUG(D_MOUNT, "server put_super %s\n", tmpname);
1455 if (IS_MDT(lsi) && (lsi->lsi_lmd->lmd_flags & LMD_FLG_NOSVC))
1456 snprintf(tmpname, tmpname_sz, "MGS");
1458 /* disconnect the lwp first to drain off the inflight request */
1459 if (IS_OST(lsi) || IS_MDT(lsi)) {
1462 rc = lustre_disconnect_lwp(sb);
1463 if (rc != 0 && rc != -ETIMEDOUT &&
1464 rc != -ENOTCONN && rc != -ESHUTDOWN)
1465 CWARN("%s: failed to disconnect lwp: rc= %d\n",
1469 /* Stop the target */
1470 if (!(lsi->lsi_lmd->lmd_flags & LMD_FLG_NOSVC) &&
1471 (IS_MDT(lsi) || IS_OST(lsi))) {
1472 struct lustre_profile *lprof = NULL;
1474 /* tell the mgc to drop the config log */
1475 lustre_end_log(sb, lsi->lsi_svname, NULL);
1477 /* COMPAT_146 - profile may get deleted in mgc_cleanup.
1478 If there are any setup/cleanup errors, save the lov
1479 name for safety cleanup later. */
1480 lprof = class_get_profile(lsi->lsi_svname);
1481 if (lprof && lprof->lp_dt) {
1482 OBD_ALLOC(extraname, strlen(lprof->lp_dt) + 1);
1483 strcpy(extraname, lprof->lp_dt);
1486 obd = class_name2obd(lsi->lsi_svname);
1488 CDEBUG(D_MOUNT, "stopping %s\n", obd->obd_name);
1489 if (lsiflags & LSI_UMOUNT_FAILOVER)
1491 /* We can't seem to give an error return code
1492 * to .put_super, so we better make sure we clean up! */
1494 class_manual_cleanup(obd);
1496 CERROR("no obd %s\n", lsi->lsi_svname);
1497 server_deregister_mount(lsi->lsi_svname);
1501 /* If they wanted the mgs to stop separately from the mdt, they
1502 should have put it on a different device. */
1504 /* if MDS start with --nomgs, don't stop MGS then */
1505 if (!(lsi->lsi_lmd->lmd_flags & LMD_FLG_NOMGS))
1506 server_stop_mgs(sb);
1509 if (IS_OST(lsi) || IS_MDT(lsi)) {
1510 if (lustre_stop_lwp(sb) < 0)
1511 CERROR("%s: failed to stop lwp!\n", tmpname);
1514 /* Clean the mgc and sb */
1515 lustre_common_put_super(sb);
1517 /* wait till all in-progress cleanups are done
1518 * specifically we're interested in ofd cleanup
1520 obd_zombie_barrier();
1522 /* Stop the servers (MDS, OSS) if no longer needed. We must wait
1523 until the target is really gone so that our type refcount check
1525 server_stop_servers(lsiflags);
1527 /* In case of startup or cleanup err, stop related obds */
1529 obd = class_name2obd(extraname);
1531 CWARN("Cleaning orphaned obd %s\n", extraname);
1533 class_manual_cleanup(obd);
1535 OBD_FREE(extraname, strlen(extraname) + 1);
1538 LCONSOLE_WARN("server umount %s complete\n", tmpname);
1539 OBD_FREE(tmpname, tmpname_sz);
1543 /** Called only for 'umount -f'
1545 static void server_umount_begin(struct super_block *sb)
1547 struct lustre_sb_info *lsi = s2lsi(sb);
1550 CDEBUG(D_MOUNT, "umount -f\n");
1551 /* umount = failover
1553 no third way to do non-force, non-failover */
1554 lsi->lsi_flags &= ~LSI_UMOUNT_FAILOVER;
1558 static int server_statfs(struct dentry *dentry, struct kstatfs *buf)
1560 struct super_block *sb = dentry->d_sb;
1561 struct lustre_sb_info *lsi = s2lsi(sb);
1562 struct obd_statfs statfs;
1566 if (lsi->lsi_dt_dev) {
1567 rc = dt_statfs(NULL, lsi->lsi_dt_dev, &statfs);
1569 statfs_unpack(buf, &statfs);
1570 buf->f_type = sb->s_magic;
1576 buf->f_type = sb->s_magic;
1577 buf->f_bsize = sb->s_blocksize;
1583 buf->f_namelen = NAME_MAX;
1587 /** The operations we support directly on the superblock:
1588 * mount, umount, and df.
1590 static struct super_operations server_ops = {
1591 .put_super = server_put_super,
1592 .umount_begin = server_umount_begin, /* umount -f */
1593 .statfs = server_statfs,
1597 * Xattr support for Lustre servers
1599 static ssize_t lustre_getxattr(struct dentry *dentry, const char *name,
1600 void *buffer, size_t size)
1602 if (!selinux_is_enabled())
1607 static int lustre_setxattr(struct dentry *dentry, const char *name,
1608 const void *value, size_t size, int flags)
1613 static ssize_t lustre_listxattr(struct dentry *d_entry, char *name,
1619 const struct inode_operations server_inode_operations = {
1620 .setxattr = lustre_setxattr,
1621 .getxattr = lustre_getxattr,
1622 .listxattr = lustre_listxattr,
1625 #define log2(n) ffz(~(n))
1626 #define LUSTRE_SUPER_MAGIC 0x0BD00BD1
1628 static int server_fill_super_common(struct super_block *sb)
1630 struct inode *root = 0;
1633 CDEBUG(D_MOUNT, "Server sb, dev=%d\n", (int)sb->s_dev);
1635 sb->s_blocksize = 4096;
1636 sb->s_blocksize_bits = log2(sb->s_blocksize);
1637 sb->s_magic = LUSTRE_SUPER_MAGIC;
1638 sb->s_maxbytes = 0; /* we don't allow file IO on server mountpoints */
1639 sb->s_flags |= MS_RDONLY;
1640 sb->s_op = &server_ops;
1642 root = new_inode(sb);
1644 CERROR("Can't make root inode\n");
1648 /* returns -EIO for every operation */
1649 /* make_bad_inode(root); -- badness - can't umount */
1650 /* apparently we need to be a directory for the mount to finish */
1651 root->i_mode = S_IFDIR;
1652 root->i_op = &server_inode_operations;
1653 sb->s_root = d_make_root(root);
1655 CERROR("%s: can't make root dentry\n", sb->s_id);
1662 static int osd_start(struct lustre_sb_info *lsi, unsigned long mflags)
1664 struct lustre_mount_data *lmd = lsi->lsi_lmd;
1665 struct obd_device *obd;
1666 struct dt_device_param p;
1672 "Attempting to start %s, type=%s, lsifl=%x, mountfl=%lx\n",
1673 lsi->lsi_svname, lsi->lsi_osd_type, lsi->lsi_flags, mflags);
1675 sprintf(lsi->lsi_osd_obdname, "%s-osd", lsi->lsi_svname);
1676 strcpy(lsi->lsi_osd_uuid, lsi->lsi_osd_obdname);
1677 strcat(lsi->lsi_osd_uuid, "_UUID");
1678 sprintf(flagstr, "%lu:%lu", mflags, (unsigned long) lmd->lmd_flags);
1680 obd = class_name2obd(lsi->lsi_osd_obdname);
1682 rc = lustre_start_simple(lsi->lsi_osd_obdname,
1684 lsi->lsi_osd_uuid, lmd->lmd_dev,
1685 flagstr, lsi->lsi_lmd->lmd_opts,
1689 obd = class_name2obd(lsi->lsi_osd_obdname);
1693 rc = obd_connect(NULL, &lsi->lsi_osd_exp,
1694 obd, &obd->obd_uuid, NULL, NULL);
1697 class_manual_cleanup(obd);
1698 lsi->lsi_dt_dev = NULL;
1702 LASSERT(obd->obd_lu_dev);
1703 lu_device_get(obd->obd_lu_dev);
1704 lsi->lsi_dt_dev = lu2dt_dev(obd->obd_lu_dev);
1705 LASSERT(lsi->lsi_dt_dev);
1707 /* set disk context for llog usage */
1708 OBD_SET_CTXT_MAGIC(&obd->obd_lvfs_ctxt);
1709 obd->obd_lvfs_ctxt.dt = lsi->lsi_dt_dev;
1711 dt_conf_get(NULL, lsi->lsi_dt_dev, &p);
1716 /** Fill in the superblock info for a Lustre server.
1717 * Mount the device with the correct options.
1718 * Read the on-disk config file.
1719 * Start the services.
1721 int server_fill_super(struct super_block *sb)
1723 struct lustre_sb_info *lsi = s2lsi(sb);
1727 rc = lsi_prepare(lsi);
1731 /* Start low level OSD */
1732 rc = osd_start(lsi, sb->s_flags);
1734 CERROR("Unable to start osd on %s: %d\n",
1735 lsi->lsi_lmd->lmd_dev, rc);
1740 CDEBUG(D_MOUNT, "Found service %s on device %s\n",
1741 lsi->lsi_svname, lsi->lsi_lmd->lmd_dev);
1743 if (class_name2obd(lsi->lsi_svname)) {
1744 LCONSOLE_ERROR_MSG(0x161, "The target named %s is already "
1745 "running. Double-mount may have compromised"
1746 " the disk journal.\n",
1752 /* Start MGS before MGC */
1753 if (IS_MGS(lsi) && !(lsi->lsi_lmd->lmd_flags & LMD_FLG_NOMGS)) {
1754 rc = server_start_mgs(sb);
1759 /* Start MGC before servers */
1760 rc = lustre_start_mgc(sb);
1764 /* Set up all obd devices for service */
1765 if (!(lsi->lsi_lmd->lmd_flags & LMD_FLG_NOSVC) &&
1766 (IS_OST(lsi) || IS_MDT(lsi))) {
1767 rc = server_start_targets(sb);
1769 CERROR("Unable to start targets: %d\n", rc);
1772 /* FIXME overmount client here, or can we just start a
1773 * client log and client_fill_super on this sb? We
1774 * need to make sure server_put_super gets called too
1775 * - ll_put_super calls lustre_common_put_super; check
1776 * there for LSI_SERVER flag, call s_p_s if so.
1778 * Probably should start client from new thread so we
1779 * can return. Client will not finish until all
1780 * servers are connected. Note - MGS-only server does
1781 * NOT get a client, since there is no lustre fs
1782 * associated - the MGS is for all lustre fs's */
1785 rc = server_fill_super_common(sb);
1791 /* We jump here in case of failure while starting targets or MGS.
1792 * In this case we can't just put @mnt and have to do real cleanup
1793 * with stoping targets, etc. */
1794 server_put_super(sb);
1799 * Calculate timeout value for a target.
1801 void server_calc_timeout(struct lustre_sb_info *lsi, struct obd_device *obd)
1803 struct lustre_mount_data *lmd;
1807 bool has_ir = !!(lsi->lsi_flags & LDD_F_IR_CAPABLE);
1808 int min = OBD_RECOVERY_TIME_MIN;
1810 LASSERT(IS_SERVER(lsi));
1814 soft = lmd->lmd_recovery_time_soft;
1815 hard = lmd->lmd_recovery_time_hard;
1816 has_ir = has_ir && !(lmd->lmd_flags & LMD_FLG_NOIR);
1817 obd->obd_no_ir = !has_ir;
1821 soft = OBD_RECOVERY_TIME_SOFT;
1823 hard = OBD_RECOVERY_TIME_HARD;
1825 /* target may have ir_factor configured. */
1826 factor = OBD_IR_FACTOR_DEFAULT;
1827 if (obd->obd_recovery_ir_factor)
1828 factor = obd->obd_recovery_ir_factor;
1831 int new_soft = soft;
1832 int new_hard = hard;
1834 /* adjust timeout value by imperative recovery */
1836 new_soft = (soft * factor) / OBD_IR_FACTOR_MAX;
1837 new_hard = (hard * factor) / OBD_IR_FACTOR_MAX;
1839 /* make sure the timeout is not too short */
1840 new_soft = max(min, new_soft);
1841 new_hard = max(new_soft, new_hard);
1843 LCONSOLE_INFO("%s: Imperative Recovery enabled, recovery "
1844 "window shrunk from %d-%d down to %d-%d\n",
1845 obd->obd_name, soft, hard, new_soft, new_hard);
1852 obd->obd_recovery_timeout = max(obd->obd_recovery_timeout, soft);
1853 obd->obd_recovery_time_hard = hard;
1854 obd->obd_recovery_ir_factor = factor;
1856 EXPORT_SYMBOL(server_calc_timeout);