Whamcloud - gitweb
b=14528
[fs/lustre-release.git] / lustre / utils / mount_lustre.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  *  Copyright (C) 2002 Cluster File Systems, Inc.
5  *   Author: Robert Read <rread@clusterfs.com>
6  *   Author: Nathan Rutman <nathan@clusterfs.com>
7  *
8  *   This file is part of Lustre, http://www.lustre.org.
9  *
10  *   Lustre is free software; you can redistribute it and/or
11  *   modify it under the terms of version 2 of the GNU General Public
12  *   License as published by the Free Software Foundation.
13  *
14  *   Lustre is distributed in the hope that it will be useful,
15  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
16  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  *   GNU General Public License for more details.
18  *
19  *   You should have received a copy of the GNU General Public License
20  *   along with Lustre; if not, write to the Free Software
21  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22  *
23  */
24
25
26 #define _GNU_SOURCE
27 #include <stdlib.h>
28 #include <stdio.h>
29 #include <unistd.h>
30 #include <fcntl.h>
31 #include <errno.h>
32 #include <string.h>
33 #include <sys/mount.h>
34 #include <mntent.h>
35 #include <getopt.h>
36 #include <sys/utsname.h>
37 #include "obdctl.h"
38 #include <lustre_ver.h>
39 #include <glob.h>
40 #include <ctype.h>
41 #include <limits.h>
42
43 #define MAX_HW_SECTORS_KB_PATH  "queue/max_hw_sectors_kb"
44 #define MAX_SECTORS_KB_PATH     "queue/max_sectors_kb"
45
46 int          verbose = 0;
47 int          nomtab = 0;
48 int          fake = 0;
49 int          force = 0;
50 static char *progname = NULL;
51
52 void usage(FILE *out)
53 {
54         fprintf(out, "%s v"LUSTRE_VERSION_STRING"\n", progname);
55         fprintf(out, "\nThis mount helper should only be invoked via the "
56                 "mount (8) command,\ne.g. mount -t lustre dev dir\n\n");
57         fprintf(out, "usage: %s [-fhnv] [-o <mntopt>] <device> <mountpt>\n",
58                 progname);
59         fprintf(out,
60                 "\t<device>: the disk device, or for a client:\n"
61                 "\t\t<mgmtnid>[:<altmgtnid>...]:/<filesystem>-client\n"
62                 "\t<filesystem>: name of the Lustre filesystem (e.g. lustre1)\n"
63                 "\t<mountpt>: filesystem mountpoint (e.g. /mnt/lustre)\n"
64                 "\t-f|--fake: fake mount (updates /etc/mtab)\n"
65                 "\t--force: force mount even if already in /etc/mtab\n"
66                 "\t-h|--help: print this usage message\n"
67                 "\t-n|--nomtab: do not update /etc/mtab after mount\n"
68                 "\t-v|--verbose: print verbose config settings\n"
69                 "\t<mntopt>: one or more comma separated of:\n"
70                 "\t\t(no)flock,(no)user_xattr,(no)acl\n"
71                 "\t\tnosvc: only start MGC/MGS obds\n"
72                 "\t\texclude=<ostname>[:<ostname>] : colon-separated list of "
73                 "inactive OSTs (e.g. lustre-OST0001)\n"
74                 );
75         exit((out != stdout) ? EINVAL : 0);
76 }
77
78 static int check_mtab_entry(char *spec, char *mtpt, char *type)
79 {
80         FILE *fp;
81         struct mntent *mnt;
82
83         fp = setmntent(MOUNTED, "r");
84         if (fp == NULL)
85                 return(0);
86
87         while ((mnt = getmntent(fp)) != NULL) {
88                 if (strcmp(mnt->mnt_fsname, spec) == 0 &&
89                         strcmp(mnt->mnt_dir, mtpt) == 0 &&
90                         strcmp(mnt->mnt_type, type) == 0) {
91                         endmntent(fp);
92                         return(EEXIST);
93                 }
94         }
95         endmntent(fp);
96
97         return(0);
98 }
99
100 static int
101 update_mtab_entry(char *spec, char *mtpt, char *type, char *opts,
102                   int flags, int freq, int pass)
103 {
104         FILE *fp;
105         struct mntent mnt;
106         int rc = 0;
107
108         mnt.mnt_fsname = spec;
109         mnt.mnt_dir = mtpt;
110         mnt.mnt_type = type;
111         mnt.mnt_opts = opts ? opts : "";
112         mnt.mnt_freq = freq;
113         mnt.mnt_passno = pass;
114
115         fp = setmntent(MOUNTED, "a+");
116         if (fp == NULL) {
117                 fprintf(stderr, "%s: setmntent(%s): %s:",
118                         progname, MOUNTED, strerror (errno));
119                 rc = 16;
120         } else {
121                 if ((addmntent(fp, &mnt)) == 1) {
122                         fprintf(stderr, "%s: addmntent: %s:",
123                                 progname, strerror (errno));
124                         rc = 16;
125                 }
126                 endmntent(fp);
127         }
128
129         return rc;
130 }
131
132 /* Get rid of symbolic hostnames for tcp, since kernel can't do lookups */
133 #define MAXNIDSTR 1024
134 static char *convert_hostnames(char *s1)
135 {
136         char *converted, *s2 = 0, *c;
137         char sep;
138         int left = MAXNIDSTR;
139         lnet_nid_t nid;
140
141         converted = malloc(left);
142         c = converted;
143         while ((left > 0) && (*s1 != '/')) {
144                 s2 = strpbrk(s1, ",:");
145                 if (!s2)
146                         goto out_free;
147                 sep = *s2;
148                 *s2 = '\0';
149                 nid = libcfs_str2nid(s1);
150                 *s2 = sep;                      /* back to original string */
151                 if (nid == LNET_NID_ANY)
152                         goto out_free;
153                 c += snprintf(c, left, "%s%c", libcfs_nid2str(nid), sep);
154                 left = converted + MAXNIDSTR - c;
155                 s1 = s2 + 1;
156         }
157         snprintf(c, left, "%s", s1);
158         return converted;
159 out_free:
160         fprintf(stderr, "%s: Can't parse NID '%s'\n", progname, s1);
161         free(converted);
162         return NULL;
163 }
164
165 /*****************************************************************************
166  *
167  * This part was cribbed from util-linux/mount/mount.c.  There was no clear
168  * license information, but many other files in the package are identified as
169  * GNU GPL, so it's a pretty safe bet that was their intent.
170  *
171  ****************************************************************************/
172 struct opt_map {
173         const char *opt;        /* option name */
174         int inv;                /* true if flag value should be inverted */
175         int mask;               /* flag mask value */
176 };
177
178 static const struct opt_map opt_map[] = {
179   /*"optname", inv,ms_mask */
180   /* These flags are parsed by mount, not lustre */
181   { "defaults", 0, 0         },      /* default options */
182   { "remount",  0, MS_REMOUNT},      /* remount with different options */
183   { "rw",       1, MS_RDONLY },      /* read-write */
184   { "ro",       0, MS_RDONLY },      /* read-only */
185   { "exec",     1, MS_NOEXEC },      /* permit execution of binaries */
186   { "noexec",   0, MS_NOEXEC },      /* don't execute binaries */
187   { "suid",     1, MS_NOSUID },      /* honor suid executables */
188   { "nosuid",   0, MS_NOSUID },      /* don't honor suid executables */
189   { "dev",      1, MS_NODEV  },      /* interpret device files  */
190   { "nodev",    0, MS_NODEV  },      /* don't interpret devices */
191   { "sync",     0, MS_SYNCHRONOUS},  /* synchronous I/O */
192   { "async",    1, MS_SYNCHRONOUS},  /* asynchronous I/O */
193   { "atime",    1, MS_NOATIME  },    /* set file access time on read */
194   { "noatime",  0, MS_NOATIME  },    /* do not set file access time on read */
195 #ifdef MS_NODIRATIME
196   { "diratime", 1, MS_NODIRATIME },  /* set file access time on read */
197   { "nodiratime",0,MS_NODIRATIME },  /* do not set file access time on read */
198 #endif
199 #ifdef MS_RELATIME
200   { "relatime", 0, MS_RELATIME },  /* set file access time on read */
201   { "norelatime",1,MS_RELATIME },  /* do not set file access time on read */
202 #endif
203   { "auto",     0, 0         },      /* Can be mounted using -a */
204   { "noauto",   0, 0         },      /* Can only be mounted explicitly */
205   { "nousers",  1, 0         },      /* Forbid ordinary user to mount */
206   { "nouser",   1, 0         },      /* Forbid ordinary user to mount */
207   { "noowner",  1, 0         },      /* Device owner has no special privs */
208   { "_netdev",  0, 0         },      /* Device accessible only via network */
209   { NULL,       0, 0         }
210 };
211 /****************************************************************************/
212
213 /* 1  = don't pass on to lustre
214    0  = pass on to lustre */
215 static int parse_one_option(const char *check, int *flagp)
216 {
217         const struct opt_map *opt;
218
219         for (opt = &opt_map[0]; opt->opt != NULL; opt++) {
220                 if (strncmp(check, opt->opt, strlen(opt->opt)) == 0) {
221                         if (opt->mask) {
222                                 if (opt->inv)
223                                         *flagp &= ~(opt->mask);
224                                 else
225                                         *flagp |= opt->mask;
226                         }
227                         return 1;
228                 }
229         }
230         /* Assume any unknown options are valid and pass them on.  The mount
231            will fail if lmd_parse, ll_options or ldiskfs doesn't recognize it.*/
232         return 0;
233 }
234
235 /* Replace options with subset of Lustre-specific options, and
236    fill in mount flags */
237 int parse_options(char *orig_options, int *flagp)
238 {
239         char *options, *opt, *nextopt;
240
241         options = calloc(strlen(orig_options) + 1, 1);
242         *flagp = 0;
243         nextopt = orig_options;
244         while ((opt = strsep(&nextopt, ","))) {
245                 if (!*opt)
246                         /* empty option */
247                         continue;
248                 if (parse_one_option(opt, flagp) == 0) {
249                         /* pass this on as an option */
250                         if (*options)
251                                 strcat(options, ",");
252                         strcat(options, opt);
253                 }
254         }
255         strcpy(orig_options, options);
256         free(options);
257         return 0;
258 }
259
260
261 int read_file(char *path, char *buf, int size)
262 {
263         FILE *fd;
264
265         fd = fopen(path, "r");
266         if (fd == NULL)
267                 return errno;
268
269         fgets(buf, size, fd);
270         fclose(fd);
271         return 0;
272 }
273
274 int write_file(char *path, char *buf)
275 {
276         FILE *fd;
277
278         fd = fopen(path, "w");
279         if (fd == NULL)
280                 return errno;
281
282         fputs(buf, fd);
283         fclose(fd);
284         return 0;
285 }
286
287 /* This is to tune the kernel for good SCSI performance.
288  * For that we set the value of /sys/block/{dev}/queue/max_sectors_kb
289  * to the value of /sys/block/{dev}/queue/max_hw_sectors_kb */
290 int set_tunables(char *source, int src_len)
291 {
292         glob_t glob_info;
293         struct stat stat_buf;
294         char *chk_major, *chk_minor;
295         char *savept, *dev, *s2 = 0;
296         char *ret_path;
297         char buf[PATH_MAX] = {'\0'}, path[PATH_MAX] = {'\0'};
298         char real_path[PATH_MAX] = {'\0'};
299         int i, rc = 0;
300         int major, minor;
301
302         if (!source)
303                 return -EINVAL;
304
305         ret_path = realpath(source, real_path);
306         if (ret_path == NULL) {
307                 if (verbose)
308                         fprintf(stderr, "warning: %s: cannot resolve: %s",
309                                 source, strerror(errno));
310                 return -EINVAL;
311         }
312
313         src_len = sizeof(real_path);
314
315         if (strncmp(real_path, "/dev/loop", 9) == 0)
316                 return 0;
317
318         if ((real_path[0] != '/') && ((s2 = strpbrk(real_path, ",:")) != NULL))
319                 return 0;
320
321         dev = real_path + src_len - 1;
322         while (dev > real_path && (*dev != '/')) {
323                 if (isdigit(*dev))
324                         *dev = 0;
325                 dev--;
326         }
327         snprintf(path, sizeof(path), "/sys/block%s/%s", dev,
328                  MAX_HW_SECTORS_KB_PATH);
329         rc = read_file(path, buf, sizeof(buf));
330         if (rc == 0 && (strlen(buf) - 1) > 0) {
331                 snprintf(path, sizeof(path), "/sys/block%s/%s", dev,
332                          MAX_SECTORS_KB_PATH);
333                 rc = write_file(path, buf);
334                 if (rc && verbose)
335                         fprintf(stderr, "warning: opening %s: %s\n",
336                                 path, strerror(errno));
337                 return rc;
338         }
339
340         if (rc != ENOENT)
341                 return rc;
342
343         /* The name of the device say 'X' specified in /dev/X may not
344          * match any entry under /sys/block/. In that case we need to
345          * match the major/minor number to find the entry under
346          * sys/block corresponding to /dev/X */
347         dev = real_path + src_len - 1;
348         while (dev > real_path) {
349                 if (isdigit(*dev))
350                         *dev = 0;
351                 dev--;
352         }
353
354         rc = stat(dev, &stat_buf);
355         if (rc) {
356                 if (verbose)
357                         fprintf(stderr, "warning: %s, device %s stat failed\n",
358                                 strerror(errno), dev);
359                 return rc;
360         }
361
362         major = major(stat_buf.st_rdev);
363         minor = minor(stat_buf.st_rdev);
364         rc = glob("/sys/block/*", GLOB_NOSORT, NULL, &glob_info);
365         if (rc) {
366                 if (verbose)
367                         fprintf(stderr, "warning: failed to read entries under "
368                                 "/sys/block\n");
369                 return rc;
370         }
371
372         for (i = 0; i < glob_info.gl_pathc; i++){
373                 snprintf(path, sizeof(path), "%s/dev", glob_info.gl_pathv[i]);
374
375                 rc = read_file(path, buf, sizeof(buf));
376                 if (rc)
377                         continue;
378
379                 if (buf[strlen(buf) - 1] == '\n')
380                         buf[strlen(buf) - 1] = '\0';
381
382                 chk_major = strtok_r(buf, ":", &savept);
383                 chk_minor = savept;
384                 if (major == atoi(chk_major) &&minor == atoi(chk_minor))
385                         break;
386         }
387
388         if (i == glob_info.gl_pathc) {
389                 if (verbose)
390                         fprintf(stderr,"warning: device %s does not match any "
391                                 "entry under /sys/block\n", real_path);
392                 rc = -EINVAL;
393                 goto out;
394         }
395
396         snprintf(path, sizeof(path), "%s/%s", glob_info.gl_pathv[i],
397                  MAX_HW_SECTORS_KB_PATH);
398         rc = read_file(path, buf, sizeof(buf));
399         if (rc) {
400                 if (verbose)
401                         fprintf(stderr, "warning: opening %s: %s\n",
402                                 path, strerror(errno));
403                 goto out;
404         }
405
406         if (strlen(buf) - 1 > 0) {
407                 snprintf(path, sizeof(path), "%s/%s",
408                          glob_info.gl_pathv[i], MAX_SECTORS_KB_PATH);
409                 rc = write_file(path, buf);
410                 if (rc && verbose)
411                         fprintf(stderr, "warning: writing to %s: %s\n",
412                                 path, strerror(errno));
413         }
414
415 out:
416         globfree(&glob_info);
417         return rc;
418 }
419
420 int main(int argc, char *const argv[])
421 {
422         char default_options[] = "";
423         char *usource, *source, *target, *ptr;
424         char *options, *optcopy, *orig_options = default_options;
425         int i, nargs = 3, opt, rc, flags, optlen;
426         static struct option long_opt[] = {
427                 {"fake", 0, 0, 'f'},
428                 {"force", 0, 0, 1},
429                 {"help", 0, 0, 'h'},
430                 {"nomtab", 0, 0, 'n'},
431                 {"options", 1, 0, 'o'},
432                 {"verbose", 0, 0, 'v'},
433                 {0, 0, 0, 0}
434         };
435
436         progname = strrchr(argv[0], '/');
437         progname = progname ? progname + 1 : argv[0];
438
439         while ((opt = getopt_long(argc, argv, "fhno:v",
440                                   long_opt, NULL)) != EOF){
441                 switch (opt) {
442                 case 1:
443                         ++force;
444                         printf("force: %d\n", force);
445                         nargs++;
446                         break;
447                 case 'f':
448                         ++fake;
449                         printf("fake: %d\n", fake);
450                         nargs++;
451                         break;
452                 case 'h':
453                         usage(stdout);
454                         break;
455                 case 'n':
456                         ++nomtab;
457                         printf("nomtab: %d\n", nomtab);
458                         nargs++;
459                         break;
460                 case 'o':
461                         orig_options = optarg;
462                         nargs++;
463                         break;
464                 case 'v':
465                         ++verbose;
466                         nargs++;
467                         break;
468                 default:
469                         fprintf(stderr, "%s: unknown option '%c'\n",
470                                 progname, opt);
471                         usage(stderr);
472                         break;
473                 }
474         }
475
476         if (optind + 2 > argc) {
477                 fprintf(stderr, "%s: too few arguments\n", progname);
478                 usage(stderr);
479         }
480
481         usource = argv[optind];
482         source = convert_hostnames(usource);
483         target = argv[optind + 1];
484         ptr = target + strlen(target) - 1;
485         while ((ptr > target) && (*ptr == '/')) {
486                 *ptr = 0;
487                 ptr--;
488         }
489
490         if (!usource || !source) {
491                 usage(stderr);
492         }
493
494         if (verbose) {
495                 for (i = 0; i < argc; i++)
496                         printf("arg[%d] = %s\n", i, argv[i]);
497                 printf("source = %s (%s), target = %s\n", usource, source, target);
498                 printf("options = %s\n", orig_options);
499         }
500
501         options = malloc(strlen(orig_options) + 1);
502         strcpy(options, orig_options);
503         rc = parse_options(options, &flags);
504         if (rc) {
505                 fprintf(stderr, "%s: can't parse options: %s\n",
506                         progname, options);
507                 return(EINVAL);
508         }
509
510         if (!force) {
511                 rc = check_mtab_entry(usource, target, "lustre");
512                 if (rc && !(flags & MS_REMOUNT)) {
513                         fprintf(stderr, "%s: according to %s %s is "
514                                 "already mounted on %s\n",
515                                 progname, MOUNTED, usource, target);
516                         return(EEXIST);
517                 }
518                 if (!rc && (flags & MS_REMOUNT)) {
519                         fprintf(stderr, "%s: according to %s %s is "
520                                 "not already mounted on %s\n",
521                                 progname, MOUNTED, usource, target);
522                         return(ENOENT);
523                 }
524         }
525         if (flags & MS_REMOUNT)
526                 nomtab++;
527
528         rc = access(target, F_OK);
529         if (rc) {
530                 rc = errno;
531                 fprintf(stderr, "%s: %s inaccessible: %s\n", progname, target,
532                         strerror(errno));
533                 return rc;
534         }
535
536         /* In Linux 2.4, the target device doesn't get passed to any of our
537            functions.  So we'll stick it on the end of the options. */
538         optlen = strlen(options) + strlen(",device=") + strlen(source) + 1;
539         optcopy = malloc(optlen);
540         strcpy(optcopy, options);
541         if (*optcopy)
542                 strcat(optcopy, ",");
543         strcat(optcopy, "device=");
544         strcat(optcopy, source);
545
546         if (verbose)
547                 printf("mounting device %s at %s, flags=%#x options=%s\n",
548                        source, target, flags, optcopy);
549
550         if (set_tunables(source, strlen(source)) && verbose)
551                 fprintf(stderr, "%s: unable to set tunables for %s"
552                                 " (may cause reduced IO performance)",
553                                 argv[0], source);
554
555         if (!fake)
556                 /* flags and target get to lustre_get_sb, but not
557                    lustre_fill_super.  Lustre ignores the flags, but mount
558                    does not. */
559                 rc = mount(source, target, "lustre", flags, (void *)optcopy);
560
561         if (rc) {
562                 char *cli;
563
564                 rc = errno;
565
566                 cli = strrchr(usource, ':');
567                 if (cli && (strlen(cli) > 2))
568                         cli += 2;
569                 else
570                         cli = NULL;
571
572                 fprintf(stderr, "%s: mount %s at %s failed: %s\n", progname,
573                         usource, target, strerror(errno));
574                 if (errno == ENODEV)
575                         fprintf(stderr, "Are the lustre modules loaded?\n"
576                                 "Check /etc/modprobe.conf and /proc/filesystems"
577                                 "\nNote 'alias lustre llite' should be removed"
578                                 " from modprobe.conf\n");
579                 if (errno == ENOTBLK)
580                         fprintf(stderr, "Do you need -o loop?\n");
581                 if (errno == ENOMEDIUM)
582                         fprintf(stderr,
583                                 "This filesystem needs at least 1 OST\n");
584                 if (errno == ENOENT) {
585                         fprintf(stderr, "Is the MGS specification correct?\n");
586                         fprintf(stderr, "Is the filesystem name correct?\n");
587                         fprintf(stderr, "If upgrading, is the copied client log"
588                                 " valid? (see upgrade docs)\n");
589                 }
590                 if (errno == EALREADY)
591                         fprintf(stderr, "The target service is already running."
592                                 " (%s)\n", usource);
593                 if (errno == ENXIO)
594                         fprintf(stderr, "The target service failed to start "
595                                 "(bad config log?) (%s).  "
596                                 "See /var/log/messages.\n", usource);
597                 if (errno == EIO)
598                         fprintf(stderr, "Is the MGS running?\n");
599                 if (errno == EADDRINUSE)
600                         fprintf(stderr, "The target service's index is already "
601                                 "in use. (%s)\n", usource);
602                 if (errno == EINVAL) {
603                         fprintf(stderr, "This may have multiple causes.\n");
604                         if (cli)
605                                 fprintf(stderr, "Is '%s' the correct filesystem"
606                                         " name?\n", cli);
607                         fprintf(stderr, "Are the mount options correct?\n");
608                         fprintf(stderr, "Check the syslog for more info.\n");
609                 }
610
611                 /* May as well try to clean up loop devs */
612                 if (strncmp(usource, "/dev/loop", 9) == 0) {
613                         char cmd[256];
614                         sprintf(cmd, "/sbin/losetup -d %s", usource);
615                         system(cmd);
616                 }
617
618         } else if (!nomtab) {
619                 rc = update_mtab_entry(usource, target, "lustre", orig_options,
620                                        0,0,0);
621         }
622
623         free(optcopy);
624         free(source);
625         return rc;
626 }