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