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