Whamcloud - gitweb
79e89e68b26849cf99397ad9eafa5d2a54861e6a
[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                 return -EINVAL;
393         }
394
395         snprintf(path, sizeof(path), "%s/%s", glob_info.gl_pathv[i],
396                  MAX_HW_SECTORS_KB_PATH);
397         rc = read_file(path, buf, sizeof(buf));
398         if (rc) {
399                 if (verbose)
400                         fprintf(stderr, "warning: opening %s: %s\n",
401                                 path, strerror(errno));
402                 return rc;
403         }
404
405         if (strlen(buf) - 1 > 0) {
406                 snprintf(path, sizeof(path), "%s/%s",
407                          glob_info.gl_pathv[i], MAX_SECTORS_KB_PATH);
408                 rc = write_file(path, buf);
409                 if (rc && verbose)
410                         fprintf(stderr, "warning: writing to %s: %s\n",
411                                 path, strerror(errno));
412         }
413         return rc;
414 }
415
416 int main(int argc, char *const argv[])
417 {
418         char default_options[] = "";
419         char *usource, *source, *target, *ptr;
420         char *options, *optcopy, *orig_options = default_options;
421         int i, nargs = 3, opt, rc, flags, optlen;
422         static struct option long_opt[] = {
423                 {"fake", 0, 0, 'f'},
424                 {"force", 0, 0, 1},
425                 {"help", 0, 0, 'h'},
426                 {"nomtab", 0, 0, 'n'},
427                 {"options", 1, 0, 'o'},
428                 {"verbose", 0, 0, 'v'},
429                 {0, 0, 0, 0}
430         };
431
432         progname = strrchr(argv[0], '/');
433         progname = progname ? progname + 1 : argv[0];
434
435         while ((opt = getopt_long(argc, argv, "fhno:v",
436                                   long_opt, NULL)) != EOF){
437                 switch (opt) {
438                 case 1:
439                         ++force;
440                         printf("force: %d\n", force);
441                         nargs++;
442                         break;
443                 case 'f':
444                         ++fake;
445                         printf("fake: %d\n", fake);
446                         nargs++;
447                         break;
448                 case 'h':
449                         usage(stdout);
450                         break;
451                 case 'n':
452                         ++nomtab;
453                         printf("nomtab: %d\n", nomtab);
454                         nargs++;
455                         break;
456                 case 'o':
457                         orig_options = optarg;
458                         nargs++;
459                         break;
460                 case 'v':
461                         ++verbose;
462                         nargs++;
463                         break;
464                 default:
465                         fprintf(stderr, "%s: unknown option '%c'\n",
466                                 progname, opt);
467                         usage(stderr);
468                         break;
469                 }
470         }
471
472         if (optind + 2 > argc) {
473                 fprintf(stderr, "%s: too few arguments\n", progname);
474                 usage(stderr);
475         }
476
477         usource = argv[optind];
478         source = convert_hostnames(usource);
479         target = argv[optind + 1];
480         ptr = target + strlen(target) - 1;
481         while ((ptr > target) && (*ptr == '/')) {
482                 *ptr = 0;
483                 ptr--;
484         }
485
486         if (!usource || !source) {
487                 usage(stderr);
488         }
489
490         if (verbose) {
491                 for (i = 0; i < argc; i++)
492                         printf("arg[%d] = %s\n", i, argv[i]);
493                 printf("source = %s (%s), target = %s\n", usource, source, target);
494                 printf("options = %s\n", orig_options);
495         }
496
497         options = malloc(strlen(orig_options) + 1);
498         strcpy(options, orig_options);
499         rc = parse_options(options, &flags);
500         if (rc) {
501                 fprintf(stderr, "%s: can't parse options: %s\n",
502                         progname, options);
503                 return(EINVAL);
504         }
505
506         if (!force) {
507                 rc = check_mtab_entry(usource, target, "lustre");
508                 if (rc && !(flags & MS_REMOUNT)) {
509                         fprintf(stderr, "%s: according to %s %s is "
510                                 "already mounted on %s\n",
511                                 progname, MOUNTED, usource, target);
512                         return(EEXIST);
513                 }
514                 if (!rc && (flags & MS_REMOUNT)) {
515                         fprintf(stderr, "%s: according to %s %s is "
516                                 "not already mounted on %s\n",
517                                 progname, MOUNTED, usource, target);
518                         return(ENOENT);
519                 }
520         }
521         if (flags & MS_REMOUNT)
522                 nomtab++;
523
524         rc = access(target, F_OK);
525         if (rc) {
526                 rc = errno;
527                 fprintf(stderr, "%s: %s inaccessible: %s\n", progname, target,
528                         strerror(errno));
529                 return rc;
530         }
531
532         /* In Linux 2.4, the target device doesn't get passed to any of our
533            functions.  So we'll stick it on the end of the options. */
534         optlen = strlen(options) + strlen(",device=") + strlen(source) + 1;
535         optcopy = malloc(optlen);
536         strcpy(optcopy, options);
537         if (*optcopy)
538                 strcat(optcopy, ",");
539         strcat(optcopy, "device=");
540         strcat(optcopy, source);
541
542         if (verbose)
543                 printf("mounting device %s at %s, flags=%#x options=%s\n",
544                        source, target, flags, optcopy);
545
546         if (set_tunables(source, strlen(source)) && verbose)
547                 fprintf(stderr, "%s: unable to set tunables for %s"
548                                 " (may cause reduced IO performance)",
549                                 argv[0], source);
550
551         if (!fake)
552                 /* flags and target get to lustre_get_sb, but not
553                    lustre_fill_super.  Lustre ignores the flags, but mount
554                    does not. */
555                 rc = mount(source, target, "lustre", flags, (void *)optcopy);
556
557         if (rc) {
558                 char *cli;
559
560                 rc = errno;
561
562                 cli = strrchr(usource, ':');
563                 if (cli && (strlen(cli) > 2))
564                         cli += 2;
565                 else
566                         cli = NULL;
567
568                 fprintf(stderr, "%s: mount %s at %s failed: %s\n", progname,
569                         usource, target, strerror(errno));
570                 if (errno == ENODEV)
571                         fprintf(stderr, "Are the lustre modules loaded?\n"
572                                 "Check /etc/modprobe.conf and /proc/filesystems"
573                                 "\nNote 'alias lustre llite' should be removed"
574                                 " from modprobe.conf\n");
575                 if (errno == ENOTBLK)
576                         fprintf(stderr, "Do you need -o loop?\n");
577                 if (errno == ENOMEDIUM)
578                         fprintf(stderr,
579                                 "This filesystem needs at least 1 OST\n");
580                 if (errno == ENOENT) {
581                         fprintf(stderr, "Is the MGS specification correct?\n");
582                         fprintf(stderr, "Is the filesystem name correct?\n");
583                         fprintf(stderr, "If upgrading, is the copied client log"
584                                 " valid? (see upgrade docs)\n");
585                 }
586                 if (errno == EALREADY)
587                         fprintf(stderr, "The target service is already running."
588                                 " (%s)\n", usource);
589                 if (errno == ENXIO)
590                         fprintf(stderr, "The target service failed to start "
591                                 "(bad config log?) (%s).  "
592                                 "See /var/log/messages.\n", usource);
593                 if (errno == EIO)
594                         fprintf(stderr, "Is the MGS running?\n");
595                 if (errno == EADDRINUSE)
596                         fprintf(stderr, "The target service's index is already "
597                                 "in use. (%s)\n", usource);
598                 if (errno == EINVAL) {
599                         fprintf(stderr, "This may have multiple causes.\n");
600                         if (cli)
601                                 fprintf(stderr, "Is '%s' the correct filesystem"
602                                         " name?\n", cli);
603                         fprintf(stderr, "Are the mount options correct?\n");
604                         fprintf(stderr, "Check the syslog for more info.\n");
605                 }
606
607                 /* May as well try to clean up loop devs */
608                 if (strncmp(usource, "/dev/loop", 9) == 0) {
609                         char cmd[256];
610                         sprintf(cmd, "/sbin/losetup -d %s", usource);
611                         system(cmd);
612                 }
613
614         } else if (!nomtab) {
615                 rc = update_mtab_entry(usource, target, "lustre", orig_options,
616                                        0,0,0);
617         }
618
619         free(optcopy);
620         free(source);
621         return rc;
622 }