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