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/
30 * Lustre is a trademark of Sun Microsystems, Inc.
32 * lustre/utils/mount_lustre.c
34 * Author: Robert Read <rread@clusterfs.com>
35 * Author: Nathan Rutman <nathan@clusterfs.com>
50 #include <sys/mount.h>
51 #include <sys/param.h>
52 #include <linux/lustre/lustre_ver.h>
55 #if defined(HAVE_LUSTRE_CRYPTO) && defined(HAVE_LIBKEYUTILS)
58 #include <linux/lnet/nidstr.h>
59 #include <libcfs/util/string.h>
62 #include "mount_utils.h"
65 # define WITH_LIBMOUNT "(libmount)"
67 # define WITH_LIBMOUNT ""
70 #define MAX_RETRIES 99
79 "\nThis mount helper should only be invoked via the mount (8) command,\ne.g. mount -t lustre dev dir\n\n");
80 fprintf(out, "usage: %s [-fhnvV] [-o <srvopt>] <device> <mountpt>\n",
82 fprintf(out, "usage: %s [-fhnvV] [-o <cliopt>] <mgstarget> <mountpt>\n",
85 "\t<device>: the local disk device when mounting a server\n"
86 "\t<mgstarget>: the server MGS and filesystem for a client:\n"
87 "\t\t<mgsnid>[:<altmgsnid>...]:/<filesystem>[/<subdir>]\n"
88 "\t\t\t<mgsnid>: MGS LNet Node Identifier (e.g. mgs01@o2ib)\n"
89 "\t\t\t<filesystem>: Lustre filesystem name (e.g. lustre1)\n"
90 "\t\t\t<subdir>: subdirectory of the filesystem to mount\n"
91 "\t<mountpt>: filesystem mountpoint (e.g. /mnt/lustre)\n"
92 "\t-f|--fake: fake mount (only update /etc/mtab)\n"
93 "\t-o force|--force: force mount even if already in /etc/mtab\n"
94 "\t-h|--help: print this usage message\n"
95 "\t-n|--nomtab: do not update /etc/mtab after mount\n"
96 "\t-v|--verbose: print verbose config settings\n"
97 "\t-V|--version: output build version of the utility and exit\n"
98 "\tdefault options are marked below with '*'\n"
99 "\t\t(no)flock: disable* or enable POSIX flock support\n"
100 "\t\t(no)user_xattr: disable or enable* user xattr namespace\n"
101 "\t<srvopt>: one or more comma separated server options:\n"
102 "\t\t(no)acl: disable or enable* POSIX ACL support completely\n"
103 "\t\tabort_recov: abort server recovery handling\n"
104 "\t\tnosvc: only start MGC/MGS without starting MDS/OSS\n"
105 "\t\tnomgs: only start target MDS/OSS, using existing MGS\n"
106 "\t\tnoscrub: do NOT auto start OI scrub unless requested\n"
107 "\t\tskip_lfsck: do NOT auto resume paused/crashed LFSCK\n"
108 "\t\tmd_stripe_cache_size=<num>: set MD RAID device stripe cache size\n"
109 "\t<cliopt>: one or more comma separated client options:\n"
110 "\t\texclude=<ostname>[:<ostname>]: list of inactive OSTs (e.g. lustre-OST0001)\n"
111 "\t\tlocalflock: enable POSIX flock only on local client\n"
112 "\t\tretry=<num>: number of times mount is retried by client\n"
114 "\t\tskpath=<file|directory>: path of keys to load into kernel keyring\n"
116 "\t\t(no)user_fid2path: disable* or enable user $MOUNT/.lustre/fid access\n"
117 "\t\t(no)checksum: disable or enable* data checksums\n"
118 "\t\t(no)lruresize: disable or enable* LDLM dynamic LRU size\n"
119 "\t\t(no)lazystatfs: disable or enable* statfs to work if OST is unavailable\n"
120 "\t\t32bitapi: return only 32-bit inode numbers to userspace\n"
121 "\t\t(no)verbose: disable or enable* messages at filesystem (un,re)mount\n"
122 #ifdef HAVE_LUSTRE_CRYPTO
123 #ifdef HAVE_LIBKEYUTILS
124 "\t\ttest_dummy_encryption: enable test dummy encryption mode\n"
126 "\t\tnoencrypt: disable client side encryption\n"
129 exit((out != stdout) ? EINVAL : 0);
132 /* Get rid of symbolic hostnames for tcp, since kernel can't do lookups */
133 #define MAXNIDSTR 1024
134 static char *convert_hostnames(char *s1)
136 char *converted, *s2 = 0, *c;
138 int left = MAXNIDSTR;
141 converted = malloc(left);
143 fprintf(stderr, "out of memory: needed %d bytes\n",
148 while ((left > 0) && (*s1 != '/')) {
149 s2 = strpbrk(s1, ",:");
154 nid = libcfs_str2nid(s1);
155 *s2 = sep; /* back to original string */
156 if (nid == LNET_NID_ANY)
158 c += scnprintf(c, left, "%s%c", libcfs_nid2str(nid), sep);
159 left = converted + MAXNIDSTR - c;
162 snprintf(c, left, "%s", s1);
165 fprintf(stderr, "%s: Can't parse NID '%s'\n", progname, s1);
170 /*****************************************************************************
172 * This part was cribbed from util-linux/mount/mount.c. There was no clear
173 * license information, but many other files in the package are identified as
174 * GNU GPL, so it's a pretty safe bet that was their intent.
176 ****************************************************************************/
178 const char *opt; /* option name */
179 int inv; /* true if flag value should be inverted */
180 int mask; /* flag mask value */
183 static const struct opt_map opt_map[] = {
184 /* these flags are parsed by mount, not Lustre */
185 { .opt = "async", .mask = MS_SYNCHRONOUS, .inv = 1 }, /* asynchronous I/O */
186 { .opt = "atime", .mask = MS_NOATIME, .inv = 1 }, /* set access time */
187 { .opt = "auto" }, /* allow auto mount */
188 { .opt = "defaults" }, /* default options */
189 { .opt = "dev", .mask = MS_NODEV, .inv = 1 }, /* interpret devs */
190 { .opt = "exec", .mask = MS_NOEXEC, .inv = 1 }, /* allow execution */
192 { .opt = "noatime", .mask = MS_NOATIME }, /* do not set atime */
193 { .opt = "noauto" }, /* mount explicitly */
194 { .opt = "nodev", .mask = MS_NODEV }, /* no interpret devs */
195 { .opt = "noowner", .inv = 1 }, /* no special privs */
196 { .opt = "nosuid", .mask = MS_NOSUID }, /* do not honor suid */
197 { .opt = "nouser", .inv = 1 }, /* users cannot mount */
198 { .opt = "nousers", .inv = 1 }, /* users cannot mount */
199 { .opt = "_netdev" }, /* network only */
200 { .opt = "noexec", .mask = MS_NOEXEC }, /* no execute */
201 { .opt = "remount", .mask = MS_REMOUNT }, /* remount */
202 { .opt = "ro", .mask = MS_RDONLY }, /* read-only */
203 { .opt = "rw", .mask = MS_RDONLY, .inv = 1 }, /* read-write */
204 { .opt = "suid", .mask = MS_NOSUID, .inv = 1 }, /* honor suid */
205 { .opt = "sync", .mask = MS_SYNCHRONOUS }, /* synchronous I/O */
207 { .opt = "diratime", /* set access time */
208 .mask = MS_NODIRATIME, .inv = 1 }, /* on read */
209 { .opt = "nodiratime", /* do not set access */
210 .mask = MS_NODIRATIME }, /* time on read */
213 { .opt = "norelatime", /* do not set rel */
214 .mask = MS_RELATIME, .inv = 1 }, /* access time */
215 { .opt = "relatime", /* set relative */
216 .mask = MS_RELATIME }, /* access time */
218 #ifdef MS_STRICTATIME
219 { .opt = "strictatime",
220 .mask = MS_STRICTATIME }, /* strict access time */
223 /****************************************************************************/
226 * 1 = don't pass on to lustre
227 * 0 = pass on to lustre
229 static int parse_one_option(const char *check, int *flagp)
231 const struct opt_map *opt;
233 for (opt = &opt_map[0]; opt->opt != NULL; opt++) {
234 if (strncmp(check, opt->opt, strlen(opt->opt)) == 0) {
237 *flagp &= ~(opt->mask);
245 * Assume any unknown options are valid and pass them on. The mount
246 * will fail if lmd_parse, ll_options or ldiskfs doesn't recognize it.
251 static size_t merge_strings(char *dst, const char *src, size_t size)
253 size_t dsize = strlen(dst);
254 size_t len = strlen(src);
255 size_t ret = dsize + len;
261 memcpy(dst, src, len);
266 static int append_option(char *options, size_t options_len,
267 const char *param, const char *value)
271 if (options[0] != '\0') {
272 rc = merge_strings(options, ",", options_len);
273 if (rc >= options_len)
277 rc = merge_strings(options, param, options_len);
278 if (rc >= options_len)
282 rc = merge_strings(options, value, options_len);
283 if (rc >= options_len)
288 fprintf(stderr, "error: mount options %s%s too long\n", param, value);
293 * Replace options with subset of Lustre-specific options, and
294 * fill in mount flags
296 int parse_options(struct mount_opts *mop, char *orig_options,
297 int *flagp, size_t options_len)
299 char *options, *opt, *nextopt, *arg, *val;
302 options = calloc(strlen(orig_options) + 1, 1);
307 nextopt = orig_options;
308 while ((opt = strsep(&nextopt, ","))) {
313 /* Handle retries in a slightly different manner */
315 val = strchr(opt, '=');
317 * please note that some ldiskfs mount options are also in
318 * the form of param=value. We should pay attention not to
319 * remove those mount options, see bug 22097.
321 if (val && strncmp(arg, "max_sectors_kb", 14) == 0) {
322 mop->mo_max_sectors_kb = atoi(val + 1);
324 strncmp(arg, "md_stripe_cache_size", 20) == 0) {
325 mop->mo_md_stripe_cache_size = atoi(val + 1);
326 } else if (val && strncmp(arg, "retry", 5) == 0) {
327 mop->mo_retry = atoi(val + 1);
328 if (mop->mo_retry > MAX_RETRIES)
329 mop->mo_retry = MAX_RETRIES;
330 else if (mop->mo_retry < 0)
332 } else if (val && strncmp(arg, "mgssec", 6) == 0) {
333 rc = append_option(options, options_len, opt, NULL);
336 } else if (strncmp(arg, "nosvc", 5) == 0) {
338 rc = append_option(options, options_len, opt, NULL);
341 } else if (strcmp(opt, "force") == 0) {
342 /* XXX special check for 'force' option */
344 printf("force: %d\n", mop->mo_force);
346 } else if (val && strncmp(opt, "skpath=", 7) == 0) {
347 if (strlen(val) + 1 >= sizeof(mop->mo_skpath)) {
349 "%s: shared key path too long\n",
354 strncpy(mop->mo_skpath, val + 1,
355 sizeof(mop->mo_skpath) - 1);
357 #ifdef HAVE_LUSTRE_CRYPTO
358 } else if (strncmp(arg, "test_dummy_encryption", 21) == 0) {
359 #ifdef HAVE_LIBKEYUTILS
360 /* Using dummy encryption mode requires inserting a
361 * special dummy key into the session keyring.
362 * Key type is "logon", key description is
363 * "fscrypt:4242424242424242", and key payload has to be
364 * in the form <mode><raw><size>, where:
365 * <mode> is "\x00\x00\x00\x00"
366 * <raw> is "$(printf ""\\\\x%02x"" {0..63})"
367 * <size> is "\x40\x00\x00\x00" for little endian,
368 * "\x00\x00\x00\x40" for big endian.
371 int *p = (int *)payload;
372 char *q = (char *)(p + 1);
382 key = add_key("logon", "fscrypt:4242424242424242",
383 (const void *)payload, sizeof(payload),
384 KEY_SPEC_SESSION_KEYRING);
388 "%s: test dummy encryption option ignored: could not insert dummy encryption key into session keyring\n",
391 /* pass this on as an option */
392 rc = append_option(options, options_len, opt,
397 #else /* HAVE_LIBKEYUTILS */
399 "%s: test dummy encryption option ignored: Lustre not built with libkeyutils support\n",
403 } else if (parse_one_option(opt, flagp) == 0) {
404 /* pass this on as an option */
405 rc = append_option(options, options_len, opt, NULL);
410 #ifdef MS_STRICTATIME
411 #if LUSTRE_VERSION_CODE > OBD_OCD_VERSION(3, 2, 53, 0)
414 * In the future when upstream fixes land in all supported kernels
415 * we should stop forcing MS_STRICTATIME in lustre mounts.
416 * We override the kernel level default of MS_RELATIME for now
417 * due to a kernel vfs level bug in atime updates that fails
418 * to reset timestamps from the future.
420 #warn "remove MS_STRICTATIME override if kernel updates atime from the future"
423 * set strictatime to default if NOATIME or RELATIME
426 if (!(*flagp & (MS_NOATIME | MS_RELATIME)))
427 *flagp |= MS_STRICTATIME;
429 strcpy(orig_options, options);
436 #ifdef HAVE_SERVER_SUPPORT
437 /* Add mgsnids from ldd params */
438 static int add_mgsnids(struct mount_opts *mop, char *options,
439 const char *params, size_t options_len)
441 char *ptr = (char *)params;
445 while ((ptr = strstr(ptr, PARAM_MGSNODE)) != NULL) {
446 sep = strchr(ptr, ' ');
451 rc = append_option(options, options_len, ptr, NULL);
454 mop->mo_have_mgsnid++;
467 static int clear_update_ondisk(char *source, struct lustre_disk_data *ldd)
469 char wanted_mountopts[512] = "";
470 struct mkfs_opts mkop;
474 memset(&mkop, 0, sizeof(mkop));
476 mkop.mo_ldd.ldd_flags &= ~LDD_F_UPDATE;
477 mkop.mo_flags = MO_NOHOSTID_CHECK; /* Ignore missing hostid */
478 if (strlen(source) > sizeof(mkop.mo_device) - 1) {
480 fprintf(stderr, "Device name too long: %s\n", source);
483 strncpy(mkop.mo_device, source, sizeof(mkop.mo_device));
485 ret = osd_prepare_lustre(&mkop,
486 wanted_mountopts, sizeof(wanted_mountopts));
489 fprintf(stderr, "Can't prepare device %s: %s\n",
490 source, strerror(ret));
494 /* Create the loopback file */
495 if (mkop.mo_flags & MO_IS_LOOP) {
496 ret = access(mkop.mo_device, F_OK);
500 fprintf(stderr, "Can't access device %s: %s\n",
501 source, strerror(ret));
505 ret = loop_setup(&mkop);
508 fprintf(stderr, "Loop device setup for %s failed: %s\n",
509 mkop.mo_device, strerror(ret));
513 ret = osd_write_ldd(&mkop);
516 fprintf(stderr, "failed to write local files: %s\n",
520 ret2 = loop_cleanup(&mkop);
527 static int parse_ldd(char *source, struct mount_opts *mop,
528 char *options, size_t options_len)
530 struct lustre_disk_data *ldd = &mop->mo_ldd;
535 rc = osd_is_lustre(source, &ldd->ldd_mount_type);
538 "%s: %s has not been formatted with mkfs.lustre or the backend filesystem type is not supported by this tool\n",
543 rc = osd_read_ldd(source, ldd);
546 "%s: %s failed to read permanent mount data: %s\n",
547 progname, source, rc >= 0 ? strerror(rc) : "");
551 if ((IS_MDT(ldd) || IS_OST(ldd)) &&
552 (ldd->ldd_flags & LDD_F_NEED_INDEX)) {
554 "%s: %s has no index assigned (probably formatted with old mkfs)\n",
559 if (ldd->ldd_flags & LDD_F_UPDATE)
560 clear_update_ondisk(source, ldd);
562 /* Since we never rewrite ldd, ignore temp flags */
563 ldd->ldd_flags &= ~(LDD_F_VIRGIN | LDD_F_WRITECONF);
565 /* This is to make sure default options go first */
566 temp_options = strdup(options);
568 fprintf(stderr, "%s: can't allocate memory for temp_options\n",
572 strncpy(options, ldd->ldd_mount_opts, options_len);
573 rc = append_option(options, options_len, temp_options, NULL);
578 /* svname of the form lustre:OST1234 means never registered */
579 rc = strlen(ldd->ldd_svname);
580 if (strcmp(ldd->ldd_svname, "MGS") != 0) {
582 fprintf(stderr, "%s: invalid name '%s'\n",
583 progname, ldd->ldd_svname);
585 } else if (ldd->ldd_svname[rc - 8] == ':') {
586 ldd->ldd_svname[rc - 8] = '-';
587 ldd->ldd_flags |= LDD_F_VIRGIN;
588 } else if (ldd->ldd_svname[rc - 8] == '=') {
589 ldd->ldd_svname[rc - 8] = '-';
590 ldd->ldd_flags |= LDD_F_WRITECONF;
593 /* backend osd type */
594 rc = append_option(options, options_len, "osd=",
595 mt_type(ldd->ldd_mount_type));
599 if (!mop->mo_have_mgsnid) {
601 * Only use disk data if mount -o mgsnode=nid wasn't
604 if (ldd->ldd_flags & LDD_F_SV_TYPE_MGS) {
605 rc = append_option(options, options_len, "mgs", NULL);
608 mop->mo_have_mgsnid++;
610 if (add_mgsnids(mop, options, ldd->ldd_params,
615 /* Better have an mgsnid by now */
616 if (!mop->mo_have_mgsnid) {
617 fprintf(stderr, "%s: missing option mgsnode=<nid>\n",
622 if (ldd->ldd_flags & LDD_F_VIRGIN) {
623 rc = append_option(options, options_len, "virgin", NULL);
627 if (ldd->ldd_flags & LDD_F_UPDATE) {
628 rc = append_option(options, options_len, "update", NULL);
632 if (ldd->ldd_flags & LDD_F_WRITECONF) {
633 rc = append_option(options, options_len, "writeconf", NULL);
637 if (ldd->ldd_flags & LDD_F_NO_PRIMNODE) {
638 rc = append_option(options, options_len, "noprimnode", NULL);
644 * prefix every lustre parameter with param= so that in-kernel
645 * mount can recognize them properly and send to MGS at registration
647 start = ldd->ldd_params;
648 while (start && *start != '\0') {
649 while (*start == ' ')
654 start = strchr(cur, ' ');
659 rc = append_option(options, options_len, "param=", cur);
664 /* svname must be last option */
665 rc = append_option(options, options_len, "svname=", ldd->ldd_svname);
669 #endif /* HAVE_SERVER_SUPPORT */
671 static void set_defaults(struct mount_opts *mop)
673 memset(mop, 0, sizeof(*mop));
674 mop->mo_usource = NULL;
675 mop->mo_source = NULL;
680 mop->mo_have_mgsnid = 0;
681 mop->mo_md_stripe_cache_size = 16384;
682 mop->mo_orig_options = "";
684 mop->mo_max_sectors_kb = -1;
687 static int parse_opts(int argc, char *const argv[], struct mount_opts *mop)
689 static struct option long_opts[] = {
690 { .val = 1, .name = "force", .has_arg = no_argument },
691 { .val = 'f', .name = "fake", .has_arg = no_argument },
692 { .val = 'h', .name = "help", .has_arg = no_argument },
693 { .val = 'n', .name = "nomtab", .has_arg = no_argument },
694 { .val = 'o', .name = "options", .has_arg = required_argument },
695 { .val = 'v', .name = "verbose", .has_arg = no_argument },
696 { .val = 'V', .name = "version", .has_arg = no_argument },
698 char real_path[PATH_MAX] = {'\0'};
700 char path[256], name[256];
705 while ((opt = getopt_long(argc, argv, "fhno:vV",
706 long_opts, NULL)) != EOF){
710 printf("force: %d\n", mop->mo_force);
714 printf("fake: %d\n", mop->mo_fake);
721 printf("nomtab: %d\n", mop->mo_nomtab);
724 mop->mo_orig_options = optarg;
731 fprintf(stdout, "%s %s %s\n", progname,
732 LUSTRE_VERSION_STRING, WITH_LIBMOUNT);
735 fprintf(stderr, "%s: unknown option '%c'\n",
742 if (optind + 2 > argc) {
743 fprintf(stderr, "%s: too few arguments\n", progname);
747 mop->mo_usource = argv[optind];
748 if (!mop->mo_usource)
752 * Try to get the real path to the device, in case it is a
753 * symbolic link for instance
755 if (realpath(mop->mo_usource, real_path) != NULL) {
756 ptr = strrchr(real_path, '/');
757 if (ptr && strncmp(ptr, "/dm-", 4) == 0 &&
758 isdigit(*(ptr + 4))) {
759 snprintf(path, sizeof(path), "/sys/block/%s/dm/name",
761 if ((f = fopen(path, "r"))) {
762 /* read "<name>\n" from sysfs */
763 if (fgets(name, sizeof(name), f) &&
764 (sz = strlen(name)) > 1) {
766 snprintf(real_path, sizeof(real_path),
767 "/dev/mapper/%s", name);
772 mop->mo_usource = strdup(real_path);
775 ptr = strstr(mop->mo_usource, ":/");
777 mop->mo_source = convert_hostnames(mop->mo_usource);
781 mop->mo_source = strdup(mop->mo_usource);
784 if (realpath(argv[optind + 1], mop->mo_target) == NULL) {
786 fprintf(stderr, "warning: %s: cannot resolve: %s\n",
787 argv[optind + 1], strerror(errno));
794 #ifdef HAVE_SERVER_SUPPORT
796 * change label from <fsname>:<index> to
797 * <fsname>-<index> to indicate the device has
798 * been registered. only if the label is
799 * supposed to be changed and target service
800 * is supposed to start
802 static void label_lustre(struct mount_opts *mop)
807 if (mop->mo_ldd.ldd_flags & (LDD_F_VIRGIN | LDD_F_WRITECONF)) {
808 (void)osd_label_lustre(mop);
810 struct lustre_disk_data ldd;
814 * device label could be changed after journal recovery,
815 * it should also be relabeled for mount has succeeded.
817 memset(&ldd, 0, sizeof(ldd));
818 ldd.ldd_mount_type = mop->mo_ldd.ldd_mount_type;
819 rc = osd_read_ldd(mop->mo_source, &ldd);
821 rc = strlen(ldd.ldd_svname);
822 if (rc >= 8 && ldd.ldd_svname[rc - 8] != '-')
823 (void)osd_label_lustre(mop);
827 #endif /* HAVE_SERVER_SUPPORT */
829 int main(int argc, char *const argv[])
831 struct mount_opts mop;
839 progname = strrchr(argv[0], '/');
840 progname = progname ? progname + 1 : argv[0];
844 g_pagesize = sysconf(_SC_PAGESIZE);
845 if (g_pagesize == -1) {
847 printf("error: %d failed to get page size.\n", rc);
850 maxopt_len = MIN(g_pagesize, 64 * 1024);
852 rc = parse_opts(argc, argv, &mop);
857 for (i = 0; i < argc; i++)
858 printf("arg[%d] = %s\n", i, argv[i]);
859 printf("source = %s (%s), target = %s\n", mop.mo_usource,
860 mop.mo_source, mop.mo_target);
861 printf("options = %s\n", mop.mo_orig_options);
864 options = malloc(maxopt_len);
866 fprintf(stderr, "can't allocate memory for options\n");
871 if (strlen(mop.mo_orig_options) >= maxopt_len) {
872 fprintf(stderr, "error: mount options too long\n");
877 strcpy(options, mop.mo_orig_options);
878 rc = parse_options(&mop, options, &flags, maxopt_len);
880 fprintf(stderr, "%s: can't parse options: %s\n",
886 rc = check_mtab_entry(mop.mo_usource, mop.mo_source,
887 mop.mo_target, "lustre");
888 if (rc && !(flags & MS_REMOUNT)) {
890 "%s: according to %s %s is already mounted on %s\n",
891 progname, MOUNTED, mop.mo_usource,
896 if (!rc && (flags & MS_REMOUNT)) {
898 "%s: according to %s %s is not already mounted on %s\n",
899 progname, MOUNTED, mop.mo_usource,
905 if (flags & MS_REMOUNT)
908 rc = access(mop.mo_target, F_OK);
911 fprintf(stderr, "%s: %s inaccessible: %s\n", progname,
912 mop.mo_target, strerror(errno));
916 client = (strstr(mop.mo_usource, ":/") != NULL);
918 #ifdef HAVE_SERVER_SUPPORT
923 rc = parse_ldd(mop.mo_source, &mop, options, maxopt_len);
933 * In Linux 2.4, the target device doesn't get passed to any of our
934 * functions. So we'll stick it on the end of the options.
936 rc = append_option(options, maxopt_len, "device=", mop.mo_source);
941 printf("mounting device %s at %s, flags=%#x options=%s\n",
942 mop.mo_source, mop.mo_target, flags, options);
944 #ifdef HAVE_SERVER_SUPPORT
945 if (!client && osd_tune_lustre(mop.mo_source, &mop)) {
948 "%s: unable to set tunables for %s (may cause reduced IO performance)\n",
949 argv[0], mop.mo_source);
953 if (mop.mo_skpath[0] != '\0') {
954 /* Treat shared key failures as fatal */
955 rc = load_shared_keys(&mop);
957 fprintf(stderr, "%s: Error loading shared keys: %s\n",
958 progname, strerror(rc));
962 #endif /* HAVE_GSS */
967 /* Prefer filesystem type given on mount command line
968 * so it appears correctly in the /proc/mounts output.
970 if (strstr(argv[0], "mount.lustre_tgt"))
971 fstype = "lustre_tgt";
975 * flags and target get to lustre_get_sb(), but not
976 * lustre_fill_super(). Lustre ignores the flags, but mount
979 for (i = 0, rc = -EAGAIN; i <= mop.mo_retry && rc != 0; i++) {
980 rc = mount(mop.mo_source, mop.mo_target, fstype,
981 flags, (void *)options);
985 "%s: mount -t %s %s at %s failed: %s retries left: %d\n",
986 basename(progname), fstype,
987 mop.mo_usource, mop.mo_target,
992 /* Pre-2.13 Lustre without 'lustre_tgt' type?
993 * Try with 'lustre' instead. Eventually this
994 * can be removed (e.g. 2.18 or whenever).
997 strcmp(fstype, "lustre_tgt") == 0) {
1004 int limit = i / 2 > 5 ? i / 2 : 5;
1010 #ifdef HAVE_SERVER_SUPPORT
1024 cli = strrchr(mop.mo_usource, ':');
1025 if (cli && (strlen(cli) > 2))
1030 fprintf(stderr, "%s: mount %s at %s failed: %s\n", progname,
1031 mop.mo_usource, mop.mo_target, strerror(errno));
1034 "Is the backend filesystem mounted?\n Check /etc/mtab and /proc/mounts\n");
1035 if (errno == ENODEV)
1037 "Are the lustre modules loaded?\n Check /etc/modprobe.conf and /proc/filesystems\n");
1038 if (errno == ENOTBLK)
1039 fprintf(stderr, "Do you need -o loop?\n");
1040 if (errno == ENOMEDIUM)
1042 "This filesystem needs at least 1 OST\n");
1043 if (errno == ENOENT) {
1044 fprintf(stderr, "Is the MGS specification correct?\n");
1045 fprintf(stderr, "Is the filesystem name correct?\n");
1047 "If upgrading, is the copied client log valid? (see upgrade docs)\n");
1049 if (errno == EALREADY)
1051 "The target service is already running. (%s)\n",
1055 "The target service failed to start (bad config log?) (%s). See /var/log/messages.\n",
1058 fprintf(stderr, "Is the MGS running?\n");
1059 if (errno == EADDRINUSE)
1061 "The target service's index is already in use. (%s)\n",
1063 if (errno == EINVAL) {
1064 fprintf(stderr, "This may have multiple causes.\n");
1067 "Is '%s' the correct filesystem name?\n",
1069 fprintf(stderr, "Are the mount options correct?\n");
1070 fprintf(stderr, "Check the syslog for more info.\n");
1073 /* May as well try to clean up loop devs */
1074 if (strncmp(mop.mo_usource, "/dev/loop", 9) == 0) {
1078 sprintf(cmd, "/sbin/losetup -d %s", mop.mo_usource);
1079 if ((ret = system(cmd)) < 0)
1082 rc = WEXITSTATUS(ret);
1087 * Deal with utab just for client. Note that we ignore
1088 * the return value here since it is not worth to fail
1089 * mount by prevent some rare cases
1091 if (strstr(mop.mo_usource, ":/") != NULL)
1092 update_utab_entry(&mop);
1093 if (!mop.mo_nomtab) {
1094 rc = update_mtab_entry(mop.mo_usource, mop.mo_target,
1095 "lustre", mop.mo_orig_options,
1101 #ifdef HAVE_SERVER_SUPPORT
1109 /* mo_usource should be freed, but we can rely on the kernel */
1110 free(mop.mo_source);