Whamcloud - gitweb
LU-6662 utils: allow overriding default mountopts
[fs/lustre-release.git] / lustre / utils / mount_lustre.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2011, 2014, Intel Corporation.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  *
36  * lustre/utils/mount_lustre.c
37  *
38  * Author: Robert Read <rread@clusterfs.com>
39  * Author: Nathan Rutman <nathan@clusterfs.com>
40  */
41
42 #ifndef _GNU_SOURCE
43 #define _GNU_SOURCE
44 #endif
45 #include "mount_utils.h"
46 #include <getopt.h>
47 #include <mntent.h>
48 #include <stdlib.h>
49 #include <stdio.h>
50 #include <unistd.h>
51 #include <fcntl.h>
52 #include <errno.h>
53 #include <string.h>
54 #include <sys/mount.h>
55 #include "obdctl.h"
56 #include <lustre_ver.h>
57 #include <ctype.h>
58 #include <limits.h>
59 #include <lnet/nidstr.h>
60 #include <lustre/lustre_idl.h>
61 #if LUSTRE_VERSION_CODE < OBD_OCD_VERSION(2, 10, 53, 0)
62 /*
63  * LU-1783
64  * We only #include a kernel level include file here because
65  * important MS_ flag #defines are missing from the SLES version
66  * of sys/mount.h
67  * In the future if SLES updates sys/mount.h to have a more complete
68  * set of flag #defines we should stop including linux/fs.h
69  */
70 #if !defined(MS_RDONLY)
71 #include <linux/fs.h>
72 #endif
73 #endif
74
75 #define MAXOPT 4096
76 #define MAX_RETRIES 99
77
78 int     verbose;
79 int     version;
80 char    *progname;
81
82 void usage(FILE *out)
83 {
84         fprintf(out, "\nThis mount helper should only be invoked via the "
85                 "mount (8) command,\ne.g. mount -t lustre dev dir\n\n");
86         fprintf(out, "usage: %s [-fhnvV] [-o <mntopt>] <device> <mountpt>\n",
87                 progname);
88         fprintf(out,
89                 "\t<device>: the disk device, or for a client:\n"
90                 "\t\t<mgmtnid>[:<altmgtnid>...]:/<filesystem>-client\n"
91                 "\t<filesystem>: name of the Lustre filesystem (e.g. lustre1)\n"
92                 "\t<mountpt>: filesystem mountpoint (e.g. /mnt/lustre)\n"
93                 "\t-f|--fake: fake mount (updates /etc/mtab)\n"
94                 "\t-o force|--force: force mount even if already in /etc/mtab\n"
95                 "\t-h|--help: print this usage message\n"
96                 "\t-n|--nomtab: do not update /etc/mtab after mount\n"
97                 "\t-v|--verbose: print verbose config settings\n"
98                 "\t-V|--version: output build version of the utility and exit\n"
99                 "\t<mntopt>: one or more comma separated of:\n"
100                 "\t\t(no)flock,(no)user_xattr,(no)acl\n"
101                 "\t\tabort_recov: abort server recovery handling\n"
102                 "\t\tnosvc: only start MGC/MGS obds\n"
103                 "\t\tnomgs: only start target obds, using existing MGS\n"
104                 "\t\texclude=<ostname>[:<ostname>] : colon-separated list of "
105                 "inactive OSTs (e.g. lustre-OST0001)\n"
106                 "\t\tretry=<num>: number of times mount is retried by client\n"
107                 "\t\tmd_stripe_cache_size=<num>: set the raid stripe cache "
108                 "size for the underlying raid if present\n");
109         exit((out != stdout) ? EINVAL : 0);
110 }
111
112 /* Get rid of symbolic hostnames for tcp, since kernel can't do lookups */
113 #define MAXNIDSTR 1024
114 static char *convert_hostnames(char *s1)
115 {
116         char *converted, *s2 = 0, *c;
117         char sep;
118         int left = MAXNIDSTR;
119         lnet_nid_t nid;
120
121         converted = malloc(left);
122         if (converted == NULL) {
123                 fprintf(stderr, "out of memory: needed %d bytes\n",
124                         MAXNIDSTR);
125                 return NULL;
126         }
127         c = converted;
128         while ((left > 0) && (*s1 != '/')) {
129                 s2 = strpbrk(s1, ",:");
130                 if (!s2)
131                         goto out_free;
132                 sep = *s2;
133                 *s2 = '\0';
134                 nid = libcfs_str2nid(s1);
135                 *s2 = sep;                      /* back to original string */
136                 if (nid == LNET_NID_ANY)
137                         goto out_free;
138                 c += snprintf(c, left, "%s%c", libcfs_nid2str(nid), sep);
139                 left = converted + MAXNIDSTR - c;
140                 s1 = s2 + 1;
141         }
142         snprintf(c, left, "%s", s1);
143         return converted;
144 out_free:
145         fprintf(stderr, "%s: Can't parse NID '%s'\n", progname, s1);
146         free(converted);
147         return NULL;
148 }
149
150 /*****************************************************************************
151  *
152  * This part was cribbed from util-linux/mount/mount.c.  There was no clear
153  * license information, but many other files in the package are identified as
154  * GNU GPL, so it's a pretty safe bet that was their intent.
155  *
156  ****************************************************************************/
157 struct opt_map {
158         const char *opt;        /* option name */
159         int inv;                /* true if flag value should be inverted */
160         int mask;               /* flag mask value */
161 };
162
163 static const struct opt_map opt_map[] = {
164   /*"optname", inv,ms_mask */
165   /* These flags are parsed by mount, not lustre */
166   { "defaults", 0, 0         },      /* default options */
167   { "remount",  0, MS_REMOUNT},      /* remount with different options */
168   { "rw",       1, MS_RDONLY },      /* read-write */
169   { "ro",       0, MS_RDONLY },      /* read-only */
170   { "exec",     1, MS_NOEXEC },      /* permit execution of binaries */
171   { "noexec",   0, MS_NOEXEC },      /* don't execute binaries */
172   { "suid",     1, MS_NOSUID },      /* honor suid executables */
173   { "nosuid",   0, MS_NOSUID },      /* don't honor suid executables */
174   { "dev",      1, MS_NODEV  },      /* interpret device files  */
175   { "nodev",    0, MS_NODEV  },      /* don't interpret devices */
176   { "sync",     0, MS_SYNCHRONOUS},  /* synchronous I/O */
177   { "async",    1, MS_SYNCHRONOUS},  /* asynchronous I/O */
178   { "atime",    1, MS_NOATIME  },    /* set file access time on read */
179   { "noatime",  0, MS_NOATIME  },    /* do not set file access time on read */
180 #ifdef MS_NODIRATIME
181   { "diratime", 1, MS_NODIRATIME },  /* set file access time on read */
182   { "nodiratime",0,MS_NODIRATIME },  /* do not set file access time on read */
183 #endif
184 #ifdef MS_RELATIME
185   { "relatime", 0, MS_RELATIME },  /* set file access time on read */
186   { "norelatime",1,MS_RELATIME },  /* do not set file access time on read */
187 #endif
188 #ifdef MS_STRICTATIME
189   { "strictatime",0,MS_STRICTATIME },  /* update access time strictly */
190 #endif
191   { "auto",     0, 0         },      /* Can be mounted using -a */
192   { "noauto",   0, 0         },      /* Can only be mounted explicitly */
193   { "nousers",  1, 0         },      /* Forbid ordinary user to mount */
194   { "nouser",   1, 0         },      /* Forbid ordinary user to mount */
195   { "noowner",  1, 0         },      /* Device owner has no special privs */
196   { "_netdev",  0, 0         },      /* Device accessible only via network */
197   { "loop",     0, 0         },
198   { NULL,       0, 0         }
199 };
200 /****************************************************************************/
201
202 /* 1  = don't pass on to lustre
203    0  = pass on to lustre */
204 static int parse_one_option(const char *check, int *flagp)
205 {
206         const struct opt_map *opt;
207
208         for (opt = &opt_map[0]; opt->opt != NULL; opt++) {
209                 if (strncmp(check, opt->opt, strlen(opt->opt)) == 0) {
210                         if (opt->mask) {
211                                 if (opt->inv)
212                                         *flagp &= ~(opt->mask);
213                                 else
214                                         *flagp |= opt->mask;
215                         }
216                         return 1;
217                 }
218         }
219         /* Assume any unknown options are valid and pass them on.  The mount
220            will fail if lmd_parse, ll_options or ldiskfs doesn't recognize it.*/
221         return 0;
222 }
223
224 static void append_option(char *options, const char *one)
225 {
226         if (*options)
227                 strcat(options, ",");
228         strcat(options, one);
229 }
230
231 /* Replace options with subset of Lustre-specific options, and
232    fill in mount flags */
233 int parse_options(struct mount_opts *mop, char *orig_options, int *flagp)
234 {
235         char *options, *opt, *nextopt, *arg, *val;
236
237         options = calloc(strlen(orig_options) + 1, 1);
238         *flagp = 0;
239         nextopt = orig_options;
240         while ((opt = strsep(&nextopt, ","))) {
241                 if (!*opt)
242                         /* empty option */
243                         continue;
244
245                 /* Handle retries in a slightly different
246                  * manner */
247                 arg = opt;
248                 val = strchr(opt, '=');
249                 /* please note that some ldiskfs mount options are also in the form
250                  * of param=value. We should pay attention not to remove those
251                  * mount options, see bug 22097. */
252                 if (val && strncmp(arg, "md_stripe_cache_size", 20) == 0) {
253                         mop->mo_md_stripe_cache_size = atoi(val + 1);
254                 } else if (val && strncmp(arg, "retry", 5) == 0) {
255                         mop->mo_retry = atoi(val + 1);
256                         if (mop->mo_retry > MAX_RETRIES)
257                                 mop->mo_retry = MAX_RETRIES;
258                         else if (mop->mo_retry < 0)
259                                 mop->mo_retry = 0;
260                 } else if (val && strncmp(arg, "mgssec", 6) == 0) {
261                         append_option(options, opt);
262                 } else if (strncmp(arg, "nosvc", 5) == 0) {
263                         mop->mo_nosvc = 1;
264                         append_option(options, opt);
265                 } else if (strcmp(opt, "force") == 0) {
266                         /* XXX special check for 'force' option */
267                         ++mop->mo_force;
268                         printf("force: %d\n", mop->mo_force);
269                 } else if (parse_one_option(opt, flagp) == 0) {
270                         /* pass this on as an option */
271                         append_option(options, opt);
272                 }
273         }
274 #ifdef MS_STRICTATIME
275 #if LUSTRE_VERSION_CODE > OBD_OCD_VERSION(3, 2, 53, 0)
276         /*
277          * LU-1783
278          * In the future when upstream fixes land in all supported kernels
279          * we should stop forcing MS_STRICTATIME in lustre mounts.
280          * We override the kernel level default of MS_RELATIME for now
281          * due to a kernel vfs level bug in atime updates that fails
282          * to reset timestamps from the future.
283          */
284 #warn "remove MS_STRICTATIME override if kernel updates atime from the future"
285 #endif
286         /* set strictatime to default if NOATIME or RELATIME
287            not given explicit */
288         if (!(*flagp & (MS_NOATIME | MS_RELATIME)))
289                 *flagp |= MS_STRICTATIME;
290 #endif
291         strcpy(orig_options, options);
292         free(options);
293
294         return 0;
295 }
296
297 /* Add mgsnids from ldd params */
298 static int add_mgsnids(struct mount_opts *mop, char *options,
299                        const char *params)
300 {
301         char *ptr = (char *)params;
302         char tmp, *sep;
303
304         while ((ptr = strstr(ptr, PARAM_MGSNODE)) != NULL) {
305                 sep = strchr(ptr, ' ');
306                 if (sep != NULL) {
307                         tmp = *sep;
308                         *sep = '\0';
309                 }
310                 append_option(options, ptr);
311                 mop->mo_have_mgsnid++;
312                 if (sep) {
313                         *sep = tmp;
314                         ptr = sep;
315                 } else {
316                         break;
317                 }
318         }
319
320         return 0;
321 }
322
323 static int clear_update_ondisk(char *source, struct lustre_disk_data *ldd)
324 {
325         char wanted_mountopts[512] = "";
326         struct mkfs_opts mkop;
327         int ret;
328         int ret2;
329
330         memset(&mkop, 0, sizeof(mkop));
331         mkop.mo_ldd = *ldd;
332         mkop.mo_ldd.ldd_flags &= ~LDD_F_UPDATE;
333         if (strlen(source) > sizeof(mkop.mo_device)-1) {
334                 fatal();
335                 fprintf(stderr, "Device name too long: %s\n", source);
336                 return -E2BIG;
337         }
338         strncpy(mkop.mo_device, source, sizeof(mkop.mo_device));
339
340         ret = osd_prepare_lustre(&mkop,
341                                  wanted_mountopts, sizeof(wanted_mountopts));
342         if (ret) {
343                 fatal();
344                 fprintf(stderr, "Can't prepare device %s: %s\n",
345                         source, strerror(ret));
346                 return ret;
347         }
348
349         /* Create the loopback file */
350         if (mkop.mo_flags & MO_IS_LOOP) {
351                 ret = access(mkop.mo_device, F_OK);
352                 if (ret) {
353                         ret = errno;
354                         fatal();
355                         fprintf(stderr, "Can't access device %s: %s\n",
356                                         source, strerror(ret));
357                         return ret;
358                 }
359
360                 ret = loop_setup(&mkop);
361                 if (ret) {
362                         fatal();
363                         fprintf(stderr, "Loop device setup for %s failed: %s\n",
364                                         mkop.mo_device, strerror(ret));
365                         return ret;
366                 }
367         }
368         ret = osd_write_ldd(&mkop);
369         if (ret != 0) {
370                 fatal();
371                 fprintf(stderr, "failed to write local files: %s\n",
372                         strerror(ret));
373         }
374
375         ret2 = loop_cleanup(&mkop);
376         if (ret == 0)
377                 ret = ret2;
378
379         return ret;
380 }
381
382 static int parse_ldd(char *source, struct mount_opts *mop, char *options)
383 {
384         struct lustre_disk_data *ldd = &mop->mo_ldd;
385         char *cur, *start;
386         int rc;
387
388         rc = osd_is_lustre(source, &ldd->ldd_mount_type);
389         if (rc == 0) {
390                 fprintf(stderr, "%s: %s has not been formatted with mkfs.lustre"
391                         " or the backend filesystem type is not supported by "
392                         "this tool\n", progname, source);
393                 return ENODEV;
394         }
395
396         rc = osd_read_ldd(source, ldd);
397         if (rc) {
398                 fprintf(stderr, "%s: %s failed to read permanent mount"
399                         " data: %s\n", progname, source,
400                         rc >= 0 ? strerror(rc) : "");
401                 return rc;
402         }
403
404         if ((IS_MDT(ldd) || IS_OST(ldd)) &&
405             (ldd->ldd_flags & LDD_F_NEED_INDEX)) {
406                 fprintf(stderr, "%s: %s has no index assigned "
407                         "(probably formatted with old mkfs)\n",
408                         progname, source);
409                 return EINVAL;
410         }
411
412         if (ldd->ldd_flags & LDD_F_UPGRADE14) {
413                 fprintf(stderr, "%s: we cannot upgrade %s from this (very old) "
414                         "Lustre version\n", progname, source);
415                 return EINVAL;
416         }
417
418         if (ldd->ldd_flags & LDD_F_UPDATE)
419                 clear_update_ondisk(source, ldd);
420
421         /* Since we never rewrite ldd, ignore temp flags */
422         ldd->ldd_flags &= ~(LDD_F_VIRGIN | LDD_F_WRITECONF);
423
424         /* svname of the form lustre:OST1234 means never registered */
425         rc = strlen(ldd->ldd_svname);
426         if (strcmp(ldd->ldd_svname, "MGS") != 0) {
427                 if (rc < 8) {
428                         fprintf(stderr, "%s: invalid name '%s'\n",
429                                 progname, ldd->ldd_svname);
430                         return EINVAL;
431                 } else if (ldd->ldd_svname[rc - 8] == ':') {
432                         ldd->ldd_svname[rc - 8] = '-';
433                         ldd->ldd_flags |= LDD_F_VIRGIN;
434                 } else if (ldd->ldd_svname[rc - 8] == '=') {
435                         ldd->ldd_svname[rc - 8] = '-';
436                         ldd->ldd_flags |= LDD_F_WRITECONF;
437                 }
438         }
439         /* backend osd type */
440         append_option(options, "osd=");
441         strcat(options, mt_type(ldd->ldd_mount_type));
442
443         append_option(options, ldd->ldd_mount_opts);
444
445         if (!mop->mo_have_mgsnid) {
446                 /* Only use disk data if mount -o mgsnode=nid wasn't
447                  * specified */
448                 if (ldd->ldd_flags & LDD_F_SV_TYPE_MGS) {
449                         append_option(options, "mgs");
450                         mop->mo_have_mgsnid++;
451                 } else {
452                         add_mgsnids(mop, options, ldd->ldd_params);
453                 }
454         }
455         /* Better have an mgsnid by now */
456         if (!mop->mo_have_mgsnid) {
457                 fprintf(stderr, "%s: missing option mgsnode=<nid>\n",
458                         progname);
459                 return EINVAL;
460         }
461
462         if (ldd->ldd_flags & LDD_F_VIRGIN)
463                 append_option(options, "virgin");
464         if (ldd->ldd_flags & LDD_F_UPDATE)
465                 append_option(options, "update");
466         if (ldd->ldd_flags & LDD_F_WRITECONF)
467                 append_option(options, "writeconf");
468         if (ldd->ldd_flags & LDD_F_NO_PRIMNODE)
469                 append_option(options, "noprimnode");
470
471         /* prefix every lustre parameter with param= so that in-kernel
472          * mount can recognize them properly and send to MGS at registration */
473         start = ldd->ldd_params;
474         while (start && *start != '\0') {
475                 while (*start == ' ') start++;
476                 if (*start == '\0')
477                         break;
478                 cur = start;
479                 start = strchr(cur, ' ');
480                 if (start) {
481                         *start = '\0';
482                         start++;
483                 }
484                 append_option(options, "param=");
485                 strcat(options, cur);
486         }
487
488         /* svname must be last option */
489         append_option(options, "svname=");
490         strcat(options, ldd->ldd_svname);
491
492         return 0;
493 }
494
495 static void set_defaults(struct mount_opts *mop)
496 {
497         memset(mop, 0, sizeof(*mop));
498         mop->mo_usource = NULL;
499         mop->mo_source = NULL;
500         mop->mo_nomtab = 0;
501         mop->mo_fake = 0;
502         mop->mo_force = 0;
503         mop->mo_retry = 0;
504         mop->mo_have_mgsnid = 0;
505         mop->mo_md_stripe_cache_size = 16384;
506         mop->mo_orig_options = "";
507         mop->mo_nosvc = 0;
508 }
509
510 static int parse_opts(int argc, char *const argv[], struct mount_opts *mop)
511 {
512         static struct option long_opt[] = {
513                 {"fake", 0, 0, 'f'},
514                 {"force", 0, 0, 1},
515                 {"help", 0, 0, 'h'},
516                 {"nomtab", 0, 0, 'n'},
517                 {"options", 1, 0, 'o'},
518                 {"verbose", 0, 0, 'v'},
519                 {"version", 0, 0, 'V'},
520                 {0, 0, 0, 0}
521         };
522         char real_path[PATH_MAX] = {'\0'};
523         FILE *f;
524         char path[256], name[256];
525         size_t sz;
526         char *ptr;
527         int opt, rc;
528
529         while ((opt = getopt_long(argc, argv, "fhno:vV",
530                                   long_opt, NULL)) != EOF){
531                 switch (opt) {
532                 case 1:
533                         ++mop->mo_force;
534                         printf("force: %d\n", mop->mo_force);
535                         break;
536                 case 'f':
537                         ++mop->mo_fake;
538                         printf("fake: %d\n", mop->mo_fake);
539                         break;
540                 case 'h':
541                         usage(stdout);
542                         break;
543                 case 'n':
544                         ++mop->mo_nomtab;
545                         printf("nomtab: %d\n", mop->mo_nomtab);
546                         break;
547                 case 'o':
548                         mop->mo_orig_options = optarg;
549                         break;
550                 case 'v':
551                         ++verbose;
552                         break;
553                 case 'V':
554                         ++version;
555                         fprintf(stdout, "%s %s\n", progname,
556                                 LUSTRE_VERSION_STRING);
557                         return 0;
558                 default:
559                         fprintf(stderr, "%s: unknown option '%c'\n",
560                                         progname, opt);
561                         usage(stderr);
562                         break;
563                 }
564         }
565
566         if (optind + 2 > argc) {
567                 fprintf(stderr, "%s: too few arguments\n", progname);
568                 usage(stderr);
569         }
570
571         mop->mo_usource = argv[optind];
572         if (!mop->mo_usource) {
573                 usage(stderr);
574         }
575
576         /**
577          * Try to get the real path to the device, in case it is a
578          * symbolic link for instance
579          */
580         if (realpath(mop->mo_usource, real_path) != NULL) {
581                 ptr = strrchr(real_path, '/');
582                 if (ptr && strncmp(ptr, "/dm-", 4) == 0 && isdigit(*(ptr + 4))) {
583                         snprintf(path, sizeof(path), "/sys/block/%s/dm/name", ptr+1);
584                         if ((f = fopen(path, "r"))) {
585                                 /* read "<name>\n" from sysfs */
586                                 if (fgets(name, sizeof(name), f) && (sz = strlen(name)) > 1) {
587                                         name[sz - 1] = '\0';
588                                         snprintf(real_path, sizeof(real_path), "/dev/mapper/%s", name);
589                                 }
590                                 fclose(f);
591                         }
592                 }
593                 mop->mo_usource = strdup(real_path);
594         }
595
596         ptr = strstr(mop->mo_usource, ":/");
597         if (ptr != NULL) {
598                 mop->mo_source = convert_hostnames(mop->mo_usource);
599                 if (!mop->mo_source)
600                         usage(stderr);
601         } else {
602                 mop->mo_source = strdup(mop->mo_usource);
603         }
604
605         if (realpath(argv[optind + 1], mop->mo_target) == NULL) {
606                 rc = errno;
607                 fprintf(stderr, "warning: %s: cannot resolve: %s\n",
608                                 argv[optind + 1], strerror(errno));
609                 return rc;
610         }
611
612         return 0;
613 }
614
615 int main(int argc, char *const argv[])
616 {
617         struct mount_opts mop;
618         char *options;
619         int i, rc, flags;
620
621         progname = strrchr(argv[0], '/');
622         progname = progname ? progname + 1 : argv[0];
623
624         set_defaults(&mop);
625
626         rc = parse_opts(argc, argv, &mop);
627         if (rc || version)
628                 return rc;
629
630         if (verbose) {
631                 for (i = 0; i < argc; i++)
632                         printf("arg[%d] = %s\n", i, argv[i]);
633                 printf("source = %s (%s), target = %s\n", mop.mo_usource,
634                        mop.mo_source, mop.mo_target);
635                 printf("options = %s\n", mop.mo_orig_options);
636         }
637
638         options = malloc(MAXOPT);
639         if (options == NULL) {
640                 fprintf(stderr, "can't allocate memory for options\n");
641                 return -1;
642         }
643         strcpy(options, mop.mo_orig_options);
644         rc = parse_options(&mop, options, &flags);
645         if (rc) {
646                 fprintf(stderr, "%s: can't parse options: %s\n",
647                         progname, options);
648                 return(EINVAL);
649         }
650
651         if (!mop.mo_force) {
652                 rc = check_mtab_entry(mop.mo_usource, mop.mo_source,
653                                       mop.mo_target, "lustre");
654                 if (rc && !(flags & MS_REMOUNT)) {
655                         fprintf(stderr, "%s: according to %s %s is "
656                                 "already mounted on %s\n", progname, MOUNTED,
657                                 mop.mo_usource, mop.mo_target);
658                         return(EEXIST);
659                 }
660                 if (!rc && (flags & MS_REMOUNT)) {
661                         fprintf(stderr, "%s: according to %s %s is "
662                                 "not already mounted on %s\n", progname, MOUNTED,
663                                 mop.mo_usource, mop.mo_target);
664                         return(ENOENT);
665                 }
666         }
667         if (flags & MS_REMOUNT)
668                 mop.mo_nomtab++;
669
670         rc = access(mop.mo_target, F_OK);
671         if (rc) {
672                 rc = errno;
673                 fprintf(stderr, "%s: %s inaccessible: %s\n", progname,
674                         mop.mo_target, strerror(errno));
675                 return rc;
676         }
677
678         if (strstr(mop.mo_usource, ":/") == NULL) {
679                 rc = osd_init();
680                 if (rc)
681                         return rc;
682
683                 rc = parse_ldd(mop.mo_source, &mop, options);
684                 if (rc)
685                         return rc;
686         }
687
688         /* In Linux 2.4, the target device doesn't get passed to any of our
689            functions.  So we'll stick it on the end of the options. */
690         append_option(options, "device=");
691         strcat(options, mop.mo_source);
692
693         if (verbose)
694                 printf("mounting device %s at %s, flags=%#x options=%s\n",
695                        mop.mo_source, mop.mo_target, flags, options);
696
697         if (strstr(mop.mo_usource, ":/") == NULL &&
698             osd_tune_lustre(mop.mo_source, &mop)) {
699                 if (verbose)
700                         fprintf(stderr, "%s: unable to set tunables for %s"
701                                         " (may cause reduced IO performance)\n",
702                                         argv[0], mop.mo_source);
703         }
704
705         if (!mop.mo_fake) {
706                 /* flags and target get to lustre_get_sb(), but not
707                  * lustre_fill_super().  Lustre ignores the flags, but mount
708                  * does not. */
709                 for (i = 0, rc = -EAGAIN; i <= mop.mo_retry && rc != 0; i++) {
710                         rc = mount(mop.mo_source, mop.mo_target, "lustre",
711                                    flags, (void *)options);
712                         if (rc == 0) {
713                                 /* change label from <fsname>:<index> to
714                                  * <fsname>-<index> to indicate the device has
715                                  *  been registered. only if the label is
716                                  *  supposed to be changed and target service
717                                  *  is supposed to start */
718                                 if (mop.mo_ldd.ldd_flags &
719                                    (LDD_F_VIRGIN | LDD_F_WRITECONF)) {
720                                         if (mop.mo_nosvc == 0)
721                                                 (void)osd_label_lustre(&mop);
722                                 }
723                         } else {
724                                 if (verbose) {
725                                         fprintf(stderr, "%s: mount %s at %s "
726                                                 "failed: %s retries left: "
727                                                 "%d\n", basename(progname),
728                                                 mop.mo_usource, mop.mo_target,
729                                                 strerror(errno),
730                                                 mop.mo_retry - i);
731                                 }
732
733                                 if (mop.mo_retry) {
734                                         int limit = i/2 > 5 ? i/2 : 5;
735
736                                         sleep(1 << limit);
737                                 } else {
738                                         rc = errno;
739                                 }
740                         }
741                 }
742         }
743
744         if (rc) {
745                 char *cli;
746
747                 rc = errno;
748
749                 cli = strrchr(mop.mo_usource, ':');
750                 if (cli && (strlen(cli) > 2))
751                         cli += 2;
752                 else
753                         cli = NULL;
754
755                 fprintf(stderr, "%s: mount %s at %s failed: %s\n", progname,
756                         mop.mo_usource, mop.mo_target, strerror(errno));
757                 if (errno == EBUSY)
758                         fprintf(stderr, "Is the backend filesystem mounted?\n"
759                                         "Check /etc/mtab and /proc/mounts\n");
760                 if (errno == ENODEV)
761                         fprintf(stderr, "Are the lustre modules loaded?\n"
762                                 "Check /etc/modprobe.conf and "
763                                 "/proc/filesystems\n");
764                 if (errno == ENOTBLK)
765                         fprintf(stderr, "Do you need -o loop?\n");
766                 if (errno == ENOMEDIUM)
767                         fprintf(stderr,
768                                 "This filesystem needs at least 1 OST\n");
769                 if (errno == ENOENT) {
770                         fprintf(stderr, "Is the MGS specification correct?\n");
771                         fprintf(stderr, "Is the filesystem name correct?\n");
772                         fprintf(stderr, "If upgrading, is the copied client log"
773                                 " valid? (see upgrade docs)\n");
774                 }
775                 if (errno == EALREADY)
776                         fprintf(stderr, "The target service is already running."
777                                 " (%s)\n", mop.mo_usource);
778                 if (errno == ENXIO)
779                         fprintf(stderr, "The target service failed to start "
780                                 "(bad config log?) (%s).  "
781                                 "See /var/log/messages.\n", mop.mo_usource);
782                 if (errno == EIO)
783                         fprintf(stderr, "Is the MGS running?\n");
784                 if (errno == EADDRINUSE)
785                         fprintf(stderr, "The target service's index is already "
786                                 "in use. (%s)\n", mop.mo_usource);
787                 if (errno == EINVAL) {
788                         fprintf(stderr, "This may have multiple causes.\n");
789                         if (cli)
790                                 fprintf(stderr, "Is '%s' the correct filesystem"
791                                         " name?\n", cli);
792                         fprintf(stderr, "Are the mount options correct?\n");
793                         fprintf(stderr, "Check the syslog for more info.\n");
794                 }
795
796                 /* May as well try to clean up loop devs */
797                 if (strncmp(mop.mo_usource, "/dev/loop", 9) == 0) {
798                         char cmd[256];
799                         int ret;
800                         sprintf(cmd, "/sbin/losetup -d %s", mop.mo_usource);
801                         if ((ret = system(cmd)) < 0)
802                                 rc = errno;
803                         else if (ret > 0)
804                                 rc = WEXITSTATUS(ret);
805                 }
806
807         } else if (!mop.mo_nomtab) {
808                 rc = update_mtab_entry(mop.mo_usource, mop.mo_target, "lustre",
809                                        mop.mo_orig_options, 0,0,0);
810         }
811
812         free(options);
813         /* mo_usource should be freed, but we can rely on the kernel */
814         free(mop.mo_source);
815
816         if (strstr(mop.mo_usource, ":/") == NULL)
817                 osd_fini();
818
819         return rc;
820 }