Whamcloud - gitweb
LU-739 utils: remove references to lustre 1.4 upgrade flag
[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, 2017, 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 <linux/lustre/lustre_ver.h>
53 #include <ctype.h>
54 #include <limits.h>
55 #include <linux/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 size_t merge_strings(char *dst, const char *src, size_t size)
239 {
240         size_t dsize = strlen(dst);
241         size_t len = strlen(src);
242         size_t ret = dsize + len;
243
244         dst  += dsize;
245         size -= dsize;
246         if (len >= size)
247                 len = size - 1;
248         memcpy(dst, src, len);
249         dst[len] = '\0';
250         return ret;
251 }
252
253 static int append_option(char *options, size_t options_len,
254                          const char *param, const char *value)
255 {
256         int rc;
257
258         if (options[0] != '\0') {
259                 rc = merge_strings(options, ",", options_len);
260                 if (rc >= options_len)
261                         goto out_err;
262         }
263
264         rc = merge_strings(options, param, options_len);
265         if (rc >= options_len)
266                 goto out_err;
267
268         if (value != NULL) {
269                 rc = merge_strings(options, value, options_len);
270                 if (rc >= options_len)
271                         goto out_err;
272         }
273         return 0;
274 out_err:
275         fprintf(stderr, "error: mount options %s%s too long\n", param, value);
276         return E2BIG;
277 }
278
279 /* Replace options with subset of Lustre-specific options, and
280    fill in mount flags */
281 int parse_options(struct mount_opts *mop, char *orig_options,
282                   int *flagp, size_t options_len)
283 {
284         char *options, *opt, *nextopt, *arg, *val;
285         int rc = 0;
286
287         options = calloc(strlen(orig_options) + 1, 1);
288         if (options == NULL)
289                 return ENOMEM;
290
291         *flagp = 0;
292         nextopt = orig_options;
293         while ((opt = strsep(&nextopt, ","))) {
294                 if (!*opt)
295                         /* empty option */
296                         continue;
297
298                 /* Handle retries in a slightly different manner */
299                 arg = opt;
300                 val = strchr(opt, '=');
301                 /* please note that some ldiskfs mount options are also in
302                  * the form of param=value. We should pay attention not to
303                  * remove those mount options, see bug 22097. */
304                 if (val && strncmp(arg, "max_sectors_kb", 14) == 0) {
305                         mop->mo_max_sectors_kb = atoi(val + 1);
306                 } else if (val &&
307                            strncmp(arg, "md_stripe_cache_size", 20) == 0) {
308                         mop->mo_md_stripe_cache_size = atoi(val + 1);
309                 } else if (val && strncmp(arg, "retry", 5) == 0) {
310                         mop->mo_retry = atoi(val + 1);
311                         if (mop->mo_retry > MAX_RETRIES)
312                                 mop->mo_retry = MAX_RETRIES;
313                         else if (mop->mo_retry < 0)
314                                 mop->mo_retry = 0;
315                 } else if (val && strncmp(arg, "mgssec", 6) == 0) {
316                         rc = append_option(options, options_len, opt, NULL);
317                         if (rc != 0)
318                                 goto out_options;
319                 } else if (strncmp(arg, "nosvc", 5) == 0) {
320                         mop->mo_nosvc = 1;
321                         rc = append_option(options, options_len, opt, NULL);
322                         if (rc != 0)
323                                 goto out_options;
324                 } else if (strcmp(opt, "force") == 0) {
325                         /* XXX special check for 'force' option */
326                         ++mop->mo_force;
327                         printf("force: %d\n", mop->mo_force);
328 #ifdef HAVE_GSS
329                 } else if (val && strncmp(opt, "skpath=", 7) == 0) {
330                         if (strlen(val) + 1 >= sizeof(mop->mo_skpath)) {
331                                 fprintf(stderr,
332                                         "%s: shared key path too long\n",
333                                         progname);
334                                 free(options);
335                                 return EINVAL;
336                         }
337                         strncpy(mop->mo_skpath, val + 1, strlen(val + 1));
338 #endif
339                 } else if (parse_one_option(opt, flagp) == 0) {
340                         /* pass this on as an option */
341                         rc = append_option(options, options_len, opt, NULL);
342                         if (rc != 0)
343                                 goto out_options;
344                 }
345         }
346 #ifdef MS_STRICTATIME
347 #if LUSTRE_VERSION_CODE > OBD_OCD_VERSION(3, 2, 53, 0)
348         /*
349          * LU-1783
350          * In the future when upstream fixes land in all supported kernels
351          * we should stop forcing MS_STRICTATIME in lustre mounts.
352          * We override the kernel level default of MS_RELATIME for now
353          * due to a kernel vfs level bug in atime updates that fails
354          * to reset timestamps from the future.
355          */
356 #warn "remove MS_STRICTATIME override if kernel updates atime from the future"
357 #endif
358         /* set strictatime to default if NOATIME or RELATIME
359            not given explicit */
360         if (!(*flagp & (MS_NOATIME | MS_RELATIME)))
361                 *flagp |= MS_STRICTATIME;
362 #endif
363         strcpy(orig_options, options);
364
365 out_options:
366         free(options);
367         return rc;
368 }
369
370 #ifdef HAVE_SERVER_SUPPORT
371 /* Add mgsnids from ldd params */
372 static int add_mgsnids(struct mount_opts *mop, char *options,
373                        const char *params, size_t options_len)
374 {
375         char *ptr = (char *)params;
376         char tmp, *sep;
377         int rc = 0;
378
379         while ((ptr = strstr(ptr, PARAM_MGSNODE)) != NULL) {
380                 sep = strchr(ptr, ' ');
381                 if (sep != NULL) {
382                         tmp = *sep;
383                         *sep = '\0';
384                 }
385                 rc = append_option(options, options_len, ptr, NULL);
386                 if (rc != 0)
387                         goto out;
388                 mop->mo_have_mgsnid++;
389                 if (sep) {
390                         *sep = tmp;
391                         ptr = sep;
392                 } else {
393                         break;
394                 }
395         }
396
397 out:
398         return rc;
399 }
400
401 static int clear_update_ondisk(char *source, struct lustre_disk_data *ldd)
402 {
403         char wanted_mountopts[512] = "";
404         struct mkfs_opts mkop;
405         int ret;
406         int ret2;
407
408         memset(&mkop, 0, sizeof(mkop));
409         mkop.mo_ldd = *ldd;
410         mkop.mo_ldd.ldd_flags &= ~LDD_F_UPDATE;
411         mkop.mo_flags = MO_NOHOSTID_CHECK; /* Ignore missing hostid */
412         if (strlen(source) > sizeof(mkop.mo_device)-1) {
413                 fatal();
414                 fprintf(stderr, "Device name too long: %s\n", source);
415                 return -E2BIG;
416         }
417         strncpy(mkop.mo_device, source, sizeof(mkop.mo_device));
418
419         ret = osd_prepare_lustre(&mkop,
420                                  wanted_mountopts, sizeof(wanted_mountopts));
421         if (ret) {
422                 fatal();
423                 fprintf(stderr, "Can't prepare device %s: %s\n",
424                         source, strerror(ret));
425                 return ret;
426         }
427
428         /* Create the loopback file */
429         if (mkop.mo_flags & MO_IS_LOOP) {
430                 ret = access(mkop.mo_device, F_OK);
431                 if (ret) {
432                         ret = errno;
433                         fatal();
434                         fprintf(stderr, "Can't access device %s: %s\n",
435                                         source, strerror(ret));
436                         return ret;
437                 }
438
439                 ret = loop_setup(&mkop);
440                 if (ret) {
441                         fatal();
442                         fprintf(stderr, "Loop device setup for %s failed: %s\n",
443                                         mkop.mo_device, strerror(ret));
444                         return ret;
445                 }
446         }
447         ret = osd_write_ldd(&mkop);
448         if (ret != 0) {
449                 fatal();
450                 fprintf(stderr, "failed to write local files: %s\n",
451                         strerror(ret));
452         }
453
454         ret2 = loop_cleanup(&mkop);
455         if (ret == 0)
456                 ret = ret2;
457
458         return ret;
459 }
460
461 static int parse_ldd(char *source, struct mount_opts *mop,
462                      char *options, size_t options_len)
463 {
464         struct lustre_disk_data *ldd = &mop->mo_ldd;
465         char *cur, *start;
466         char *temp_options;
467         int rc = 0;
468
469         rc = osd_is_lustre(source, &ldd->ldd_mount_type);
470         if (rc == 0) {
471                 fprintf(stderr, "%s: %s has not been formatted with mkfs.lustre"
472                         " or the backend filesystem type is not supported by "
473                         "this tool\n", progname, source);
474                 return ENODEV;
475         }
476
477         rc = osd_read_ldd(source, ldd);
478         if (rc) {
479                 fprintf(stderr, "%s: %s failed to read permanent mount"
480                         " data: %s\n", progname, source,
481                         rc >= 0 ? strerror(rc) : "");
482                 return rc;
483         }
484
485         if ((IS_MDT(ldd) || IS_OST(ldd)) &&
486             (ldd->ldd_flags & LDD_F_NEED_INDEX)) {
487                 fprintf(stderr, "%s: %s has no index assigned "
488                         "(probably formatted with old mkfs)\n",
489                         progname, source);
490                 return EINVAL;
491         }
492
493         if (ldd->ldd_flags & LDD_F_UPDATE)
494                 clear_update_ondisk(source, ldd);
495
496         /* Since we never rewrite ldd, ignore temp flags */
497         ldd->ldd_flags &= ~(LDD_F_VIRGIN | LDD_F_WRITECONF);
498
499         /* This is to make sure default options go first */
500         temp_options = strdup(options);
501         if (temp_options == NULL) {
502                 fprintf(stderr, "%s: can't allocate memory for temp_options\n",
503                         progname);
504                 return ENOMEM;
505         }
506         strncpy(options, ldd->ldd_mount_opts, options_len);
507         rc = append_option(options, options_len, temp_options, NULL);
508         free(temp_options);
509         if (rc != 0)
510                 return rc;
511
512         /* svname of the form lustre:OST1234 means never registered */
513         rc = strlen(ldd->ldd_svname);
514         if (strcmp(ldd->ldd_svname, "MGS") != 0) {
515                 if (rc < 8) {
516                         fprintf(stderr, "%s: invalid name '%s'\n",
517                                 progname, ldd->ldd_svname);
518                         return EINVAL;
519                 } else if (ldd->ldd_svname[rc - 8] == ':') {
520                         ldd->ldd_svname[rc - 8] = '-';
521                         ldd->ldd_flags |= LDD_F_VIRGIN;
522                 } else if (ldd->ldd_svname[rc - 8] == '=') {
523                         ldd->ldd_svname[rc - 8] = '-';
524                         ldd->ldd_flags |= LDD_F_WRITECONF;
525                 }
526         }
527         /* backend osd type */
528         rc = append_option(options, options_len, "osd=",
529                            mt_type(ldd->ldd_mount_type));
530         if (rc != 0)
531                 return rc;
532
533         if (!mop->mo_have_mgsnid) {
534                 /* Only use disk data if mount -o mgsnode=nid wasn't
535                  * specified */
536                 if (ldd->ldd_flags & LDD_F_SV_TYPE_MGS) {
537                         rc = append_option(options, options_len, "mgs", NULL);
538                         if (rc != 0)
539                                 return rc;
540                         mop->mo_have_mgsnid++;
541                 } else {
542                         if (add_mgsnids(mop, options, ldd->ldd_params,
543                                         options_len))
544                                 return E2BIG;
545                 }
546         }
547         /* Better have an mgsnid by now */
548         if (!mop->mo_have_mgsnid) {
549                 fprintf(stderr, "%s: missing option mgsnode=<nid>\n",
550                         progname);
551                 return EINVAL;
552         }
553
554         if (ldd->ldd_flags & LDD_F_VIRGIN) {
555                 rc = append_option(options, options_len, "virgin", NULL);
556                 if (rc != 0)
557                         return rc;
558         }
559         if (ldd->ldd_flags & LDD_F_UPDATE) {
560                 rc = append_option(options, options_len, "update", NULL);
561                 if (rc != 0)
562                         return rc;
563         }
564         if (ldd->ldd_flags & LDD_F_WRITECONF) {
565                 rc = append_option(options, options_len, "writeconf", NULL);
566                 if (rc != 0)
567                         return rc;
568         }
569         if (ldd->ldd_flags & LDD_F_NO_PRIMNODE) {
570                 rc = append_option(options, options_len, "noprimnode", NULL);
571                 if (rc != 0)
572                         return rc;
573         }
574
575         /* prefix every lustre parameter with param= so that in-kernel
576          * mount can recognize them properly and send to MGS at registration */
577         start = ldd->ldd_params;
578         while (start && *start != '\0') {
579                 while (*start == ' ') start++;
580                 if (*start == '\0')
581                         break;
582                 cur = start;
583                 start = strchr(cur, ' ');
584                 if (start) {
585                         *start = '\0';
586                         start++;
587                 }
588                 rc = append_option(options, options_len, "param=", cur);
589                 if (rc != 0)
590                         return rc;
591         }
592
593         /* svname must be last option */
594         rc = append_option(options, options_len, "svname=", ldd->ldd_svname);
595
596         return rc;
597 }
598 #endif /* HAVE_SERVER_SUPPORT */
599
600 static void set_defaults(struct mount_opts *mop)
601 {
602         memset(mop, 0, sizeof(*mop));
603         mop->mo_usource = NULL;
604         mop->mo_source = NULL;
605         mop->mo_nomtab = 0;
606         mop->mo_fake = 0;
607         mop->mo_force = 0;
608         mop->mo_retry = 0;
609         mop->mo_have_mgsnid = 0;
610         mop->mo_md_stripe_cache_size = 16384;
611         mop->mo_orig_options = "";
612         mop->mo_nosvc = 0;
613         mop->mo_max_sectors_kb = -1;
614 }
615
616 static int parse_opts(int argc, char *const argv[], struct mount_opts *mop)
617 {
618         static struct option long_opts[] = {
619         { .val = 1,     .name = "force",        .has_arg = no_argument },
620         { .val = 'f',   .name = "fake",         .has_arg = no_argument },
621         { .val = 'h',   .name = "help",         .has_arg = no_argument },
622         { .val = 'n',   .name = "nomtab",       .has_arg = no_argument },
623         { .val = 'o',   .name = "options",      .has_arg = required_argument },
624         { .val = 'v',   .name = "verbose",      .has_arg = no_argument },
625         { .val = 'V',   .name = "version",      .has_arg = no_argument },
626         { .name = NULL } };
627         char real_path[PATH_MAX] = {'\0'};
628         FILE *f;
629         char path[256], name[256];
630         size_t sz;
631         char *ptr;
632         int opt, rc;
633
634         while ((opt = getopt_long(argc, argv, "fhno:vV",
635                                   long_opts, NULL)) != EOF){
636                 switch (opt) {
637                 case 1:
638                         ++mop->mo_force;
639                         printf("force: %d\n", mop->mo_force);
640                         break;
641                 case 'f':
642                         ++mop->mo_fake;
643                         printf("fake: %d\n", mop->mo_fake);
644                         break;
645                 case 'h':
646                         usage(stdout);
647                         break;
648                 case 'n':
649                         ++mop->mo_nomtab;
650                         printf("nomtab: %d\n", mop->mo_nomtab);
651                         break;
652                 case 'o':
653                         mop->mo_orig_options = optarg;
654                         break;
655                 case 'v':
656                         ++verbose;
657                         break;
658                 case 'V':
659                         ++version;
660                         fprintf(stdout, "%s %s %s\n", progname,
661                                 LUSTRE_VERSION_STRING, WITH_LIBMOUNT);
662                         return 0;
663                 default:
664                         fprintf(stderr, "%s: unknown option '%c'\n",
665                                         progname, opt);
666                         usage(stderr);
667                         break;
668                 }
669         }
670
671         if (optind + 2 > argc) {
672                 fprintf(stderr, "%s: too few arguments\n", progname);
673                 usage(stderr);
674         }
675
676         mop->mo_usource = argv[optind];
677         if (!mop->mo_usource) {
678                 usage(stderr);
679         }
680
681         /**
682          * Try to get the real path to the device, in case it is a
683          * symbolic link for instance
684          */
685         if (realpath(mop->mo_usource, real_path) != NULL) {
686                 ptr = strrchr(real_path, '/');
687                 if (ptr && strncmp(ptr, "/dm-", 4) == 0 && isdigit(*(ptr + 4))) {
688                         snprintf(path, sizeof(path), "/sys/block/%s/dm/name", ptr+1);
689                         if ((f = fopen(path, "r"))) {
690                                 /* read "<name>\n" from sysfs */
691                                 if (fgets(name, sizeof(name), f) && (sz = strlen(name)) > 1) {
692                                         name[sz - 1] = '\0';
693                                         snprintf(real_path, sizeof(real_path), "/dev/mapper/%s", name);
694                                 }
695                                 fclose(f);
696                         }
697                 }
698                 mop->mo_usource = strdup(real_path);
699         }
700
701         ptr = strstr(mop->mo_usource, ":/");
702         if (ptr != NULL) {
703                 mop->mo_source = convert_hostnames(mop->mo_usource);
704                 if (!mop->mo_source)
705                         usage(stderr);
706         } else {
707                 mop->mo_source = strdup(mop->mo_usource);
708         }
709
710         if (realpath(argv[optind + 1], mop->mo_target) == NULL) {
711                 rc = errno;
712                 fprintf(stderr, "warning: %s: cannot resolve: %s\n",
713                                 argv[optind + 1], strerror(errno));
714                 return rc;
715         }
716
717         return 0;
718 }
719
720 #ifdef HAVE_SERVER_SUPPORT
721 /* change label from <fsname>:<index> to
722  * <fsname>-<index> to indicate the device has
723  * been registered. only if the label is
724  * supposed to be changed and target service
725  * is supposed to start */
726 static void label_lustre(struct mount_opts *mop)
727 {
728         if (mop->mo_nosvc)
729                 return;
730
731         if (mop->mo_ldd.ldd_flags & (LDD_F_VIRGIN | LDD_F_WRITECONF)) {
732                 (void)osd_label_lustre(mop);
733         } else {
734                 struct lustre_disk_data ldd;
735                 int rc;
736
737                 /* device label could be changed after journal recovery,
738                  * it should also be relabeled for mount has succeeded. */
739                 memset(&ldd, 0, sizeof(ldd));
740                 ldd.ldd_mount_type = mop->mo_ldd.ldd_mount_type;
741                 rc = osd_read_ldd(mop->mo_source, &ldd);
742                 if (rc == 0) {
743                         rc = strlen(ldd.ldd_svname);
744                         if (rc >= 8 && ldd.ldd_svname[rc - 8] != '-')
745                                 (void)osd_label_lustre(mop);
746                 }
747         }
748 }
749 #endif /* HAVE_SERVER_SUPPORT */
750
751 int main(int argc, char *const argv[])
752 {
753         struct mount_opts mop;
754         char *options;
755         int i, flags;
756         int rc;
757         bool client;
758         size_t maxopt_len;
759         size_t g_pagesize;
760
761         progname = strrchr(argv[0], '/');
762         progname = progname ? progname + 1 : argv[0];
763
764         set_defaults(&mop);
765
766         g_pagesize = sysconf(_SC_PAGESIZE);
767         if (g_pagesize == -1) {
768                 rc = errno;
769                 printf("error: %d failed to get page size.\n", rc);
770                 return rc;
771         }
772         maxopt_len = MIN(g_pagesize, 64 * 1024);
773
774         rc = parse_opts(argc, argv, &mop);
775         if (rc || version)
776                 return rc;
777
778         if (verbose) {
779                 for (i = 0; i < argc; i++)
780                         printf("arg[%d] = %s\n", i, argv[i]);
781                 printf("source = %s (%s), target = %s\n", mop.mo_usource,
782                        mop.mo_source, mop.mo_target);
783                 printf("options = %s\n", mop.mo_orig_options);
784         }
785
786         options = malloc(maxopt_len);
787         if (options == NULL) {
788                 fprintf(stderr, "can't allocate memory for options\n");
789                 rc = ENOMEM;
790                 goto out_mo_source;
791         }
792
793         if (strlen(mop.mo_orig_options) >= maxopt_len) {
794                 fprintf(stderr, "error: mount options too long\n");
795                 rc = E2BIG;
796                 goto out_options;
797         }
798
799         strcpy(options, mop.mo_orig_options);
800         rc = parse_options(&mop, options, &flags, maxopt_len);
801         if (rc) {
802                 fprintf(stderr, "%s: can't parse options: %s\n",
803                         progname, options);
804                 goto out_options;
805         }
806
807         if (!mop.mo_force) {
808                 rc = check_mtab_entry(mop.mo_usource, mop.mo_source,
809                                       mop.mo_target, "lustre");
810                 if (rc && !(flags & MS_REMOUNT)) {
811                         fprintf(stderr, "%s: according to %s %s is "
812                                 "already mounted on %s\n", progname, MOUNTED,
813                                 mop.mo_usource, mop.mo_target);
814                         rc = EEXIST;
815                         goto out_options;
816                 }
817                 if (!rc && (flags & MS_REMOUNT)) {
818                         fprintf(stderr, "%s: according to %s %s is "
819                                 "not already mounted on %s\n", progname, MOUNTED,
820                                 mop.mo_usource, mop.mo_target);
821                         rc = ENOENT;
822                         goto out_options;
823                 }
824         }
825         if (flags & MS_REMOUNT)
826                 mop.mo_nomtab++;
827
828         rc = access(mop.mo_target, F_OK);
829         if (rc) {
830                 rc = errno;
831                 fprintf(stderr, "%s: %s inaccessible: %s\n", progname,
832                         mop.mo_target, strerror(errno));
833                 goto out_options;
834         }
835
836         client = (strstr(mop.mo_usource, ":/") != NULL);
837         if (!client) {
838 #ifdef HAVE_SERVER_SUPPORT
839                 rc = osd_init();
840                 if (rc)
841                         goto out_options;
842
843                 rc = parse_ldd(mop.mo_source, &mop, options, maxopt_len);
844                 if (rc)
845                         goto out_osd;
846 #else
847                 rc = -EINVAL;
848                 goto out_options;
849 #endif
850         }
851
852         /* In Linux 2.4, the target device doesn't get passed to any of our
853            functions.  So we'll stick it on the end of the options. */
854         rc = append_option(options, maxopt_len, "device=", mop.mo_source);
855         if (rc != 0)
856                 goto out_osd;
857
858         if (verbose)
859                 printf("mounting device %s at %s, flags=%#x options=%s\n",
860                        mop.mo_source, mop.mo_target, flags, options);
861
862 #ifdef HAVE_SERVER_SUPPORT
863         if (!client && osd_tune_lustre(mop.mo_source, &mop)) {
864                 if (verbose)
865                         fprintf(stderr, "%s: unable to set tunables for %s"
866                                         " (may cause reduced IO performance)\n",
867                                         argv[0], mop.mo_source);
868         }
869 #endif
870 #ifdef HAVE_GSS
871         if (mop.mo_skpath[0] != '\0') {
872                 /* Treat shared key failures as fatal */
873                 rc = load_shared_keys(&mop);
874                 if (rc) {
875                         fprintf(stderr,
876                                 "%s: Error loading shared keys: %s\n",
877                                 progname, strerror(rc));
878                         goto out_osd;
879                 }
880         }
881 #endif /* HAVE_GSS */
882
883         if (!mop.mo_fake) {
884                 /* flags and target get to lustre_get_sb(), but not
885                  * lustre_fill_super().  Lustre ignores the flags, but mount
886                  * does not. */
887                 for (i = 0, rc = -EAGAIN; i <= mop.mo_retry && rc != 0; i++) {
888                         rc = mount(mop.mo_source, mop.mo_target, "lustre",
889                                    flags, (void *)options);
890                         if (rc != 0) {
891                                 if (verbose) {
892                                         fprintf(stderr, "%s: mount %s at %s "
893                                                 "failed: %s retries left: "
894                                                 "%d\n", basename(progname),
895                                                 mop.mo_usource, mop.mo_target,
896                                                 strerror(errno),
897                                                 mop.mo_retry - i);
898                                 }
899
900                                 if (mop.mo_retry) {
901                                         int limit = i/2 > 5 ? i/2 : 5;
902
903                                         sleep(1 << limit);
904                                 } else {
905                                         rc = errno;
906                                 }
907 #ifdef HAVE_SERVER_SUPPORT
908                         } else {
909                                 if (!client)
910                                         label_lustre(&mop);
911 #endif
912                         }
913                 }
914         }
915
916         if (rc) {
917                 char *cli;
918
919                 rc = errno;
920
921                 cli = strrchr(mop.mo_usource, ':');
922                 if (cli && (strlen(cli) > 2))
923                         cli += 2;
924                 else
925                         cli = NULL;
926
927                 fprintf(stderr, "%s: mount %s at %s failed: %s\n", progname,
928                         mop.mo_usource, mop.mo_target, strerror(errno));
929                 if (errno == EBUSY)
930                         fprintf(stderr, "Is the backend filesystem mounted?\n"
931                                         "Check /etc/mtab and /proc/mounts\n");
932                 if (errno == ENODEV)
933                         fprintf(stderr, "Are the lustre modules loaded?\n"
934                                 "Check /etc/modprobe.conf and "
935                                 "/proc/filesystems\n");
936                 if (errno == ENOTBLK)
937                         fprintf(stderr, "Do you need -o loop?\n");
938                 if (errno == ENOMEDIUM)
939                         fprintf(stderr,
940                                 "This filesystem needs at least 1 OST\n");
941                 if (errno == ENOENT) {
942                         fprintf(stderr, "Is the MGS specification correct?\n");
943                         fprintf(stderr, "Is the filesystem name correct?\n");
944                         fprintf(stderr, "If upgrading, is the copied client log"
945                                 " valid? (see upgrade docs)\n");
946                 }
947                 if (errno == EALREADY)
948                         fprintf(stderr, "The target service is already running."
949                                 " (%s)\n", mop.mo_usource);
950                 if (errno == ENXIO)
951                         fprintf(stderr, "The target service failed to start "
952                                 "(bad config log?) (%s).  "
953                                 "See /var/log/messages.\n", mop.mo_usource);
954                 if (errno == EIO)
955                         fprintf(stderr, "Is the MGS running?\n");
956                 if (errno == EADDRINUSE)
957                         fprintf(stderr, "The target service's index is already "
958                                 "in use. (%s)\n", mop.mo_usource);
959                 if (errno == EINVAL) {
960                         fprintf(stderr, "This may have multiple causes.\n");
961                         if (cli)
962                                 fprintf(stderr, "Is '%s' the correct filesystem"
963                                         " name?\n", cli);
964                         fprintf(stderr, "Are the mount options correct?\n");
965                         fprintf(stderr, "Check the syslog for more info.\n");
966                 }
967
968                 /* May as well try to clean up loop devs */
969                 if (strncmp(mop.mo_usource, "/dev/loop", 9) == 0) {
970                         char cmd[256];
971                         int ret;
972                         sprintf(cmd, "/sbin/losetup -d %s", mop.mo_usource);
973                         if ((ret = system(cmd)) < 0)
974                                 rc = errno;
975                         else if (ret > 0)
976                                 rc = WEXITSTATUS(ret);
977                 }
978
979         } else {
980                 /* Deal with utab just for client. Note that we ignore
981                  * the return value here since it is not worth to fail
982                  * mount by prevent some rare cases */
983                 if (strstr(mop.mo_usource, ":/") != NULL)
984                         update_utab_entry(&mop);
985                 if (!mop.mo_nomtab) {
986                         rc = update_mtab_entry(mop.mo_usource, mop.mo_target,
987                                                "lustre", mop.mo_orig_options,
988                                                0, 0, 0);
989                 }
990         }
991
992 out_osd:
993 #ifdef HAVE_SERVER_SUPPORT
994         if (!client)
995                 osd_fini();
996 #endif
997 out_options:
998         free(options);
999
1000 out_mo_source:
1001         /* mo_usource should be freed, but we can rely on the kernel */
1002         free(mop.mo_source);
1003         return rc;
1004 }