Whamcloud - gitweb
LU-8660 mgs: handle return code of server_make_name()
[fs/lustre-release.git] / lustre / utils / mkfs_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.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2011, 2015, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  * Lustre is a trademark of Sun Microsystems, Inc.
31  *
32  * lustre/utils/mkfs_lustre.c
33  *
34  * Author: Nathan Rutman <nathan@clusterfs.com>
35 */
36
37 /* This source file is compiled into both mkfs.lustre and tunefs.lustre */
38
39 #if HAVE_CONFIG_H
40 #  include "config.h"
41 #endif /* HAVE_CONFIG_H */
42
43 #ifndef _GNU_SOURCE
44 #define _GNU_SOURCE
45 #endif
46 #include <stdlib.h>
47 #include <stdio.h>
48 #include <unistd.h>
49 #include <fcntl.h>
50 #include <stdarg.h>
51 #include <mntent.h>
52 #include <stdbool.h>
53
54 #include <sys/types.h>
55 #include <sys/stat.h>
56 #include <sys/mount.h>
57 #include <sys/utsname.h>
58
59 #include <string.h>
60 #include <getopt.h>
61 #include <limits.h>
62 #include <ctype.h>
63 #include <lnet/nidstr.h>
64 #include <lustre_disk.h>
65 #include <lustre_param.h>
66 #include <lnet/lnetctl.h>
67 #include <lustre_ver.h>
68
69 #include "mount_utils.h"
70
71 char *progname;
72 int verbose = 1;
73 int version;
74 static int print_only = 0;
75
76 #ifdef HAVE_LDISKFS_OSD
77 #define FSLIST_LDISKFS "ldiskfs"
78 #define HAVE_FSLIST
79 #else
80  #define FSLIST_LDISKFS ""
81 #endif /* HAVE_LDISKFS_OSD */
82 #ifdef HAVE_ZFS_OSD
83  #ifdef HAVE_FSLIST
84    #define FSLIST_ZFS "|zfs"
85  #else
86   #define FSLIST_ZFS "zfs"
87   #define HAVE_FSLIST
88  #endif
89 #else
90  #define FSLIST_ZFS ""
91 #endif /* HAVE_ZFS_OSD */
92
93 #ifndef HAVE_FSLIST
94  #error "no backing OSD types (ldiskfs or ZFS) are configured"
95 #endif
96
97 #define FSLIST FSLIST_LDISKFS FSLIST_ZFS
98
99 void usage(FILE *out)
100 {
101         fprintf(out, "usage: %s <target type> [--backfstype="FSLIST"] "
102                 "--fsname=<filesystem name>\n"
103                 "\t--index=<target index> [options] <device>\n", progname);
104 #ifdef HAVE_ZFS_OSD
105         fprintf(out, "usage: %s <target type> --backfstype=zfs "
106                 "--fsname=<filesystem name> [options]\n"
107                 "\t<pool name>/<dataset name>\n"
108                 "\t[[<vdev type>] <device> [<device> ...] [vdev type>] ...]\n",
109                 progname);
110 #endif
111         fprintf(out,
112                 "\t<device>:block device or file (e.g /dev/sda or /tmp/ost1)\n"
113 #ifdef HAVE_ZFS_OSD
114                 "\t<pool name>: name of ZFS pool where target is created "
115                         "(e.g. tank)\n"
116                 "\t<dataset name>: name of new dataset, must be unique within "
117                         "pool (e.g. ost1)\n"
118                 "\t<vdev type>: type of vdev (mirror, raidz, raidz2, spare, "
119                         "cache, log)\n"
120 #endif
121                 "\n"
122 #ifndef TUNEFS
123                 "\ttarget types:\n"
124                 "\t\t--mgs: configuration management service\n"
125                 "\t\t--mdt: metadata storage, mutually exclusive with ost\n"
126                 "\t\t--ost: object storage, mutually exclusive with mdt, mgs\n"
127 #endif
128                 "\toptions (in order of popularity):\n"
129                 "\t\t--index=#N: numerical target index (0..N)\n"
130                 "\t\t\trequired for all targets other than the MGS,\n"
131                 "\t\t\ttarget index may either be a decimal number or\n"
132                 "\t\t\thexadecimal number starting with '0x'\n"
133                 "\t\t--fsname=<8_char_filesystem_name>: fs targets belong to\n"
134                 "\t\t\trequired for all targets other than MGS\n"
135                 "\t\t--mgsnode=<nid>[,<...>]: NID(s) of remote MGS\n"
136                 "\t\t\trequired for all targets other than MGS\n"
137                 "\t\t--mountfsoptions=<opts>: permanent Lustre mount options\n"
138                 "\t\t--backfs-mount-opts=<opts>: backing fs mount options\n"
139                 "\t\t--failnode=<nid>[,<...>]: NID(s) of backup failover node\n"
140                 "\t\t\tmutually exclusive with --servicenode\n"
141                 "\t\t--servicenode=<nid>[,<...>]: NID(s) of service partners\n"
142                 "\t\t\ttreat nodes as equal service node, mutually exclusive "
143                         "with --failnode\n"
144                 "\t\t--param <key>=<value>: set a permanent parameter\n"
145                 "\t\t\te.g. --param sys.timeout=40\n"
146                 "\t\t\t     --param lov.stripesize=2M\n"
147                 "\t\t--network=<net>[,<...>]: restrict OST/MDT to network(s)\n"
148 #ifndef TUNEFS
149                 "\t\t--backfstype=<fstype>: backing fs type (ldiskfs, zfs)\n"
150                 "\t\t--device-size=#N(KB): device size for loop devices\n"
151                 "\t\t--mkfsoptions=<opts>: format options\n"
152                 "\t\t--reformat: overwrite an existing disk\n"
153                 "\t\t--replace: replace an old target with the same index\n"
154                 "\t\t--stripe-count-hint=#N: for optimizing MDT inode size\n"
155 #else
156                 "\t\t--erase-params: erase all old parameter settings\n"
157                 "\t\t--nomgs: turn off MGS service on this MDT\n"
158                 "\t\t--writeconf: erase all config logs for this fs.\n"
159                 "\t\t--quota: enable space accounting on old 2.x device.\n"
160 #endif
161                 "\t\t--comment=<user comment>: arbitrary string (%d bytes)\n"
162                 "\t\t--dryrun: report what we would do; don't write to disk\n"
163                 "\t\t--verbose: e.g. show mkfs progress\n"
164                 "\t\t--force-nohostid: Ignore hostid requirement for ZFS "
165                         "import\n"
166                 "\t\t-V|--version: output build version of the utility and\n"
167                 "\t\t\texit\n"
168                 "\t\t--quiet\n",
169                 (int)sizeof(((struct lustre_disk_data *)0)->ldd_userdata));
170         return;
171 }
172
173 /* ==================== Lustre config functions =============*/
174
175 void print_ldd(char *str, struct lustre_disk_data *ldd)
176 {
177         printf("\n   %s:\n", str);
178         printf("Target:     %s\n", ldd->ldd_svname);
179         if (ldd->ldd_svindex == INDEX_UNASSIGNED)
180                 printf("Index:      unassigned\n");
181         else
182                 printf("Index:      %d\n", ldd->ldd_svindex);
183         if (ldd->ldd_uuid[0])
184                 printf("UUID:       %s\n", (char *)ldd->ldd_uuid);
185         printf("Lustre FS:  %s\n", ldd->ldd_fsname);
186         printf("Mount type: %s\n", MT_STR(ldd));
187         printf("Flags:      %#x\n", ldd->ldd_flags);
188         printf("              (%s%s%s%s%s%s%s%s%s)\n",
189                IS_MDT(ldd) ? "MDT ":"",
190                IS_OST(ldd) ? "OST ":"",
191                IS_MGS(ldd) ? "MGS ":"",
192                ldd->ldd_flags & LDD_F_NEED_INDEX ? "needs_index ":"",
193                ldd->ldd_flags & LDD_F_VIRGIN     ? "first_time ":"",
194                ldd->ldd_flags & LDD_F_UPDATE     ? "update ":"",
195                ldd->ldd_flags & LDD_F_WRITECONF  ? "writeconf ":"",
196                ldd->ldd_flags & LDD_F_NO_PRIMNODE? "no_primnode ":"",
197                ldd->ldd_flags & LDD_F_UPGRADE14  ? "upgrade1.4 ":"");
198         printf("Persistent mount opts: %s\n", ldd->ldd_mount_opts);
199         printf("Parameters:%s\n", ldd->ldd_params);
200         if (ldd->ldd_userdata[0])
201                 printf("Comment: %s\n", ldd->ldd_userdata);
202         printf("\n");
203 }
204
205 void set_defaults(struct mkfs_opts *mop)
206 {
207         mop->mo_ldd.ldd_magic = LDD_MAGIC;
208         mop->mo_ldd.ldd_config_ver = 1;
209         mop->mo_ldd.ldd_flags = LDD_F_NEED_INDEX | LDD_F_UPDATE | LDD_F_VIRGIN;
210 #ifdef HAVE_LDISKFS_OSD
211         mop->mo_ldd.ldd_mount_type = LDD_MT_LDISKFS;
212 #else
213         mop->mo_ldd.ldd_mount_type = LDD_MT_ZFS;
214 #endif
215         mop->mo_ldd.ldd_svindex = INDEX_UNASSIGNED;
216         mop->mo_mgs_failnodes = 0;
217         mop->mo_stripe_count = 1;
218         mop->mo_pool_vdevs = NULL;
219 }
220
221 static inline void badopt(const char *opt, char *type)
222 {
223         fprintf(stderr, "%s: '--%s' only valid for %s\n",
224                 progname, opt, type);
225         usage(stderr);
226 }
227
228 /* from mount_lustre */
229 /* Get rid of symbolic hostnames for tcp, since kernel can't do lookups */
230 #define MAXNIDSTR 1024
231 static char *convert_hostnames(char *s1)
232 {
233         char *converted, *s2 = 0, *c, *end, sep;
234         int left = MAXNIDSTR;
235         lnet_nid_t nid;
236
237         converted = malloc(left);
238         if (converted == NULL) {
239                 return NULL;
240         }
241
242         end = s1 + strlen(s1);
243         c = converted;
244         while ((left > 0) && (s1 < end)) {
245                 s2 = strpbrk(s1, ",:");
246                 if (!s2)
247                         s2 = end;
248                 sep = *s2;
249                 *s2 = '\0';
250                 nid = libcfs_str2nid(s1);
251                 *s2 = sep;
252
253                 if (nid == LNET_NID_ANY) {
254                         fprintf(stderr, "%s: Cannot resolve hostname '%s'.\n",
255                                 progname, s1);
256                         free(converted);
257                         return NULL;
258                 }
259                 if (strncmp(libcfs_nid2str(nid), "127.0.0.1",
260                             strlen("127.0.0.1")) == 0) {
261                         fprintf(stderr, "%s: The NID '%s' resolves to the "
262                                 "loopback address '%s'.  Lustre requires a "
263                                 "non-loopback address.\n",
264                                 progname, s1, libcfs_nid2str(nid));
265                         free(converted);
266                         return NULL;
267                 }
268
269                 c += snprintf(c, left, "%s%c", libcfs_nid2str(nid), sep);
270                 left = converted + MAXNIDSTR - c;
271                 s1 = s2 + 1;
272         }
273         return converted;
274 }
275
276 int parse_opts(int argc, char *const argv[], struct mkfs_opts *mop,
277                char **mountopts)
278 {
279         static struct option long_opt[] = {
280                 { "backfs-mount-opts",  required_argument,      NULL, 'B' },
281                 { "failnode",           required_argument,      NULL, 'f' },
282                 { "failover",           required_argument,      NULL, 'f' },
283                 { "help",               no_argument,            NULL, 'h' },
284                 { "index",              required_argument,      NULL, 'i' },
285                 { "fsname",             required_argument,      NULL, 'L' },
286                 { "mgsnode",            required_argument,      NULL, 'm' },
287                 { "mgsnid",             required_argument,      NULL, 'm' },
288                 { "dryrun",             no_argument,            NULL, 'n' },
289                 { "mountfsoptions",     required_argument,      NULL, 'o' },
290                 { "param",              required_argument,      NULL, 'p' },
291                 { "quiet",              no_argument,            NULL, 'q' },
292                 { "servicenode",        required_argument,      NULL, 's' },
293                 { "network",            required_argument,      NULL, 't' },
294                 { "comment",            required_argument,      NULL, 'u' },
295                 { "force-nohostid",     no_argument,            NULL, 'U' },
296                 { "verbose",            no_argument,            NULL, 'v' },
297                 { "version",            no_argument,            NULL, 'V' },
298 #ifndef TUNEFS
299                 { "backfstype",         required_argument,      NULL, 'b' },
300                 { "stripe-count-hint",  required_argument,      NULL, 'c' },
301                 { "device-size",        required_argument,      NULL, 'd' },
302                 { "mgs",                no_argument,            NULL, 'G' },
303                 { "mkfsoptions",        required_argument,      NULL, 'k' },
304                 { "mdt",                no_argument,            NULL, 'M' },
305                 { "nomgs",              no_argument,            NULL, 'N' },
306                 { "ost",                no_argument,            NULL, 'O' },
307                 { "reformat",           no_argument,            NULL, 'r' },
308                 { "replace",            no_argument,            NULL, 'R' },
309 #else
310                 { "erase-params",       no_argument,            NULL, 'e' },
311                 { "quota",              no_argument,            NULL, 'Q' },
312                 { "writeconf",          no_argument,            NULL, 'w' },
313 #endif
314                 { 0,                    0,                      NULL,  0  }
315         };
316         char *optstring = "B:f:hi:L:m:no:p:qs:t:u:vV"
317 #ifndef TUNEFS
318                           "b:c:d:Gk:MNOrR";
319 #else
320                           "eQw";
321 #endif
322         struct lustre_disk_data *ldd = &mop->mo_ldd;
323         char new_fsname[16] = { 0 };
324         int opt;
325         int rc, longidx;
326         int failnode_set = 0, servicenode_set = 0;
327         int replace = 0;
328         bool index_option = false;
329
330         while ((opt = getopt_long(argc, argv, optstring, long_opt, &longidx)) !=
331                EOF) {
332                 switch (opt) {
333                 case 'B':
334                         mop->mo_mountopts = optarg;
335                         break;
336                 case 'f':
337                 case 's': {
338                         char *nids;
339
340                         if ((opt == 'f' && servicenode_set) ||
341                             (opt == 's' && failnode_set)) {
342                                 fprintf(stderr, "%s: %s cannot use with --%s\n",
343                                         progname, long_opt[longidx].name,
344                                         opt == 'f' ? "servicenode" :
345                                         "failnode");
346                                 return 1;
347                         }
348
349                         nids = convert_hostnames(optarg);
350                         if (nids == NULL)
351                                 return 1;
352
353                         rc = append_param(ldd->ldd_params, PARAM_FAILNODE,
354                                           nids, ':');
355                         free(nids);
356                         if (rc != 0)
357                                 return rc;
358
359                         /* Must update the mgs logs */
360                         ldd->ldd_flags |= LDD_F_UPDATE;
361                         if (opt == 'f') {
362                                 failnode_set = 1;
363                         } else {
364                                 ldd->ldd_flags |= LDD_F_NO_PRIMNODE;
365                                 servicenode_set = 1;
366                         }
367                         mop->mo_flags |= MO_FAILOVER;
368                         break;
369                 }
370                 case 'h':
371                         usage(stdout);
372                         return 1;
373                 case 'i': {
374                         char *endptr = NULL;
375                         int base;
376                         index_option = true;
377                         /* LU-2374: check whether it is OST/MDT later */
378                         base = (strlen(optarg) > 1 &&
379                                 !strncmp(optarg, "0x", 2)) ? 16 : 10;
380                         /* Allowed input are base 16 and base 10 numbers only */
381                         mop->mo_ldd.ldd_svindex = strtoul(optarg,
382                                                           &endptr, base);
383                         if (*endptr != '\0') {
384                                 fprintf(stderr, "%s: wrong index %s. "
385                                         "Target index must be decimal or "
386                                         "hexadecimal.\n",
387                                         progname, optarg);
388                                 return 1;
389                         }
390                         if (ldd->ldd_svindex >= INDEX_UNASSIGNED) {
391                                 fprintf(stderr, "%s: wrong index %u. "
392                                         "Target index must be less than %u.\n",
393                                         progname, ldd->ldd_svindex,
394                                         INDEX_UNASSIGNED);
395                                 return 1;
396                         }
397
398                         ldd->ldd_flags &= ~LDD_F_NEED_INDEX;
399                         break;
400                 }
401                 case 'L': {
402                         rc = lustre_is_fsname_valid(optarg, 1,
403                                                     LUSTRE_MAXFSNAME);
404                         if (rc < 0) {
405                                 fprintf(stderr, "%s: filesystem name must be "
406                                         "1-%d chars\n", progname,
407                                         LUSTRE_MAXFSNAME);
408                                 return 1;
409                         } else if (rc > 0) {
410                                 fprintf(stderr, "%s: char '%c' not allowed in "
411                                         "filesystem name\n", progname, rc);
412                                 return 1;
413                         }
414
415                         strscpy(new_fsname, optarg, sizeof(new_fsname));
416                         break;
417                 }
418                 case 'm': {
419                         char *nids = convert_hostnames(optarg);
420
421                         if (nids == NULL)
422                                 return 1;
423
424                         rc = append_param(ldd->ldd_params, PARAM_MGSNODE,
425                                           nids, ':');
426                         free(nids);
427                         if (rc != 0)
428                                 return rc;
429
430                         mop->mo_mgs_failnodes++;
431                         break;
432                 }
433                 case 'n':
434                         print_only++;
435                         break;
436                 case 'o':
437                         *mountopts = optarg;
438                         break;
439                 case 'p':
440                         rc = add_param(ldd->ldd_params, NULL, optarg);
441                         if (rc != 0)
442                                 return rc;
443
444                         /* Must update the mgs logs */
445                         ldd->ldd_flags |= LDD_F_UPDATE;
446                         break;
447                 case 'q':
448                         verbose--;
449                         break;
450                 case 't':
451                         if (!IS_MDT(ldd) && !IS_OST(ldd)) {
452                                 badopt(long_opt[longidx].name, "MDT,OST");
453                                 return 1;
454                         }
455
456                         if (optarg == NULL)
457                                 return 1;
458
459                         rc = add_param(ldd->ldd_params, PARAM_NETWORK, optarg);
460                         if (rc != 0)
461                                 return rc;
462
463                         /* Must update the mgs logs */
464                         ldd->ldd_flags |= LDD_F_UPDATE;
465                         break;
466                 case 'u':
467                         strscpy(ldd->ldd_userdata, optarg,
468                                 sizeof(ldd->ldd_userdata));
469                         break;
470                 case 'U':
471                         mop->mo_flags |= MO_NOHOSTID_CHECK;
472                         break;
473                 case 'v':
474                         verbose++;
475                         break;
476                 case 'V':
477                         ++version;
478                         fprintf(stdout, "%s %s\n", progname,
479                                 LUSTRE_VERSION_STRING);
480                         return 0;
481 #ifndef TUNEFS
482                 case 'b': {
483                         int i = 0;
484
485                         do {
486                                 if (strcmp(optarg, mt_str(i)) == 0) {
487                                         ldd->ldd_mount_type = i;
488                                         break;
489                                 }
490                         } while (++i < LDD_MT_LAST);
491
492                         if (i == LDD_MT_LAST) {
493                                 fprintf(stderr, "%s: invalid backend filesystem"
494                                         " type %s\n", progname, optarg);
495                                 return 1;
496                         }
497                         break;
498                 }
499                 case 'c':
500                         if (IS_MDT(ldd)) {
501                                 int stripe_count = atol(optarg);
502
503                                 if (stripe_count <= 0) {
504                                         fprintf(stderr, "%s: bad stripe count "
505                                                 "%d\n", progname, stripe_count);
506                                         return 1;
507                                 }
508                                 mop->mo_stripe_count = stripe_count;
509                         } else {
510                                 badopt(long_opt[longidx].name, "MDT");
511                                 return 1;
512                         }
513                         break;
514                 case 'd':
515                         mop->mo_device_kb = atol(optarg);
516                         break;
517                 case 'G':
518                         ldd->ldd_flags |= LDD_F_SV_TYPE_MGS;
519                         break;
520                 case 'k':
521                         strscpy(mop->mo_mkfsopts, optarg,
522                                 sizeof(mop->mo_mkfsopts));
523                         break;
524                 case 'M':
525                         ldd->ldd_flags |= LDD_F_SV_TYPE_MDT;
526                         break;
527                 case 'N':
528                         ldd->ldd_flags &= ~LDD_F_SV_TYPE_MGS;
529                         break;
530                 case 'O':
531                         ldd->ldd_flags |= LDD_F_SV_TYPE_OST;
532                         break;
533                 case 'r':
534                         mop->mo_flags |= MO_FORCEFORMAT;
535                         break;
536                 case 'R':
537                         replace = 1;
538                         break;
539 #else /* !TUNEFS */
540                 case 'e':
541                         ldd->ldd_params[0] = '\0';
542                         /* Must update the mgs logs */
543                         ldd->ldd_flags |= LDD_F_UPDATE;
544                         break;
545                 case 'Q':
546                         mop->mo_flags |= MO_QUOTA;
547                         break;
548                 case 'w':
549                         ldd->ldd_flags |= LDD_F_WRITECONF;
550                         break;
551 #endif /* !TUNEFS */
552                 default:
553                         if (opt != '?') {
554                                 fatal();
555                                 fprintf(stderr, "Unknown option '%c'\n", opt);
556                         }
557                         return EINVAL;
558                 }
559         }
560
561         if (strlen(new_fsname) > 0) {
562                 if (!(mop->mo_flags & MO_FORCEFORMAT) &&
563                      (!(ldd->ldd_flags &
564                         (LDD_F_UPGRADE14 | LDD_F_VIRGIN | LDD_F_WRITECONF)))) {
565                         fprintf(stderr, "%s: cannot change the name "
566                                 "of a registered target\n", progname);
567                         return 1;
568                 }
569
570                 strscpy(ldd->ldd_fsname, new_fsname, sizeof(ldd->ldd_fsname));
571         }
572
573         if (index_option && !(mop->mo_ldd.ldd_flags &
574               (LDD_F_UPGRADE14 | LDD_F_VIRGIN |
575                LDD_F_WRITECONF))) {
576                 fprintf(stderr, "%s: cannot change the index of"
577                         " a registered target\n", progname);
578                 return 1;
579         }
580
581         /* Need to clear this flag after parsing 'L' and 'i' options. */
582         if (replace)
583                 ldd->ldd_flags &= ~LDD_F_VIRGIN;
584
585         if (optind == argc) {
586                 /* The user didn't specify device name */
587                 fatal();
588                 fprintf(stderr, "Not enough arguments - device name or "
589                         "pool/dataset name not specified.\n");
590                 return EINVAL;
591         } else {
592                 /*  The device or pool/filesystem name */
593                 strscpy(mop->mo_device, argv[optind], sizeof(mop->mo_device));
594
595                 /* Followed by optional vdevs */
596                 if (optind < argc - 1)
597                         mop->mo_pool_vdevs = (char **) &argv[optind + 1];
598         }
599
600         return 0;
601 }
602
603 int main(int argc, char *const argv[])
604 {
605         struct mkfs_opts mop;
606         struct lustre_disk_data *ldd = &mop.mo_ldd;
607         char *mountopts = NULL;
608         char wanted_mountopts[512] = "";
609         unsigned mount_type;
610         int ret = 0;
611         int ret2 = 0;
612
613         progname = strrchr(argv[0], '/');
614         if (progname != NULL)
615                 progname++;
616         else
617                 progname = argv[0];
618
619         if ((argc < 2) || (argv[argc - 1][0] == '-')) {
620                 usage(stderr);
621                 return EINVAL;
622         }
623
624         memset(&mop, 0, sizeof(mop));
625         set_defaults(&mop);
626
627         /* device is last arg */
628         strscpy(mop.mo_device, argv[argc - 1], sizeof(mop.mo_device));
629
630         ret = osd_init();
631         if (ret != 0)
632                 return ret;
633
634 #ifdef TUNEFS
635         /* For tunefs, we must read in the old values before parsing any
636            new ones. */
637
638         /* Check whether the disk has already been formatted by mkfs.lustre */
639         ret = osd_is_lustre(mop.mo_device, &mount_type);
640         if (ret == 0) {
641                 fatal();
642                 fprintf(stderr, "Device %s has not been formatted with "
643                         "mkfs.lustre\n", mop.mo_device);
644                 ret = ENODEV;
645                 goto out;
646         }
647         ldd->ldd_mount_type = mount_type;
648
649         ret = osd_read_ldd(mop.mo_device, ldd);
650         if (ret != 0) {
651                 fatal();
652                 fprintf(stderr, "Failed to read previous Lustre data from %s "
653                         "(%d)\n", mop.mo_device, ret);
654                 goto out;
655         }
656
657         ldd->ldd_flags &= ~(LDD_F_WRITECONF | LDD_F_VIRGIN);
658
659         /* svname of the form lustre:OST1234 means never registered */
660         ret = strlen(ldd->ldd_svname);
661         if (ldd->ldd_svname[ret - 8] == ':') {
662                 ldd->ldd_svname[ret - 8] = '-';
663                 ldd->ldd_flags |= LDD_F_VIRGIN;
664         } else if (ldd->ldd_svname[ret - 8] == '=') {
665                 ldd->ldd_svname[ret - 8] = '-';
666                 ldd->ldd_flags |= LDD_F_WRITECONF;
667         }
668
669         if (strstr(ldd->ldd_params, PARAM_MGSNODE))
670                 mop.mo_mgs_failnodes++;
671
672         if (verbose > 0)
673                 print_ldd("Read previous values", ldd);
674 #endif /* TUNEFS */
675
676         ret = parse_opts(argc, argv, &mop, &mountopts);
677         if (ret != 0 || version)
678                 goto out;
679
680         if (!IS_MDT(ldd) && !IS_OST(ldd) && !IS_MGS(ldd)) {
681                 fatal();
682                 fprintf(stderr, "must set target type: MDT,OST,MGS\n");
683                 ret = EINVAL;
684                 goto out;
685         }
686
687         if (((IS_MDT(ldd) || IS_MGS(ldd))) && IS_OST(ldd)) {
688                 fatal();
689                 fprintf(stderr, "OST type is exclusive with MDT,MGS\n");
690                 ret = EINVAL;
691                 goto out;
692         }
693
694         /* Stand alone MGS doesn't need an index */
695         if (!IS_MDT(ldd) && IS_MGS(ldd)) {
696 #ifndef TUNEFS
697                 /* But if --index was specified flag an error */
698                 if (!(ldd->ldd_flags & LDD_F_NEED_INDEX)) {
699                         badopt("index", "MDT,OST");
700                         goto out;
701                 }
702 #endif
703                 ldd->ldd_flags &= ~LDD_F_NEED_INDEX;
704         }
705
706         if ((ldd->ldd_flags & (LDD_F_NEED_INDEX | LDD_F_UPGRADE14)) ==
707             (LDD_F_NEED_INDEX | LDD_F_UPGRADE14)) {
708                 fatal();
709                 fprintf(stderr, "Can't find the target index, "
710                 "specify with --index\n");
711                 ret = EINVAL;
712                 goto out;
713         }
714
715         if (ldd->ldd_flags & LDD_F_NEED_INDEX)
716                 fprintf(stderr, "warning: %s: for Lustre 2.4 and later, the "
717                         "target index must be specified with --index\n",
718                         mop.mo_device);
719
720         /* If no index is supplied for MDT by default set index to zero */
721         if (IS_MDT(ldd) && (ldd->ldd_svindex == INDEX_UNASSIGNED)) {
722                 ldd->ldd_flags &= ~LDD_F_NEED_INDEX;
723                 ldd->ldd_svindex = 0;
724         }
725         if (!IS_MGS(ldd) && (mop.mo_mgs_failnodes == 0)) {
726                 fatal();
727                 if (IS_MDT(ldd))
728                         fprintf(stderr, "Must specify --mgs or --mgsnode\n");
729                 else
730                         fprintf(stderr, "Must specify --mgsnode\n");
731                 ret = EINVAL;
732                 goto out;
733         }
734         if ((IS_MDT(ldd) || IS_OST(ldd)) && ldd->ldd_fsname[0] == '\0') {
735                 fatal();
736                 fprintf(stderr, "Must specify --fsname for MDT/OST device\n");
737                 ret = EINVAL;
738                 goto out;
739         }
740
741         /* These are the permanent mount options (always included) */
742         ret = osd_prepare_lustre(&mop,
743                                  wanted_mountopts, sizeof(wanted_mountopts));
744         if (ret != 0) {
745                 fatal();
746                 fprintf(stderr, "unable to prepare backend (%d)\n", ret);
747                 goto out;
748         }
749
750         if (mountopts) {
751                 trim_mountfsoptions(mountopts);
752                 if (check_mountfsoptions(mountopts, wanted_mountopts)) {
753                         ret = EINVAL;
754                         goto out;
755                 }
756                 snprintf(ldd->ldd_mount_opts, sizeof(ldd->ldd_mount_opts),
757                          "%s", mountopts);
758         } else {
759 #ifdef TUNEFS
760                 if (ldd->ldd_mount_opts[0] == 0)
761                 /* use the defaults unless old opts exist */
762 #endif
763                 {
764                         snprintf(ldd->ldd_mount_opts,
765                                  sizeof(ldd->ldd_mount_opts),
766                                  "%s", wanted_mountopts);
767                         trim_mountfsoptions(ldd->ldd_mount_opts);
768                 }
769         }
770
771         ret = osd_fix_mountopts(&mop, ldd->ldd_mount_opts,
772                                 sizeof(ldd->ldd_mount_opts));
773         if (ret != 0) {
774                 fatal();
775                 fprintf(stderr, "unable to fix mountfsoptions (%d)\n", ret);
776                 goto out;
777         }
778
779         if (server_make_name(ldd->ldd_flags, ldd->ldd_svindex,
780                              ldd->ldd_fsname, ldd->ldd_svname)) {
781                 printf("unknown server type %#x\n", ldd->ldd_flags);
782                 goto out;
783         }
784
785         if (verbose >= 0)
786                 print_ldd("Permanent disk data", ldd);
787
788         if (print_only) {
789                 printf("exiting before disk write.\n");
790                 goto out;
791         }
792
793         if (check_mtab_entry(mop.mo_device, mop.mo_device, NULL, NULL))
794                 return(EEXIST);
795
796         /* Create the loopback file */
797         if (mop.mo_flags & MO_IS_LOOP) {
798                 ret = access(mop.mo_device, F_OK);
799                 if (ret != 0)
800                         ret = errno;
801
802 #ifndef TUNEFS
803                 /* Reformat the loopback file */
804                 if (ret != 0 || (mop.mo_flags & MO_FORCEFORMAT)) {
805                         ret = loop_format(&mop);
806                         if (ret != 0)
807                                 goto out;
808                 }
809 #endif
810                 if (ret == 0)
811                         ret = loop_setup(&mop);
812                 if (ret != 0) {
813                         fatal();
814                         fprintf(stderr, "Loop device setup for %s failed: %s\n",
815                                         mop.mo_device, strerror(ret));
816                         goto out;
817                 }
818         }
819
820 #ifndef TUNEFS
821         /* Check whether the disk has already been formatted by mkfs.lustre */
822         if (!(mop.mo_flags & MO_FORCEFORMAT)) {
823                 ret = osd_is_lustre(mop.mo_device, &mount_type);
824                 if (ret != 0) {
825                         fatal();
826                         fprintf(stderr, "Device %s was previously formatted "
827                                 "for lustre. Use --reformat to reformat it, "
828                                 "or tunefs.lustre to modify.\n",
829                                 mop.mo_device);
830                         goto out;
831                 }
832         }
833
834         /* Format the backing filesystem */
835         ret = osd_make_lustre(&mop);
836         if (ret != 0) {
837                 fatal();
838                 fprintf(stderr, "mkfs failed %d\n", ret);
839                 goto out;
840         }
841 #else /* !TUNEFS */
842         /* update svname with '=' to refresh config */
843         if (ldd->ldd_flags & LDD_F_WRITECONF) {
844                 struct mount_opts opts;
845                 opts.mo_ldd = *ldd;
846                 opts.mo_source = mop.mo_device;
847                 (void) osd_label_lustre(&opts);
848         }
849
850         /* Enable quota accounting */
851         if (mop.mo_flags & MO_QUOTA) {
852                 ret = osd_enable_quota(&mop);
853                 goto out;
854         }
855 #endif /* !TUNEFS */
856
857         /* Write our config files */
858         ret = osd_write_ldd(&mop);
859         if (ret != 0) {
860                 fatal();
861                 fprintf(stderr, "failed to write local files\n");
862                 goto out;
863         }
864
865 out:
866         osd_fini();
867         ret2 = loop_cleanup(&mop);
868         if (ret == 0)
869                 ret = ret2;
870
871         /* Fix any crazy return values from system() */
872         if (ret != 0 && ((ret & 255) == 0))
873                 return 1;
874
875         if (ret != 0)
876                 verrprint("%s: exiting with %d (%s)\n",
877                           progname, ret, strerror(ret));
878         return ret;
879 }