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