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.gnu.org/licenses/gpl-2.0.html
23 * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
24 * Use is subject to license terms.
26 * Copyright (c) 2011, 2017, Intel Corporation.
29 * This file is part of Lustre, http://www.lustre.org/
31 * lustre/obdclass/obd_mount.c
33 * Client mount routines
35 * Author: Nathan Rutman <nathan@clusterfs.com>
39 #define DEBUG_SUBSYSTEM S_CLASS
40 #define D_MOUNT (D_SUPER|D_CONFIG/*|D_WARNING */)
41 #define PRINT_CMD CDEBUG
44 #include <obd_class.h>
45 #include <linux/random.h>
46 #include <libcfs/linux/linux-uuid.h>
47 #include <linux/version.h>
48 #include <lustre_log.h>
49 #include <lustre_disk.h>
50 #include <uapi/linux/lustre/lustre_param.h>
51 #include <libcfs/crypto/llcrypt.h>
53 /**************** config llog ********************/
56 * Get a config log from the MGS and process it.
57 * This func is called for both clients and servers.
58 * Continue to process new statements appended to the logs
59 * (whenever the config lock is revoked) until lustre_end_log
62 * @param sb The superblock is used by the MGC to write to the local copy of
64 * @param logname The name of the llog to replicate from the MGS
65 * @param cfg Since the same MGC may be used to follow multiple config logs
66 * (e.g. ost1, ost2, client), the config_llog_instance keeps the state for
67 * this log, and is added to the mgc's list of logs to follow.
69 int lustre_process_log(struct super_block *sb, char *logname,
70 struct config_llog_instance *cfg)
72 struct lustre_cfg *lcfg;
73 struct lustre_cfg_bufs *bufs;
74 struct lustre_sb_info *lsi = s2lsi(sb);
75 struct obd_device *mgc = lsi->lsi_mgc;
87 /* mgc_process_config */
88 lustre_cfg_bufs_reset(bufs, mgc->obd_name);
89 lustre_cfg_bufs_set_string(bufs, 1, logname);
90 lustre_cfg_bufs_set(bufs, 2, cfg, sizeof(*cfg));
91 lustre_cfg_bufs_set(bufs, 3, &sb, sizeof(sb));
92 OBD_ALLOC(lcfg, lustre_cfg_len(bufs->lcfg_bufcount, bufs->lcfg_buflen));
94 GOTO(out, rc = -ENOMEM);
95 lustre_cfg_init(lcfg, LCFG_LOG_START, bufs);
97 rc = obd_process_config(mgc, sizeof(*lcfg), lcfg);
98 OBD_FREE(lcfg, lustre_cfg_len(lcfg->lcfg_bufcount, lcfg->lcfg_buflens));
103 LCONSOLE_ERROR_MSG(0x15b,
104 "%s: Configuration from log %s failed from MGS %d. Check client and MGS are on compatible version.\n",
105 mgc->obd_name, logname, rc);
107 LCONSOLE_ERROR_MSG(0x15c,
108 "%s: Confguration from log %s failed from MGS %d. Communication error between node & MGS, a bad configuration, or other errors. See syslog for more info\n",
109 mgc->obd_name, logname, rc);
111 /* class_obd_list(); */
114 EXPORT_SYMBOL(lustre_process_log);
116 /* Stop watching this config log for updates */
117 int lustre_end_log(struct super_block *sb, char *logname,
118 struct config_llog_instance *cfg)
120 struct lustre_cfg *lcfg;
121 struct lustre_cfg_bufs bufs;
122 struct lustre_sb_info *lsi = s2lsi(sb);
123 struct obd_device *mgc = lsi->lsi_mgc;
131 /* mgc_process_config */
132 lustre_cfg_bufs_reset(&bufs, mgc->obd_name);
133 lustre_cfg_bufs_set_string(&bufs, 1, logname);
135 lustre_cfg_bufs_set(&bufs, 2, cfg, sizeof(*cfg));
136 OBD_ALLOC(lcfg, lustre_cfg_len(bufs.lcfg_bufcount, bufs.lcfg_buflen));
139 lustre_cfg_init(lcfg, LCFG_LOG_END, &bufs);
140 rc = obd_process_config(mgc, sizeof(*lcfg), lcfg);
141 OBD_FREE(lcfg, lustre_cfg_len(lcfg->lcfg_bufcount, lcfg->lcfg_buflens));
144 EXPORT_SYMBOL(lustre_end_log);
146 /**************** OBD start *******************/
149 * lustre_cfg_bufs are a holdover from 1.4; we can still set these up from
150 * lctl (and do for echo cli/srv.
152 static int do_lcfg(char *cfgname, lnet_nid_t nid, int cmd,
153 char *s1, char *s2, char *s3, char *s4)
155 struct lustre_cfg_bufs bufs;
156 struct lustre_cfg *lcfg = NULL;
159 CDEBUG(D_TRACE, "lcfg %s %#x %s %s %s %s\n", cfgname,
160 cmd, s1, s2, s3, s4);
162 lustre_cfg_bufs_reset(&bufs, cfgname);
164 lustre_cfg_bufs_set_string(&bufs, 1, s1);
166 lustre_cfg_bufs_set_string(&bufs, 2, s2);
168 lustre_cfg_bufs_set_string(&bufs, 3, s3);
170 lustre_cfg_bufs_set_string(&bufs, 4, s4);
172 OBD_ALLOC(lcfg, lustre_cfg_len(bufs.lcfg_bufcount, bufs.lcfg_buflen));
175 lustre_cfg_init(lcfg, cmd, &bufs);
176 lcfg->lcfg_nid = nid;
177 rc = class_process_config(lcfg);
178 OBD_FREE(lcfg, lustre_cfg_len(lcfg->lcfg_bufcount, lcfg->lcfg_buflens));
183 * Call class_attach and class_setup. These methods in turn call
184 * OBD type-specific methods.
186 int lustre_start_simple(char *obdname, char *type, char *uuid,
187 char *s1, char *s2, char *s3, char *s4)
191 CDEBUG(D_MOUNT, "Starting OBD %s (typ=%s)\n", obdname, type);
193 rc = do_lcfg(obdname, 0, LCFG_ATTACH, type, uuid, NULL, NULL);
195 CERROR("%s attach error %d\n", obdname, rc);
198 rc = do_lcfg(obdname, 0, LCFG_SETUP, s1, s2, s3, s4);
200 CERROR("%s setup error %d\n", obdname, rc);
201 do_lcfg(obdname, 0, LCFG_DETACH, NULL, NULL, NULL, NULL);
206 static DEFINE_MUTEX(mgc_start_lock);
209 * Set up a MGC OBD to process startup logs
211 * \param sb [in] super block of the MGC OBD
213 * \retval 0 success, otherwise error code
215 int lustre_start_mgc(struct super_block *sb)
217 struct obd_connect_data *data = NULL;
218 struct lustre_sb_info *lsi = s2lsi(sb);
219 struct obd_device *obd;
220 struct obd_export *exp;
221 struct obd_uuid *uuid = NULL;
224 char nidstr[LNET_NIDSTR_SIZE];
225 char *mgcname = NULL, *niduuid = NULL, *mgssec = NULL;
227 int rc = 0, i = 0, j;
232 LASSERT(lsi->lsi_lmd);
234 /* Find the first non-lo MGS NID for our MGC name */
235 if (IS_SERVER(lsi)) {
236 /* mount -o mgsnode=nid */
237 ptr = lsi->lsi_lmd->lmd_mgs;
238 if (lsi->lsi_lmd->lmd_mgs &&
239 (class_parse_nid(lsi->lsi_lmd->lmd_mgs, &nid, &ptr) == 0)) {
241 } else if (IS_MGS(lsi)) {
242 struct lnet_process_id id;
244 while ((rc = LNetGetId(i++, &id)) != -ENOENT) {
245 if (id.nid == LNET_NID_LO_0)
252 } else { /* client */
253 /* Use NIDs from mount line: uml1,1@elan:uml2,2@elan:/lustre */
254 ptr = lsi->lsi_lmd->lmd_dev;
255 if (class_parse_nid(ptr, &nid, &ptr) == 0)
259 CERROR("No valid MGS NIDs found.\n");
263 mutex_lock(&mgc_start_lock);
265 libcfs_nid2str_r(nid, nidstr, sizeof(nidstr));
266 len = strlen(LUSTRE_MGC_OBDNAME) + strlen(nidstr) + 1;
267 OBD_ALLOC(mgcname, len);
268 OBD_ALLOC(niduuid, len + 2);
269 if (mgcname == NULL || niduuid == NULL)
270 GOTO(out_free, rc = -ENOMEM);
271 snprintf(mgcname, len, "%s%s", LUSTRE_MGC_OBDNAME, nidstr);
273 mgssec = lsi->lsi_lmd->lmd_mgssec ? lsi->lsi_lmd->lmd_mgssec : "";
277 GOTO(out_free, rc = -ENOMEM);
279 obd = class_name2obd(mgcname);
280 if (obd && !obd->obd_stopping) {
283 rc = obd_set_info_async(NULL, obd->obd_self_export,
284 strlen(KEY_MGSSEC), KEY_MGSSEC,
285 strlen(mgssec), mgssec, NULL);
289 /* Re-using an existing MGC */
290 atomic_inc(&obd->u.cli.cl_mgc_refcount);
292 /* IR compatibility check, only for clients */
293 if (lmd_is_client(lsi->lsi_lmd)) {
295 int vallen = sizeof(*data);
296 __u32 *flags = &lsi->lsi_lmd->lmd_flags;
298 rc = obd_get_info(NULL, obd->obd_self_export,
299 strlen(KEY_CONN_DATA), KEY_CONN_DATA,
302 has_ir = OCD_HAS_FLAG(data, IMP_RECOV);
303 if (has_ir ^ !(*flags & LMD_FLG_NOIR)) {
304 /* LMD_FLG_NOIR is for test purpose only */
306 "Mounting client with IR setting not compatible with current MGC. Using MGC setting that is IR %s",
307 has_ir ? "enabled" : "disabled");
309 *flags &= ~LMD_FLG_NOIR;
311 *flags |= LMD_FLG_NOIR;
317 * If we are restarting the MGS, don't try to keep the MGC's
318 * old connection, or registration will fail.
321 CDEBUG(D_MOUNT, "New MGS with live MGC\n");
326 * Try all connections, but only once (again).
327 * We don't want to block another target from starting
328 * (using its local copy of the log), but we do want to connect
329 * if at all possible.
332 CDEBUG(D_MOUNT, "%s:Set MGC reconnect %d\n", mgcname, recov_bk);
333 rc = obd_set_info_async(NULL, obd->obd_self_export,
334 sizeof(KEY_INIT_RECOV_BACKUP),
335 KEY_INIT_RECOV_BACKUP,
336 sizeof(recov_bk), &recov_bk, NULL);
340 CDEBUG(D_MOUNT, "Start MGC '%s'\n", mgcname);
342 /* Add the primary NIDs for the MGS */
344 snprintf(niduuid, len + 2, "%s_%x", mgcname, i);
345 if (IS_SERVER(lsi)) {
346 ptr = lsi->lsi_lmd->lmd_mgs;
347 CDEBUG(D_MOUNT, "mgs NIDs %s.\n", ptr);
349 /* Use local NIDs (including LO) */
350 struct lnet_process_id id;
352 while ((rc = LNetGetId(i++, &id)) != -ENOENT) {
353 rc = do_lcfg(mgcname, id.nid, LCFG_ADD_UUID,
354 niduuid, NULL, NULL, NULL);
357 /* Use mgsnode= nids */
358 /* mount -o mgsnode=nid */
359 if (lsi->lsi_lmd->lmd_mgs) {
360 ptr = lsi->lsi_lmd->lmd_mgs;
361 } else if (class_find_param(ptr, PARAM_MGSNODE,
363 CERROR("No MGS NIDs given.\n");
364 GOTO(out_free, rc = -EINVAL);
367 * Add primary MGS NID(s).
368 * Multiple NIDs on one MGS node are separated
371 while (class_parse_nid(ptr, &nid, &ptr) == 0) {
372 rc = do_lcfg(mgcname, nid, LCFG_ADD_UUID,
373 niduuid, NULL, NULL, NULL);
376 /* Stop at the first failover NID */
381 } else { /* client */
382 /* Use NIDs from mount line: uml1,1@elan:uml2,2@elan:/lustre */
383 ptr = lsi->lsi_lmd->lmd_dev;
384 while (class_parse_nid(ptr, &nid, &ptr) == 0) {
385 rc = do_lcfg(mgcname, nid, LCFG_ADD_UUID,
386 niduuid, NULL, NULL, NULL);
389 /* Stop at the first failover NID */
395 CERROR("No valid MGS NIDs found.\n");
396 GOTO(out_free, rc = -EINVAL);
398 lsi->lsi_lmd->lmd_mgs_failnodes = 1;
400 /* Random uuid for MGC allows easier reconnects */
403 GOTO(out_free, rc = -ENOMEM);
405 generate_random_uuid(uuidc.b);
406 snprintf(uuid->uuid, sizeof(*uuid), "%pU", uuidc.b);
409 rc = lustre_start_simple(mgcname, LUSTRE_MGC_NAME,
410 (char *)uuid->uuid, LUSTRE_MGS_OBDNAME,
411 niduuid, NULL, NULL);
415 /* Add any failover MGS NIDs */
417 while (ptr && ((*ptr == ':' ||
418 class_find_param(ptr, PARAM_MGSNODE, &ptr) == 0))) {
419 /* New failover node */
420 sprintf(niduuid, "%s_%x", mgcname, i);
422 while (class_parse_nid_quiet(ptr, &nid, &ptr) == 0) {
423 rc = do_lcfg(mgcname, nid, LCFG_ADD_UUID,
424 niduuid, NULL, NULL, NULL);
431 rc = do_lcfg(mgcname, 0, LCFG_ADD_CONN,
432 niduuid, NULL, NULL, NULL);
440 lsi->lsi_lmd->lmd_mgs_failnodes = i;
442 obd = class_name2obd(mgcname);
444 CERROR("Can't find mgcobd %s\n", mgcname);
445 GOTO(out_free, rc = -ENOTCONN);
448 rc = obd_set_info_async(NULL, obd->obd_self_export,
449 strlen(KEY_MGSSEC), KEY_MGSSEC,
450 strlen(mgssec), mgssec, NULL);
455 * Keep a refcount of servers/clients who started with "mount",
456 * so we know when we can get rid of the mgc.
458 atomic_set(&obd->u.cli.cl_mgc_refcount, 1);
460 /* We connect to the MGS at setup, and don't disconnect until cleanup */
461 data->ocd_connect_flags = OBD_CONNECT_VERSION | OBD_CONNECT_AT |
462 OBD_CONNECT_FULL20 | OBD_CONNECT_IMP_RECOV |
463 OBD_CONNECT_LVB_TYPE |
464 OBD_CONNECT_BULK_MBITS | OBD_CONNECT_BARRIER |
466 data->ocd_connect_flags2 = OBD_CONNECT2_REP_MBITS;
468 if (lmd_is_client(lsi->lsi_lmd) &&
469 lsi->lsi_lmd->lmd_flags & LMD_FLG_NOIR)
470 data->ocd_connect_flags &= ~OBD_CONNECT_IMP_RECOV;
471 data->ocd_version = LUSTRE_VERSION_CODE;
472 rc = obd_connect(NULL, &exp, obd, uuid, data, NULL);
474 CERROR("connect failed %d\n", rc);
478 obd->u.cli.cl_mgc_mgsexp = exp;
482 * Keep the MGC info in the sb. Note that many lsi's can point
487 mutex_unlock(&mgc_start_lock);
494 OBD_FREE(mgcname, len);
496 OBD_FREE(niduuid, len + 2);
499 EXPORT_SYMBOL(lustre_start_mgc);
501 static int lustre_stop_mgc(struct super_block *sb)
503 struct lustre_sb_info *lsi = s2lsi(sb);
504 struct obd_device *obd;
505 char niduuid[MAX_OBD_NAME + 6], *ptr = NULL;
517 mutex_lock(&mgc_start_lock);
518 LASSERT(atomic_read(&obd->u.cli.cl_mgc_refcount) > 0);
519 if (!atomic_dec_and_test(&obd->u.cli.cl_mgc_refcount)) {
521 * This is not fatal, every client that stops
524 CDEBUG(D_MOUNT, "MGC still has %d references.\n",
525 atomic_read(&obd->u.cli.cl_mgc_refcount));
526 GOTO(out, rc = -EBUSY);
530 * The MGC has no recoverable data in any case.
531 * force shotdown set in umount_begin
533 obd->obd_no_recov = 1;
535 if (obd->u.cli.cl_mgc_mgsexp) {
537 * An error is not fatal, if we are unable to send the
538 * disconnect mgs ping evictor cleans up the export
540 rc = obd_disconnect(obd->u.cli.cl_mgc_mgsexp);
542 CDEBUG(D_MOUNT, "disconnect failed %d\n", rc);
546 * Cache the obdname for cleaning the nid uuids, which are
547 * obdname_XX before calling class_manual_cleanup
549 strcpy(niduuid, obd->obd_name);
550 ptr = niduuid + strlen(niduuid);
552 rc = class_manual_cleanup(obd);
556 for (i = 0; i < lsi->lsi_lmd->lmd_mgs_failnodes; i++) {
557 sprintf(ptr, "_%x", i);
558 rc = do_lcfg(LUSTRE_MGC_OBDNAME, 0, LCFG_DEL_UUID,
559 niduuid, NULL, NULL, NULL);
561 CERROR("del MDC UUID %s failed: rc = %d\n",
565 /* class_import_put will get rid of the additional connections */
566 mutex_unlock(&mgc_start_lock);
570 /***************** lustre superblock **************/
572 struct lustre_sb_info *lustre_init_lsi(struct super_block *sb)
574 struct lustre_sb_info *lsi;
581 OBD_ALLOC_PTR(lsi->lsi_lmd);
587 s2lsi_nocast(sb) = lsi;
588 /* we take 1 extra ref for our setup */
589 atomic_set(&lsi->lsi_mounts, 1);
591 /* Default umount style */
592 lsi->lsi_flags = LSI_UMOUNT_FAILOVER;
593 INIT_LIST_HEAD(&lsi->lsi_lwp_list);
594 mutex_init(&lsi->lsi_lwp_mutex);
598 EXPORT_SYMBOL(lustre_init_lsi);
600 static int lustre_free_lsi(struct super_block *sb)
602 struct lustre_sb_info *lsi = s2lsi(sb);
606 LASSERT(lsi != NULL);
607 CDEBUG(D_MOUNT, "Freeing lsi %p\n", lsi);
609 /* someone didn't call server_put_mount. */
610 LASSERT(atomic_read(&lsi->lsi_mounts) == 0);
613 if (lsi->lsi_lmd != NULL) {
614 if (lsi->lsi_lmd->lmd_dev != NULL)
615 OBD_FREE(lsi->lsi_lmd->lmd_dev,
616 strlen(lsi->lsi_lmd->lmd_dev) + 1);
617 if (lsi->lsi_lmd->lmd_profile != NULL)
618 OBD_FREE(lsi->lsi_lmd->lmd_profile,
619 strlen(lsi->lsi_lmd->lmd_profile) + 1);
620 if (lsi->lsi_lmd->lmd_fileset != NULL)
621 OBD_FREE(lsi->lsi_lmd->lmd_fileset,
622 strlen(lsi->lsi_lmd->lmd_fileset) + 1);
623 if (lsi->lsi_lmd->lmd_mgssec != NULL)
624 OBD_FREE(lsi->lsi_lmd->lmd_mgssec,
625 strlen(lsi->lsi_lmd->lmd_mgssec) + 1);
626 if (lsi->lsi_lmd->lmd_opts != NULL)
627 OBD_FREE(lsi->lsi_lmd->lmd_opts,
628 strlen(lsi->lsi_lmd->lmd_opts) + 1);
629 if (lsi->lsi_lmd->lmd_exclude_count)
630 OBD_FREE(lsi->lsi_lmd->lmd_exclude,
631 sizeof(lsi->lsi_lmd->lmd_exclude[0]) *
632 lsi->lsi_lmd->lmd_exclude_count);
633 if (lsi->lsi_lmd->lmd_mgs != NULL)
634 OBD_FREE(lsi->lsi_lmd->lmd_mgs,
635 strlen(lsi->lsi_lmd->lmd_mgs) + 1);
636 if (lsi->lsi_lmd->lmd_osd_type != NULL)
637 OBD_FREE(lsi->lsi_lmd->lmd_osd_type,
638 strlen(lsi->lsi_lmd->lmd_osd_type) + 1);
639 if (lsi->lsi_lmd->lmd_params != NULL)
640 OBD_FREE(lsi->lsi_lmd->lmd_params, 4096);
641 if (lsi->lsi_lmd->lmd_nidnet != NULL)
642 OBD_FREE(lsi->lsi_lmd->lmd_nidnet,
643 strlen(lsi->lsi_lmd->lmd_nidnet) + 1);
645 OBD_FREE_PTR(lsi->lsi_lmd);
648 LASSERT(lsi->lsi_llsbi == NULL);
650 s2lsi_nocast(sb) = NULL;
656 * The lsi has one reference for every server that is using the disk -
657 * e.g. MDT, MGS, and potentially MGC
659 int lustre_put_lsi(struct super_block *sb)
661 struct lustre_sb_info *lsi = s2lsi(sb);
665 LASSERT(lsi != NULL);
667 CDEBUG(D_MOUNT, "put %p %d\n", sb, atomic_read(&lsi->lsi_mounts));
668 if (atomic_dec_and_test(&lsi->lsi_mounts)) {
669 if (IS_SERVER(lsi) && lsi->lsi_osd_exp) {
670 lu_device_put(&lsi->lsi_dt_dev->dd_lu_dev);
671 lsi->lsi_osd_exp->exp_obd->obd_lvfs_ctxt.dt = NULL;
672 lsi->lsi_dt_dev = NULL;
673 obd_disconnect(lsi->lsi_osd_exp);
674 /* wait till OSD is gone */
675 obd_zombie_barrier();
682 EXPORT_SYMBOL(lustre_put_lsi);
685 * The goal of this function is to extract the file system name
686 * from the OBD name. This can come in two flavors. One is
687 * fsname-MDTXXXX or fsname-XXXXXXX were X is a hexadecimal
688 * number. In both cases we should return fsname. If it is
689 * not a valid OBD name it is assumed to be the file system
692 void obdname2fsname(const char *tgt, char *fsname, size_t buflen)
699 * First we have to see if the @tgt has '-' at all. It is
700 * valid for the user to request something like
701 * lctl set_param -P llite.lustre*.xattr_cache=0
703 ptr = strrchr(tgt, '-');
705 /* No '-' means it could end in '*' */
706 ptr = strchr(tgt, '*');
708 /* No '*' either. Assume tgt = fsname */
716 /* tgt format fsname-MDT0000-* */
717 if ((!strncmp(ptr, "-MDT", 4) ||
718 !strncmp(ptr, "-OST", 4)) &&
719 (isxdigit(ptr[4]) && isxdigit(ptr[5]) &&
720 isxdigit(ptr[6]) && isxdigit(ptr[7]))) {
726 * tgt_format fsname-cli'dev'-'uuid' except for the llite case
727 * which are named fsname-'uuid'. Examples:
729 * lustre-clilov-ffff88104db5b800
730 * lustre-ffff88104db5b800 (for llite device)
732 * The length of the OBD uuid can vary on different platforms.
733 * This test if any invalid characters are in string. Allow
734 * wildcards with '*' character.
737 if (!strspn(ptr, "0123456789abcdefABCDEF*")) {
743 * Now that we validated the device name lets extract the
744 * file system name. Most of the names in this class will
745 * have '-cli' in its name which needs to be dropped. If
746 * it doesn't have '-cli' then its a llite device which
747 * ptr already points to the start of the uuid string.
749 tmp = strstr(tgt, "-cli");
756 len = min_t(size_t, len, LUSTRE_MAXFSNAME);
757 snprintf(fsname, buflen, "%.*s", (int)len, tgt);
761 EXPORT_SYMBOL(obdname2fsname);
765 * <FSNAME><SEPARATOR><TYPE><INDEX>
766 * FSNAME is between 1 and 8 characters (inclusive).
767 * Excluded characters are '/' and ':'
768 * SEPARATOR is either ':' or '-'
769 * TYPE: "OST", "MDT", etc.
770 * INDEX: Hex representation of the index
774 * Get the fsname ("lustre") from the server name ("lustre-OST003F").
775 * @param [in] svname server name including type and index
776 * @param [out] fsname Buffer to copy filesystem name prefix into.
777 * Must have at least 'strlen(fsname) + 1' chars.
778 * @param [out] endptr if endptr isn't NULL it is set to end of fsname
781 int server_name2fsname(const char *svname, char *fsname, const char **endptr)
785 dash = svname + strnlen(svname, LUSTRE_MAXFSNAME);
786 for (; dash > svname && *dash != '-' && *dash != ':'; dash--)
791 if (fsname != NULL) {
792 strncpy(fsname, svname, dash - svname);
793 fsname[dash - svname] = '\0';
801 EXPORT_SYMBOL(server_name2fsname);
804 * Get service name (svname) from string
806 * if endptr isn't NULL it is set to end of fsname *
808 int server_name2svname(const char *label, char *svname, const char **endptr,
814 /* We use server_name2fsname() just for parsing */
815 rc = server_name2fsname(label, NULL, &dash);
822 if (strlcpy(svname, dash + 1, svsize) >= svsize)
827 EXPORT_SYMBOL(server_name2svname);
830 * check server name is OST.
832 int server_name_is_ost(const char *svname)
837 /* We use server_name2fsname() just for parsing */
838 rc = server_name2fsname(svname, NULL, &dash);
844 if (strncmp(dash, "OST", 3) == 0)
848 EXPORT_SYMBOL(server_name_is_ost);
851 * Get the index from the target name MDTXXXX/OSTXXXX
852 * rc = server type, or rc < 0 on error
854 int target_name2index(const char *tgtname, __u32 *idx, const char **endptr)
856 const char *dash = tgtname;
860 if (strncmp(dash, "MDT", 3) == 0)
861 rc = LDD_F_SV_TYPE_MDT;
862 else if (strncmp(dash, "OST", 3) == 0)
863 rc = LDD_F_SV_TYPE_OST;
869 if (strncmp(dash, "all", 3) == 0) {
872 return rc | LDD_F_SV_ALL;
875 index = simple_strtoul(dash, (char **)endptr, 16);
884 EXPORT_SYMBOL(target_name2index);
887 * Get the index from the OBD name.
888 * rc = server type, or
890 * if endptr isn't NULL it is set to end of name
892 int server_name2index(const char *svname, __u32 *idx, const char **endptr)
897 /* We use server_name2fsname() just for parsing */
898 rc = server_name2fsname(svname, NULL, &dash);
903 rc = target_name2index(dash, idx, endptr);
907 /* Account for -mdc after index that is possible when specifying mdt */
908 if (endptr != NULL && strncmp(LUSTRE_MDC_NAME, *endptr + 1,
909 sizeof(LUSTRE_MDC_NAME)-1) == 0)
910 *endptr += sizeof(LUSTRE_MDC_NAME);
914 EXPORT_SYMBOL(server_name2index);
916 /*************** mount common betweeen server and client ***************/
919 int lustre_common_put_super(struct super_block *sb)
925 CDEBUG(D_MOUNT, "dropping sb %p\n", sb);
927 /* Drop a ref to the MGC */
928 rc = lustre_stop_mgc(sb);
929 if (rc && (rc != -ENOENT)) {
931 CERROR("Can't stop MGC: %d\n", rc);
935 * BUSY just means that there's some other OBD that
936 * needs the mgc. Let him clean it up.
938 CDEBUG(D_MOUNT, "MGC still in use\n");
940 /* Drop a ref to the mounted disk */
945 EXPORT_SYMBOL(lustre_common_put_super);
947 static void lmd_print(struct lustre_mount_data *lmd)
951 PRINT_CMD(D_MOUNT, " mount data:\n");
952 if (lmd_is_client(lmd))
953 PRINT_CMD(D_MOUNT, "profile: %s\n", lmd->lmd_profile);
954 PRINT_CMD(D_MOUNT, "device: %s\n", lmd->lmd_dev);
955 PRINT_CMD(D_MOUNT, "flags: %x\n", lmd->lmd_flags);
958 PRINT_CMD(D_MOUNT, "options: %s\n", lmd->lmd_opts);
960 if (lmd->lmd_recovery_time_soft)
961 PRINT_CMD(D_MOUNT, "recovery time soft: %d\n",
962 lmd->lmd_recovery_time_soft);
964 if (lmd->lmd_recovery_time_hard)
965 PRINT_CMD(D_MOUNT, "recovery time hard: %d\n",
966 lmd->lmd_recovery_time_hard);
968 for (i = 0; i < lmd->lmd_exclude_count; i++) {
969 PRINT_CMD(D_MOUNT, "exclude %d: OST%04x\n", i,
970 lmd->lmd_exclude[i]);
974 /* Is this server on the exclusion list */
975 int lustre_check_exclusion(struct super_block *sb, char *svname)
977 struct lustre_sb_info *lsi = s2lsi(sb);
978 struct lustre_mount_data *lmd = lsi->lsi_lmd;
984 rc = server_name2index(svname, &index, NULL);
985 if (rc != LDD_F_SV_TYPE_OST)
986 /* Only exclude OSTs */
989 CDEBUG(D_MOUNT, "Check exclusion %s (%d) in %d of %s\n", svname,
990 index, lmd->lmd_exclude_count, lmd->lmd_dev);
992 for (i = 0; i < lmd->lmd_exclude_count; i++) {
993 if (index == lmd->lmd_exclude[i]) {
994 CWARN("Excluding %s (on exclusion list)\n", svname);
1001 /* mount -v -o exclude=lustre-OST0001:lustre-OST0002 -t lustre ... */
1002 static int lmd_make_exclusion(struct lustre_mount_data *lmd, const char *ptr)
1004 const char *s1 = ptr, *s2;
1005 __u32 *exclude_list;
1012 * The shortest an ost name can be is 8 chars: -OST0000.
1013 * We don't actually know the fsname at this time, so in fact
1014 * a user could specify any fsname.
1016 devmax = strlen(ptr) / 8 + 1;
1018 /* temp storage until we figure out how many we have */
1019 OBD_ALLOC_PTR_ARRAY(exclude_list, devmax);
1023 /* we enter this fn pointing at the '=' */
1024 while (*s1 && *s1 != ' ' && *s1 != ',') {
1026 rc = server_name2index(s1, &index, &s2);
1028 CERROR("Can't parse server name '%s': rc = %d\n",
1032 if (rc == LDD_F_SV_TYPE_OST)
1033 exclude_list[lmd->lmd_exclude_count++] = index;
1035 CDEBUG(D_MOUNT, "ignoring exclude %.*s: type = %#x\n",
1036 (uint)(s2-s1), s1, rc);
1039 * now we are pointing at ':' (next exclude)
1040 * or ',' (end of excludes)
1042 if (lmd->lmd_exclude_count >= devmax)
1045 if (rc >= 0) /* non-err */
1048 if (lmd->lmd_exclude_count) {
1049 /* permanent, freed in lustre_free_lsi */
1050 OBD_ALLOC_PTR_ARRAY(lmd->lmd_exclude,
1051 lmd->lmd_exclude_count);
1052 if (lmd->lmd_exclude) {
1053 memcpy(lmd->lmd_exclude, exclude_list,
1054 sizeof(index) * lmd->lmd_exclude_count);
1057 lmd->lmd_exclude_count = 0;
1060 OBD_FREE_PTR_ARRAY(exclude_list, devmax);
1064 static int lmd_parse_mgssec(struct lustre_mount_data *lmd, char *ptr)
1069 if (lmd->lmd_mgssec != NULL) {
1070 OBD_FREE(lmd->lmd_mgssec, strlen(lmd->lmd_mgssec) + 1);
1071 lmd->lmd_mgssec = NULL;
1074 tail = strchr(ptr, ',');
1076 length = strlen(ptr);
1078 length = tail - ptr;
1080 OBD_ALLOC(lmd->lmd_mgssec, length + 1);
1081 if (lmd->lmd_mgssec == NULL)
1084 memcpy(lmd->lmd_mgssec, ptr, length);
1085 lmd->lmd_mgssec[length] = '\0';
1089 static int lmd_parse_network(struct lustre_mount_data *lmd, char *ptr)
1094 if (lmd->lmd_nidnet != NULL) {
1095 OBD_FREE(lmd->lmd_nidnet, strlen(lmd->lmd_nidnet) + 1);
1096 lmd->lmd_nidnet = NULL;
1099 tail = strchr(ptr, ',');
1101 length = strlen(ptr);
1103 length = tail - ptr;
1105 OBD_ALLOC(lmd->lmd_nidnet, length + 1);
1106 if (lmd->lmd_nidnet == NULL)
1109 memcpy(lmd->lmd_nidnet, ptr, length);
1110 lmd->lmd_nidnet[length] = '\0';
1114 static int lmd_parse_string(char **handle, char *ptr)
1119 if ((handle == NULL) || (ptr == NULL))
1122 if (*handle != NULL) {
1123 OBD_FREE(*handle, strlen(*handle) + 1);
1127 tail = strchr(ptr, ',');
1129 length = strlen(ptr);
1131 length = tail - ptr;
1133 OBD_ALLOC(*handle, length + 1);
1134 if (*handle == NULL)
1137 memcpy(*handle, ptr, length);
1138 (*handle)[length] = '\0';
1143 /* Collect multiple values for mgsnid specifiers */
1144 static int lmd_parse_mgs(struct lustre_mount_data *lmd, char **ptr)
1152 /* Find end of NID-list */
1153 while (class_parse_nid_quiet(tail, &nid, &tail) == 0)
1156 length = tail - *ptr;
1158 LCONSOLE_ERROR_MSG(0x159, "Can't parse NID '%s'\n", *ptr);
1162 if (lmd->lmd_mgs != NULL)
1163 oldlen = strlen(lmd->lmd_mgs) + 1;
1165 OBD_ALLOC(mgsnid, oldlen + length + 1);
1169 if (lmd->lmd_mgs != NULL) {
1170 /* Multiple mgsnid= are taken to mean failover locations */
1171 memcpy(mgsnid, lmd->lmd_mgs, oldlen);
1172 mgsnid[oldlen - 1] = ':';
1173 OBD_FREE(lmd->lmd_mgs, oldlen);
1175 memcpy(mgsnid + oldlen, *ptr, length);
1176 mgsnid[oldlen + length] = '\0';
1177 lmd->lmd_mgs = mgsnid;
1184 * Find the first delimiter (comma or colon) from the specified \a buf and
1185 * make \a *endh point to the string starting with the delimiter. The commas
1186 * in expression list [...] will be skipped.
1188 * @buf a delimiter-separated string
1189 * @endh a pointer to a pointer that will point to the string
1190 * starting with the delimiter
1192 * RETURNS true if delimiter is found, false if delimiter is not found
1194 static bool lmd_find_delimiter(char *buf, char **endh)
1203 if (*c == ',' || *c == ':')
1206 pos = strcspn(c, "[:,]");
1210 /* Not a valid mount string */
1212 CWARN("invalid mount string format\n");
1220 /* invalid mount string */
1222 CWARN("invalid mount string format\n");
1237 * Find the first valid string delimited by comma or colon from the specified
1238 * \a buf and parse it to see whether it's a valid NID list. If yes, \a *endh
1239 * will point to the next string starting with the delimiter.
1241 * \param[in] buf a delimiter-separated string
1242 * \param[in] endh a pointer to a pointer that will point to the string
1243 * starting with the delimiter
1245 * \retval 0 if the string is a valid NID list
1246 * \retval 1 if the string is not a valid NID list
1248 static int lmd_parse_nidlist(char *buf, char **endh)
1257 while (*buf == ',' || *buf == ':')
1259 if (*buf == ' ' || *buf == '/' || *buf == '\0')
1262 if (!lmd_find_delimiter(buf, &endp))
1263 endp = buf + strlen(buf);
1268 if (cfs_parse_nidlist(buf, strlen(buf), &nidlist) <= 0)
1270 cfs_free_nidlist(&nidlist);
1281 * Parse mount line options
1282 * e.g. mount -v -t lustre -o abort_recov uml1:uml2:/lustre-client /mnt/lustre
1283 * dev is passed as device=uml1:/lustre by mount.lustre_tgt
1285 int lmd_parse(char *options, struct lustre_mount_data *lmd)
1287 char *s1, *s2, *devname = NULL;
1288 struct lustre_mount_data *raw = (struct lustre_mount_data *)options;
1295 LCONSOLE_ERROR_MSG(0x162,
1296 "Missing mount data: check /sbin/mount.lustre_tgt is installed.\n");
1300 /* Options should be a string - try to detect old lmd data */
1301 if ((raw->lmd_magic & 0xffffff00) == (LMD_MAGIC & 0xffffff00)) {
1302 LCONSOLE_ERROR_MSG(0x163,
1303 "Using an old version of /sbin/mount.lustre. Please install version %s\n",
1304 LUSTRE_VERSION_STRING);
1307 lmd->lmd_magic = LMD_MAGIC;
1309 OBD_ALLOC(lmd->lmd_params, LMD_PARAMS_MAXLEN);
1310 if (lmd->lmd_params == NULL)
1312 lmd->lmd_params[0] = '\0';
1314 /* Set default flags here */
1319 int time_min = OBD_RECOVERY_TIME_MIN;
1322 /* Skip whitespace and extra commas */
1323 while (*s1 == ' ' || *s1 == ',')
1328 * Client options are parsed in ll_options: eg. flock,
1333 * Parse non-ldiskfs options here. Rather than modifying
1334 * ldiskfs, we just zero these out here
1336 if (strncmp(s1, "abort_recov", 11) == 0) {
1337 lmd->lmd_flags |= LMD_FLG_ABORT_RECOV;
1339 } else if (strncmp(s1, "abort_recov_mdt", 15) == 0) {
1340 lmd->lmd_flags |= LMD_FLG_ABORT_RECOV_MDT;
1342 } else if (strncmp(s1, "recovery_time_soft=", 19) == 0) {
1343 lmd->lmd_recovery_time_soft =
1344 max_t(int, simple_strtoul(s1 + 19, NULL, 10),
1347 } else if (strncmp(s1, "recovery_time_hard=", 19) == 0) {
1348 lmd->lmd_recovery_time_hard =
1349 max_t(int, simple_strtoul(s1 + 19, NULL, 10),
1352 } else if (strncmp(s1, "no_precreate", 12) == 0) {
1353 lmd->lmd_flags |= LMD_FLG_NO_PRECREATE;
1355 } else if (strncmp(s1, "noir", 4) == 0) {
1356 lmd->lmd_flags |= LMD_FLG_NOIR; /* test purpose only. */
1358 } else if (strncmp(s1, "nosvc", 5) == 0) {
1359 lmd->lmd_flags |= LMD_FLG_NOSVC;
1361 } else if (strncmp(s1, "nomgs", 5) == 0) {
1362 lmd->lmd_flags |= LMD_FLG_NOMGS;
1364 } else if (strncmp(s1, "noscrub", 7) == 0) {
1365 lmd->lmd_flags |= LMD_FLG_NOSCRUB;
1367 } else if (strncmp(s1, "skip_lfsck", 10) == 0) {
1368 lmd->lmd_flags |= LMD_FLG_SKIP_LFSCK;
1370 } else if (strncmp(s1, "rdonly_dev", 10) == 0) {
1371 lmd->lmd_flags |= LMD_FLG_DEV_RDONLY;
1373 } else if (strncmp(s1, PARAM_MGSNODE,
1374 sizeof(PARAM_MGSNODE) - 1) == 0) {
1375 s2 = s1 + sizeof(PARAM_MGSNODE) - 1;
1377 * Assume the next mount opt is the first
1378 * invalid NID we get to.
1380 rc = lmd_parse_mgs(lmd, &s2);
1385 } else if (strncmp(s1, "writeconf", 9) == 0) {
1386 lmd->lmd_flags |= LMD_FLG_WRITECONF;
1388 } else if (strncmp(s1, "nolocallogs", 11) == 0) {
1389 lmd->lmd_flags |= LMD_FLG_NO_LOCAL_LOGS;
1391 } else if (strncmp(s1, "update", 6) == 0) {
1392 lmd->lmd_flags |= LMD_FLG_UPDATE;
1394 } else if (strncmp(s1, "virgin", 6) == 0) {
1395 lmd->lmd_flags |= LMD_FLG_VIRGIN;
1397 } else if (strncmp(s1, "noprimnode", 10) == 0) {
1398 lmd->lmd_flags |= LMD_FLG_NO_PRIMNODE;
1400 } else if (strncmp(s1, "mgssec=", 7) == 0) {
1401 rc = lmd_parse_mgssec(lmd, s1 + 7);
1405 /* ost exclusion list */
1406 } else if (strncmp(s1, "exclude=", 8) == 0) {
1407 rc = lmd_make_exclusion(lmd, s1 + 7);
1411 } else if (strncmp(s1, "mgs", 3) == 0) {
1413 lmd->lmd_flags |= LMD_FLG_MGS;
1415 } else if (strncmp(s1, "svname=", 7) == 0) {
1416 rc = lmd_parse_string(&lmd->lmd_profile, s1 + 7);
1420 } else if (strncmp(s1, "param=", 6) == 0) {
1421 size_t length, params_length;
1424 if (lmd_find_delimiter(s1 + 6, &tail)) {
1425 char *param_str = tail + 1;
1426 int supplementary = 1;
1428 while (lmd_parse_nidlist(param_str,
1432 length = param_str - s1 - supplementary;
1434 length = strlen(s1);
1437 params_length = strlen(lmd->lmd_params);
1438 if (params_length + length + 1 >= LMD_PARAMS_MAXLEN)
1440 strncat(lmd->lmd_params, s1 + 6, length);
1441 lmd->lmd_params[params_length + length] = '\0';
1442 strlcat(lmd->lmd_params, " ", LMD_PARAMS_MAXLEN);
1443 s3 = s1 + 6 + length;
1445 } else if (strncmp(s1, "localrecov", 10) == 0) {
1446 lmd->lmd_flags |= LMD_FLG_LOCAL_RECOV;
1448 } else if (strncmp(s1, "osd=", 4) == 0) {
1449 rc = lmd_parse_string(&lmd->lmd_osd_type, s1 + 4);
1455 * Linux 2.4 doesn't pass the device, so we stuck it at
1456 * the end of the options.
1458 else if (strncmp(s1, "device=", 7) == 0) {
1461 * terminate options right before device. device
1462 * must be the last one.
1466 } else if (strncmp(s1, "network=", 8) == 0) {
1467 rc = lmd_parse_network(lmd, s1 + 8);
1471 /* check if LNet dynamic peer discovery is activated */
1472 if (LNetGetPeerDiscoveryStatus()) {
1473 CERROR("LNet Dynamic Peer Discovery is enabled "
1474 "on this node. 'network' mount option "
1475 "cannot be taken into account.\n");
1483 s2 = strchr(s3, ',');
1491 memmove(s1, s2, strlen(s2) + 1);
1497 LCONSOLE_ERROR_MSG(0x164,
1498 "Can't find device name (need mount option 'device=...')\n");
1502 s1 = strstr(devname, ":/");
1505 lmd->lmd_flags |= LMD_FLG_CLIENT;
1506 /* Remove leading /s from fsname */
1507 while (*++s1 == '/')
1510 while (*s2 != '/' && *s2 != '\0')
1512 /* Freed in lustre_free_lsi */
1513 OBD_ALLOC(lmd->lmd_profile, s2 - s1 + 8);
1514 if (!lmd->lmd_profile)
1517 strncat(lmd->lmd_profile, s1, s2 - s1);
1518 strncat(lmd->lmd_profile, "-client", 7);
1521 s2 = s1 + strlen(s1) - 1;
1522 /* Remove padding /s from fileset */
1526 OBD_ALLOC(lmd->lmd_fileset, s2 - s1 + 2);
1527 if (lmd->lmd_fileset == NULL) {
1528 OBD_FREE(lmd->lmd_profile,
1529 strlen(lmd->lmd_profile) + 1);
1532 strncat(lmd->lmd_fileset, s1, s2 - s1 + 1);
1536 if (lmd->lmd_nidnet != NULL) {
1537 /* 'network=' mount option forbidden for server */
1538 OBD_FREE(lmd->lmd_nidnet, strlen(lmd->lmd_nidnet) + 1);
1539 lmd->lmd_nidnet = NULL;
1542 "%s: option 'network=' not allowed for Lustre servers: rc = %d\n",
1548 /* Freed in lustre_free_lsi */
1549 OBD_ALLOC(lmd->lmd_dev, strlen(devname) + 1);
1552 strncpy(lmd->lmd_dev, devname, strlen(devname)+1);
1554 /* Save mount options */
1555 s1 = options + strlen(options) - 1;
1556 while (s1 >= options && (*s1 == ',' || *s1 == ' '))
1558 while (*options && (*options == ',' || *options == ' '))
1560 if (*options != 0) {
1561 /* Freed in lustre_free_lsi */
1562 OBD_ALLOC(lmd->lmd_opts, strlen(options) + 1);
1565 strncpy(lmd->lmd_opts, options, strlen(options)+1);
1569 lmd->lmd_magic = LMD_MAGIC;
1574 CERROR("Bad mount options %s\n", options);
1577 EXPORT_SYMBOL(lmd_parse);
1579 #ifdef HAVE_SERVER_SUPPORT
1581 * This is the entry point for the mount call into Lustre.
1582 * This is called when a server target is mounted,
1583 * and this is where we start setting things up.
1584 * @param data Mount options (e.g. -o flock,abort_recov)
1586 static int lustre_tgt_fill_super(struct super_block *sb, void *lmd2_data,
1589 struct lustre_mount_data *lmd;
1590 struct lustre_sb_info *lsi;
1595 CDEBUG(D_MOUNT|D_VFSTRACE, "VFS Op: sb %p\n", sb);
1597 lsi = lustre_init_lsi(sb);
1603 * Disable lockdep during mount, because mount locking patterns are
1609 * LU-639: the OBD cleanup of last mount may not finish yet, wait here.
1611 obd_zombie_barrier();
1613 /* Figure out the lmd from the mount options */
1614 if (lmd_parse(lmd2_data, lmd)) {
1616 GOTO(out, rc = -EINVAL);
1619 if (lmd_is_client(lmd)) {
1621 CERROR("%s: attempting to mount a client with -t lustre_tgt' which is only for server-side mounts: rc = %d\n",
1627 CDEBUG(D_MOUNT, "Mounting server from %s\n", lmd->lmd_dev);
1628 rc = server_fill_super(sb);
1630 * server_fill_super calls lustre_start_mgc after the mount
1631 * because we need the MGS NIDs which are stored on disk.
1632 * Plus, we may need to start the MGS first.
1634 * server_fill_super will call server_put_super on failure
1636 * If error happens in fill_super() call, @lsi will be killed there.
1637 * This is why we do not put it here.
1641 CERROR("Unable to mount %s (%d)\n",
1642 s2lsi(sb) ? lmd->lmd_dev : "", rc);
1644 CDEBUG(D_SUPER, "Mount %s complete\n",
1651 /***************** FS registration ******************/
1652 static struct dentry *lustre_tgt_mount(struct file_system_type *fs_type,
1653 int flags, const char *devname,
1656 return mount_nodev(fs_type, flags, data, lustre_tgt_fill_super);
1659 /* Register the "lustre_tgt" fs type.
1661 * Right now this isn't any different than the normal "lustre" filesystem
1662 * type, but it is added so that there is some compatibility to allow
1663 * changing documentation and scripts to start using the "lustre_tgt" type
1664 * at mount time. That will simplify test interop, and in case of upgrades
1665 * that change to the new type and then need to roll back for some reason.
1667 * The long-term goal is to disentangle the client and server mount code.
1669 static struct file_system_type lustre_tgt_fstype = {
1670 .owner = THIS_MODULE,
1671 .name = "lustre_tgt",
1672 .mount = lustre_tgt_mount,
1673 .kill_sb = kill_anon_super,
1674 .fs_flags = FS_REQUIRES_DEV | FS_RENAME_DOES_D_MOVE,
1676 MODULE_ALIAS_FS("lustre_tgt");
1678 int lustre_tgt_register_fs(void)
1680 return register_filesystem(&lustre_tgt_fstype);
1683 void lustre_tgt_unregister_fs(void)
1685 unregister_filesystem(&lustre_tgt_fstype);
1688 #endif /* HAVE_SERVER_SUPPORT */