Whamcloud - gitweb
a366039ebe66a56a8ff32e0b53369a113d24d7f6
[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, 2017, 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 <linux/lnet/nidstr.h>
64 #include <linux/lnet/lnetctl.h>
65 #include <linux/lustre/lustre_user.h>
66 #include <linux/lustre/lustre_ver.h>
67
68 #include "mount_utils.h"
69
70 char *progname;
71 int verbose = 1;
72 int version;
73 static int print_only;
74
75 #ifdef HAVE_LDISKFS_OSD
76 #define FSLIST_LDISKFS "ldiskfs"
77 #define HAVE_FSLIST
78 #else
79  #define FSLIST_LDISKFS ""
80 #endif /* HAVE_LDISKFS_OSD */
81 #ifdef HAVE_ZFS_OSD
82  #ifdef HAVE_FSLIST
83    #define FSLIST_ZFS "|zfs"
84  #else
85   #define FSLIST_ZFS "zfs"
86   #define HAVE_FSLIST
87  #endif
88 #else
89  #define FSLIST_ZFS ""
90 #endif /* HAVE_ZFS_OSD */
91
92 #ifndef HAVE_FSLIST
93  #error "no backing OSD types (ldiskfs or ZFS) are configured"
94 #endif
95
96 #define FSLIST FSLIST_LDISKFS FSLIST_ZFS
97
98 void usage(FILE *out)
99 {
100         fprintf(out, "usage: %s <target type> [--backfstype="FSLIST"] "
101                 "--fsname=<filesystem name>\n"
102                 "\t--index=<target index> [options] <device>\n", progname);
103 #ifdef HAVE_ZFS_OSD
104         fprintf(out, "usage: %s <target type> --backfstype=zfs "
105                 "--fsname=<filesystem name> [options]\n"
106                 "\t<pool name>/<dataset name>\n"
107                 "\t[[<vdev type>] <device> [<device> ...] [vdev type>] ...]\n",
108                 progname);
109 #endif
110         fprintf(out,
111                 "\t<device>:block device or file (e.g /dev/sda or /tmp/ost1)\n"
112 #ifdef HAVE_ZFS_OSD
113                 "\t<pool name>: name of ZFS pool where target is created "
114                         "(e.g. tank)\n"
115                 "\t<dataset name>: name of new dataset, must be unique within "
116                         "pool (e.g. ost1)\n"
117                 "\t<vdev type>: type of vdev (mirror, raidz, raidz2, spare, "
118                         "cache, log)\n"
119 #endif
120                 "\n"
121                 "\ttarget types:\n"
122                 "\t\t--mgs: configuration management service\n"
123                 "\t\t--nomgs: turn off MGS service on this MDT\n"
124 #ifndef TUNEFS
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-param <key>: erase all instances of a parameter\n"
157                 "\t\t--erase-params: erase all old parameter settings\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                 "\t\t--rename: rename the filesystem name\n"
161 #endif
162                 "\t\t--comment=<user comment>: arbitrary string (%d bytes)\n"
163                 "\t\t--dryrun: report what we would do; don't write to disk\n"
164                 "\t\t--verbose: e.g. show mkfs progress\n"
165                 "\t\t--force-nohostid: Ignore hostid requirement for ZFS "
166                         "import\n"
167                 "\t\t-V|--version: output build version of the utility and\n"
168                 "\t\t\texit\n"
169                 "\t\t--quiet\n",
170                 (int)sizeof(((struct lustre_disk_data *)0)->ldd_userdata));
171 }
172
173 /* ==================== Lustre config functions =============*/
174
175 void print_ldd(char *str, struct mkfs_opts *mop)
176 {
177         struct lustre_disk_data *ldd = &mop->mo_ldd;
178
179         printf("\n   %s:\n", str);
180         printf("Target:     %s\n", ldd->ldd_svname);
181         if (ldd->ldd_svindex == INDEX_UNASSIGNED)
182                 printf("Index:      unassigned\n");
183         else
184                 printf("Index:      %d\n", ldd->ldd_svindex);
185         if (ldd->ldd_uuid[0])
186                 printf("UUID:       %s\n", (char *)ldd->ldd_uuid);
187         printf("Lustre FS:  %s\n", ldd->ldd_fsname);
188         printf("Mount type: %s\n", MT_STR(ldd));
189         printf("Flags:      %#x\n", ldd->ldd_flags);
190         printf("              (%s%s%s%s%s%s%s%s)\n",
191                IS_MDT(ldd) ? "MDT " : "",
192                IS_OST(ldd) ? "OST " : "",
193                IS_MGS(ldd) ? "MGS " : "",
194                ldd->ldd_flags & LDD_F_NEED_INDEX ? "needs_index " : "",
195                ldd->ldd_flags & LDD_F_VIRGIN     ? "first_time " : "",
196                ldd->ldd_flags & LDD_F_UPDATE     ? "update " : "",
197                ldd->ldd_flags & LDD_F_WRITECONF  ? "writeconf " : "",
198                ldd->ldd_flags & LDD_F_NO_PRIMNODE ? "no_primnode " : "");
199         printf("Persistent mount opts: %s\n", ldd->ldd_mount_opts);
200         osd_print_ldd_params(mop);
201         if (ldd->ldd_userdata[0])
202                 printf("Comment: %s\n", ldd->ldd_userdata);
203         printf("\n");
204 }
205
206 void set_defaults(struct mkfs_opts *mop)
207 {
208         mop->mo_ldd.ldd_magic = LDD_MAGIC;
209         mop->mo_ldd.ldd_config_ver = 1;
210         mop->mo_ldd.ldd_flags = LDD_F_NEED_INDEX | LDD_F_UPDATE | LDD_F_VIRGIN;
211 #ifdef HAVE_LDISKFS_OSD
212         mop->mo_ldd.ldd_mount_type = LDD_MT_LDISKFS;
213 #else
214         mop->mo_ldd.ldd_mount_type = LDD_MT_ZFS;
215 #endif
216         mop->mo_ldd.ldd_svindex = INDEX_UNASSIGNED;
217         mop->mo_mgs_failnodes = 0;
218         mop->mo_stripe_count = 1;
219         mop->mo_pool_vdevs = NULL;
220 }
221
222 /* Make the mdt/ost server obd name based on the filesystem name */
223 static bool server_make_name(__u32 flags, __u16 index, const char *fs,
224                              char *name_buf, size_t name_buf_size)
225 {
226         bool invalid_flag = false;
227
228         if (flags & (LDD_F_SV_TYPE_MDT | LDD_F_SV_TYPE_OST)) {
229                 if (!(flags & LDD_F_SV_ALL))
230                         snprintf(name_buf, name_buf_size, "%.8s%c%s%04x", fs,
231                                  (flags & LDD_F_VIRGIN) ? ':' :
232                                  ((flags & LDD_F_WRITECONF) ? '=' : '-'),
233                                  (flags & LDD_F_SV_TYPE_MDT) ? "MDT" : "OST",
234                                   index);
235         } else if (flags & LDD_F_SV_TYPE_MGS) {
236                 snprintf(name_buf, name_buf_size, "MGS");
237         } else {
238                 fprintf(stderr, "unknown server type %#x\n", flags);
239                 invalid_flag = true;
240         }
241         return invalid_flag;
242 }
243
244 static inline void badopt(const char *opt, char *type)
245 {
246         fprintf(stderr, "%s: '--%s' only valid for %s\n",
247                 progname, opt, type);
248         usage(stderr);
249 }
250
251 #ifdef TUNEFS
252 /**
253  * Removes all existing instances of the parameter passed in \a param,
254  * which are in the form of "key=<value>", from the buffer at \a buf.
255  *
256  * The parameter can be either in the form of "key" when passed by option
257  * "--erase-param", or in the form of "key=<value>" when passed by option
258  * "--param".
259  *
260  * \param buf     the buffer holding on-disk server parameters.
261  * \param param   the parameter whose instances are to be removed from \a buf.
262  * \param withval true means the parameter is in the form of "key=<value>"
263  *                false means the parameter is in the form of "key"
264  *
265  * \retval 0      success, parameter was erased,
266  * \retval 1      success, parameter was not found, don't need to do erase_ldd,
267  * \retval EINVAL failure, invalid input parameter.
268  */
269 static int erase_param(const char *const buf, const char *const param,
270                        bool withval)
271 {
272         char    search[PARAM_MAX + 1] = "";
273         char    *buffer = (char *)buf;
274         bool    found = false;
275
276         if (strlen(param) > PARAM_MAX) {
277                 fprintf(stderr, "%s: param to erase is too long-\n%s\n",
278                         progname, param);
279                 return EINVAL;
280         }
281
282         /* add_param() writes a space as the first character in ldd_params */
283         search[0] = ' ';
284
285         /* "key" or "key=<value>" */
286         if (withval) {
287                 char *keyend;
288
289                 keyend = strchr(param, '=');
290                 if (!keyend)
291                         return EINVAL;
292                 strncpy(&search[1], param, keyend - param + 1);
293         } else {
294                 snprintf(search + 1, sizeof(search) - 1, "%s=", param);
295         }
296
297         while (1) {
298                 char    *space;
299
300                 buffer = strstr(buffer, search);
301                 if (!buffer)
302                         return found == true ? 0 : 1;
303                 found = true;
304                 space = strchr(buffer + 1, ' ');
305                 if (space) {
306                         memmove(buffer, space, strlen(space) + 1);
307                 } else {
308                         *buffer = '\0';
309                         return 0;
310                 }
311         }
312 }
313 #endif
314
315 /* from mount_lustre */
316 /* Get rid of symbolic hostnames for tcp, since kernel can't do lookups */
317 #define MAXNIDSTR 1024
318 static char *convert_hostnames(char *s1)
319 {
320         char *converted, *s2 = 0, *c, *end, sep;
321         int left = MAXNIDSTR;
322         lnet_nid_t nid;
323
324         converted = malloc(left);
325         if (!converted)
326                 return NULL;
327
328         end = s1 + strlen(s1);
329         c = converted;
330         while ((left > 0) && (s1 < end)) {
331                 s2 = strpbrk(s1, ",:");
332                 if (!s2)
333                         s2 = end;
334                 sep = *s2;
335                 *s2 = '\0';
336                 nid = libcfs_str2nid(s1);
337                 *s2 = sep;
338
339                 if (nid == LNET_NID_ANY) {
340                         fprintf(stderr, "%s: Cannot resolve hostname '%s'.\n",
341                                 progname, s1);
342                         free(converted);
343                         return NULL;
344                 }
345                 if (strncmp(libcfs_nid2str(nid), "127.0.0.1",
346                             strlen("127.0.0.1")) == 0) {
347                         fprintf(stderr,
348                                 "%s: The NID '%s' resolves to the loopback address '%s'.  Lustre requires a non-loopback address.\n",
349                                 progname, s1, libcfs_nid2str(nid));
350                         free(converted);
351                         return NULL;
352                 }
353
354                 c += snprintf(c, left, "%s%c", libcfs_nid2str(nid), sep);
355                 left = converted + MAXNIDSTR - c;
356                 s1 = s2 + 1;
357         }
358         return converted;
359 }
360
361 int parse_opts(int argc, char *const argv[], struct mkfs_opts *mop,
362                char **mountopts, char *old_fsname)
363 {
364         static struct option long_opts[] = {
365         { .val = 'B',   .name =  "backfs-mount-opts",
366                                                 .has_arg = required_argument},
367         { .val = 'f',   .name =  "failnode",    .has_arg = required_argument},
368         { .val = 'f',   .name =  "failover",    .has_arg = required_argument},
369         { .val = 'G',   .name =  "mgs",         .has_arg = no_argument},
370         { .val = 'h',   .name =  "help",        .has_arg = no_argument},
371         { .val = 'i',   .name =  "index",       .has_arg = required_argument},
372         { .val = 'L',   .name =  "fsname",      .has_arg = required_argument},
373         { .val = 'm',   .name =  "mgsnode",     .has_arg = required_argument},
374         { .val = 'm',   .name =  "mgsnid",      .has_arg = required_argument},
375         { .val = 'n',   .name =  "dryrun",      .has_arg = no_argument},
376         { .val = 'N',   .name =  "nomgs",       .has_arg = no_argument},
377         { .val = 'o',   .name =  "mountfsoptions",
378                                                 .has_arg = required_argument},
379         { .val = 'p',   .name =  "param",       .has_arg = required_argument},
380         { .val = 'q',   .name =  "quiet",       .has_arg = no_argument},
381         { .val = 's',   .name =  "servicenode", .has_arg = required_argument},
382         { .val = 't',   .name =  "network",     .has_arg = required_argument},
383         { .val = 'u',   .name =  "comment",     .has_arg = required_argument},
384         { .val = 'U',   .name =  "force-nohostid",
385                                                 .has_arg = no_argument},
386         { .val = 'v',   .name =  "verbose",     .has_arg = no_argument},
387         { .val = 'V',   .name =  "version",     .has_arg = no_argument},
388 #ifndef TUNEFS
389         { .val = 'b',   .name =  "backfstype",  .has_arg = required_argument},
390         { .val = 'c',   .name =  "stripe-count-hint",
391                                                 .has_arg = required_argument},
392         { .val = 'd',   .name =  "device-size", .has_arg = required_argument},
393         { .val = 'k',   .name =  "mkfsoptions", .has_arg = required_argument},
394         { .val = 'M',   .name =  "mdt",         .has_arg = no_argument},
395         { .val = 'O',   .name =  "ost",         .has_arg = no_argument},
396         { .val = 'r',   .name =  "reformat",    .has_arg = no_argument},
397         { .val = 'R',   .name =  "replace",     .has_arg = no_argument},
398 #else
399         { .val = 'E',   .name =  "erase-param", .has_arg = required_argument},
400         { .val = 'e',   .name =  "erase-params",
401                                                 .has_arg = no_argument},
402         { .val = 'Q',   .name =  "quota",       .has_arg = no_argument},
403         { .val = 'R',   .name =  "rename",      .has_arg = optional_argument},
404         { .val = 'w',   .name =  "writeconf",   .has_arg = no_argument},
405 #endif
406         { .name = NULL } };
407         char *short_opts = "B:f:Ghi:L:m:nNo:p:qs:t:u:vV"
408 #ifndef TUNEFS
409                           "b:c:d:k:MOrR";
410 #else
411                           "E:eQR::w";
412 #endif
413         struct lustre_disk_data *ldd = &mop->mo_ldd;
414         char new_fsname[16] = { 0 };
415         int opt;
416         int rc, longidx;
417         int failnode_set = 0, servicenode_set = 0;
418         int replace = 0;
419         bool index_option = false;
420
421 #ifdef TUNEFS
422         /*
423          * For the right semantics, if '-e'/'--erase-params' is specified,
424          * it must be picked out and all old parameters should be erased
425          * before any other changes are done.
426          */
427         while ((opt = getopt_long(argc, argv, short_opts, long_opts,
428                                   &longidx)) != EOF) {
429                 switch (opt) {
430                 case 'e':
431                         ldd->ldd_params[0] = '\0';
432                         mop->mo_flags |= MO_ERASE_ALL;
433                         ldd->ldd_flags |= LDD_F_UPDATE;
434                         break;
435                 default:
436                         break;
437                 }
438                 if (mop->mo_flags & MO_ERASE_ALL)
439                         break;
440         }
441         optind = 0;
442 #endif
443         while ((opt = getopt_long(argc, argv, short_opts, long_opts,
444                                   &longidx)) != EOF) {
445                 switch (opt) {
446                 case 'B':
447                         mop->mo_mountopts = optarg;
448                         break;
449                 case 'f':
450                 case 's': {
451                         char *nids;
452
453                         if ((opt == 'f' && servicenode_set) ||
454                             (opt == 's' && failnode_set)) {
455                                 fprintf(stderr, "%s: %s cannot use with --%s\n",
456                                         progname, long_opts[longidx].name,
457                                         opt == 'f' ? "servicenode" :
458                                         "failnode");
459                                 return 1;
460                         }
461
462                         nids = convert_hostnames(optarg);
463                         if (!nids)
464                                 return 1;
465
466                         rc = append_param(ldd->ldd_params, PARAM_FAILNODE,
467                                           nids, ':');
468                         free(nids);
469                         if (rc != 0)
470                                 return rc;
471
472                         /* Must update the mgs logs */
473                         ldd->ldd_flags |= LDD_F_UPDATE;
474                         if (opt == 'f') {
475                                 ldd->ldd_flags &= ~LDD_F_NO_PRIMNODE;
476                                 failnode_set = 1;
477                         } else {
478                                 ldd->ldd_flags |= LDD_F_NO_PRIMNODE;
479                                 servicenode_set = 1;
480                         }
481                         mop->mo_flags |= MO_FAILOVER;
482                         break;
483                 }
484                 case 'G':
485                         ldd->ldd_flags |= LDD_F_SV_TYPE_MGS;
486                         break;
487                 case 'h':
488                         usage(stdout);
489                         return 1;
490                 case 'i': {
491                         char *endptr = NULL;
492                         int base;
493
494                         index_option = true;
495                         /* LU-2374: check whether it is OST/MDT later */
496                         base = (strlen(optarg) > 1 &&
497                                 !strncmp(optarg, "0x", 2)) ? 16 : 10;
498                         /* Allowed input are base 16 and base 10 numbers only */
499                         mop->mo_ldd.ldd_svindex = strtoul(optarg,
500                                                           &endptr, base);
501                         if (*endptr != '\0') {
502                                 fprintf(stderr,
503                                         "%s: wrong index %s. Target index must be decimal or hexadecimal.\n",
504                                         progname, optarg);
505                                 return 1;
506                         }
507                         if (ldd->ldd_svindex >= INDEX_UNASSIGNED) {
508                                 fprintf(stderr,
509                                         "%s: wrong index %u. Target index must be less than %u.\n",
510                                         progname, ldd->ldd_svindex,
511                                         INDEX_UNASSIGNED);
512                                 return 1;
513                         }
514
515                         ldd->ldd_flags &= ~LDD_F_NEED_INDEX;
516                         break;
517                 }
518                 case 'L': {
519                         const char *tmp;
520                         size_t len;
521
522                         len = strlen(optarg);
523                         if (len < 1 || len > LUSTRE_MAXFSNAME) {
524                                 fprintf(stderr,
525                                         "%s: filesystem name must be 1-%d chars\n",
526                                         progname, LUSTRE_MAXFSNAME);
527                                 return 1;
528                         }
529
530                         for (tmp = optarg; *tmp != '\0'; ++tmp) {
531                                 if (isalnum(*tmp) || *tmp == '_' || *tmp == '-')
532                                         continue;
533                                 else
534                                         break;
535                         }
536                         if (*tmp != '\0') {
537                                 fprintf(stderr,
538                                         "%s: char '%c' not allowed in filesystem name\n",
539                                         progname, *tmp);
540                                 return 1;
541                         }
542                         strscpy(new_fsname, optarg, sizeof(new_fsname));
543                         break;
544                 }
545                 case 'm': {
546                         char *nids = convert_hostnames(optarg);
547
548                         if (!nids)
549                                 return 1;
550
551                         rc = append_param(ldd->ldd_params, PARAM_MGSNODE,
552                                           nids, ':');
553                         free(nids);
554                         if (rc != 0)
555                                 return rc;
556
557                         mop->mo_mgs_failnodes++;
558                         break;
559                 }
560                 case 'n':
561                         print_only++;
562                         break;
563                 case 'N':
564                         ldd->ldd_flags &= ~LDD_F_SV_TYPE_MGS;
565                         break;
566                 case 'o':
567                         *mountopts = optarg;
568                         break;
569                 case 'p':
570 #ifdef TUNEFS
571                         /*
572                          * Removes all existing instances of the parameter
573                          * before adding new values.
574                          */
575                         rc = erase_param(ldd->ldd_params, optarg, true);
576                         if (rc > 1)
577                                 return rc;
578 #endif
579                         rc = add_param(ldd->ldd_params, NULL, optarg);
580                         if (rc != 0)
581                                 return rc;
582                         /* Must update the mgs logs */
583                         ldd->ldd_flags |= LDD_F_UPDATE;
584                         break;
585                 case 'q':
586                         verbose--;
587                         break;
588                 case 't':
589                         if (!IS_MDT(ldd) && !IS_OST(ldd)) {
590                                 badopt(long_opts[longidx].name, "MDT,OST");
591                                 return 1;
592                         }
593
594                         if (!optarg)
595                                 return 1;
596
597                         rc = add_param(ldd->ldd_params, PARAM_NETWORK, optarg);
598                         if (rc != 0)
599                                 return rc;
600
601                         /* Must update the mgs logs */
602                         ldd->ldd_flags |= LDD_F_UPDATE;
603                         break;
604                 case 'u':
605                         strscpy(ldd->ldd_userdata, optarg,
606                                 sizeof(ldd->ldd_userdata));
607                         break;
608                 case 'U':
609                         mop->mo_flags |= MO_NOHOSTID_CHECK;
610                         break;
611                 case 'v':
612                         verbose++;
613                         break;
614                 case 'V':
615                         ++version;
616                         fprintf(stdout, "%s %s\n", progname,
617                                 LUSTRE_VERSION_STRING);
618                         return 0;
619 #ifndef TUNEFS
620                 case 'b': {
621                         int i = 0;
622
623                         do {
624                                 if (strcmp(optarg, mt_str(i)) == 0) {
625                                         ldd->ldd_mount_type = i;
626                                         break;
627                                 }
628                         } while (++i < LDD_MT_LAST);
629
630                         if (i == LDD_MT_LAST) {
631                                 fprintf(stderr,
632                                         "%s: invalid backend filesystem type %s\n",
633                                         progname, optarg);
634                                 return 1;
635                         }
636                         break;
637                 }
638                 case 'c':
639                         if (IS_MDT(ldd)) {
640                                 int stripe_count = atol(optarg);
641
642                                 if (stripe_count <= 0) {
643                                         fprintf(stderr,
644                                                 "%s: bad stripe count %s\n",
645                                                 progname, optarg);
646                                         return 1;
647                                 }
648                                 mop->mo_stripe_count = stripe_count;
649                         } else {
650                                 badopt(long_opts[longidx].name, "MDT");
651                                 return 1;
652                         }
653                         break;
654                 case 'd':
655                         mop->mo_device_kb = atol(optarg);
656                         break;
657                 case 'k':
658                         strscpy(mop->mo_mkfsopts, optarg,
659                                 sizeof(mop->mo_mkfsopts));
660                         break;
661                 case 'M':
662                         ldd->ldd_flags |= LDD_F_SV_TYPE_MDT;
663                         break;
664                 case 'O':
665                         ldd->ldd_flags |= LDD_F_SV_TYPE_OST;
666                         break;
667                 case 'r':
668                         mop->mo_flags |= MO_FORCEFORMAT;
669                         break;
670                 case 'R':
671                         replace = 1;
672                         break;
673 #else /* TUNEFS */
674                 case 'E':
675                         rc = erase_param(ldd->ldd_params, optarg, false);
676                         /*
677                          * (rc == 1) means not found, so don't need to
678                          * call osd_erase_ldd().
679                          */
680                         if (rc > 1)
681                                 return rc;
682                         if (!rc) {
683                                 rc = osd_erase_ldd(mop, optarg);
684                                 if (rc)
685                                         return rc;
686                         }
687                         /* Must update the mgs logs */
688                         ldd->ldd_flags |= LDD_F_UPDATE;
689                         break;
690                 case 'e':
691                         /* Already done in the beginning */
692                         break;
693                 case 'Q':
694                         mop->mo_flags |= MO_QUOTA;
695                         break;
696                 case 'R': {
697                         char *tmp;
698
699                         mop->mo_flags |= MO_RENAME;
700                         if (!optarg) {
701                                 if (IS_SEPARATED_MGS(ldd)) {
702                                         fprintf(stderr,
703                                                 "%s: must specify the old fsname to be renamed for separated MGS\n",
704                                                 progname);
705                                         return 1;
706                                 }
707                                 break;
708                         }
709
710                         if ((strlen(optarg) < 1) || (strlen(optarg) > 8)) {
711                                 fprintf(stderr,
712                                         "%s: filesystem name must be 1-8 chars\n",
713                                         progname);
714                                 return 1;
715                         }
716
717                         tmp = strpbrk(optarg, "/:");
718                         if (tmp) {
719                                 fprintf(stderr,
720                                         "%s: char '%c' not allowed in filesystem name\n",
721                                         progname, *tmp);
722                                 return 1;
723                         }
724
725                         if (IS_SEPARATED_MGS(ldd)) {
726                                 strscpy(old_fsname, optarg,
727                                         sizeof(ldd->ldd_fsname));
728                         } else if (strlen(old_fsname) != strlen(optarg) ||
729                                    strcmp(old_fsname, optarg) != 0) {
730                                 fprintf(stderr,
731                                         "%s: the given fsname '%s' to be renamed does not exist\n",
732                                         progname, optarg);
733                                 return 1;
734                         }
735                         break;
736                 }
737                 case 'w':
738                         ldd->ldd_flags |= LDD_F_WRITECONF;
739                         break;
740 #endif /* !TUNEFS */
741                 default:
742                         if (opt != '?') {
743                                 fatal();
744                                 fprintf(stderr, "Unknown option '%c'\n", opt);
745                         }
746                         return EINVAL;
747                 }
748         }
749
750         if (strlen(new_fsname) > 0) {
751                 if (!(mop->mo_flags & (MO_FORCEFORMAT | MO_RENAME)) &&
752                     (!(ldd->ldd_flags & (LDD_F_VIRGIN | LDD_F_WRITECONF)))) {
753                         fprintf(stderr,
754                                 "%s: cannot change the name of a registered target\n",
755                                 progname);
756                         return 1;
757                 }
758
759                 strscpy(ldd->ldd_fsname, new_fsname, sizeof(ldd->ldd_fsname));
760         }
761
762         if (index_option && !(mop->mo_ldd.ldd_flags &
763                               (LDD_F_VIRGIN | LDD_F_WRITECONF))) {
764                 fprintf(stderr,
765                         "%s: cannot change the index of a registered target\n",
766                         progname);
767                 return 1;
768         }
769
770 #ifdef TUNEFS
771         if (mop->mo_flags & MO_RENAME) {
772                 if (new_fsname[0] == '\0') {
773                         fprintf(stderr,
774                                 "%s: need to specify new fsname for renaming case\n",
775                                 progname);
776                         return 1;
777                 }
778
779                 if (strcmp(old_fsname, new_fsname) == 0) {
780                         fprintf(stderr,
781                                 "%s: cannot rename fsname '%s' to the same name\n",
782                                 progname, old_fsname);
783                         return 1;
784                 }
785         }
786 #endif
787
788         /* Need to clear this flag after parsing 'L' and 'i' options. */
789         if (replace)
790                 ldd->ldd_flags &= ~LDD_F_VIRGIN;
791
792         if (optind == argc) {
793                 /* The user didn't specify device name */
794                 fatal();
795                 fprintf(stderr,
796                         "Not enough arguments - device name or pool/dataset name not specified.\n");
797                 return EINVAL;
798         }
799
800         /*  The device or pool/filesystem name */
801         strscpy(mop->mo_device, argv[optind], sizeof(mop->mo_device));
802
803         /* Followed by optional vdevs */
804         if (optind < argc - 1)
805                 mop->mo_pool_vdevs = (char **)&argv[optind + 1];
806
807         return 0;
808 }
809
810 int main(int argc, char *const argv[])
811 {
812         struct mkfs_opts mop;
813         struct lustre_disk_data *ldd = &mop.mo_ldd;
814         char *mountopts = NULL;
815         char wanted_mountopts[512] = "";
816         char old_fsname[16] = "";
817         unsigned int mount_type;
818         int ret = 0;
819         int ret2 = 0;
820
821         progname = strrchr(argv[0], '/');
822         if (progname)
823                 progname++;
824         else
825                 progname = argv[0];
826
827         if ((argc < 2) || (argv[argc - 1][0] == '-')) {
828                 usage(stderr);
829                 return EINVAL;
830         }
831
832         memset(&mop, 0, sizeof(mop));
833         set_defaults(&mop);
834
835         /* device is last arg */
836         strscpy(mop.mo_device, argv[argc - 1], sizeof(mop.mo_device));
837
838         ret = osd_init();
839         if (ret != 0) {
840                 fprintf(stderr, "%s: osd_init() failed: %d (%s)\n",
841                         progname, ret, strerror(ret));
842                 return ret;
843         }
844
845 #ifdef TUNEFS
846         /*
847          * For tunefs, we must read in the old values before parsing any
848          * new ones.
849          */
850
851         /* Check whether the disk has already been formatted by mkfs.lustre */
852         ret = osd_is_lustre(mop.mo_device, &mount_type);
853         if (ret == 0) {
854                 fatal();
855                 fprintf(stderr,
856                         "Device %s has not been formatted with mkfs.lustre\n",
857                         mop.mo_device);
858                 ret = ENODEV;
859                 goto out;
860         }
861         ldd->ldd_mount_type = mount_type;
862
863         ret = osd_read_ldd(mop.mo_device, ldd);
864         if (ret != 0) {
865                 fatal();
866                 fprintf(stderr,
867                         "Failed to read previous Lustre data from %s (%d)\n",
868                         mop.mo_device, ret);
869                 goto out;
870         }
871
872         strscpy(old_fsname, ldd->ldd_fsname, sizeof(ldd->ldd_fsname));
873         ldd->ldd_flags &= ~(LDD_F_WRITECONF | LDD_F_VIRGIN);
874
875         /* svname of the form lustre:OST1234 means never registered */
876         ret = strlen(ldd->ldd_svname);
877         if (ldd->ldd_svname[ret - 8] == ':') {
878                 ldd->ldd_svname[ret - 8] = '-';
879                 ldd->ldd_flags |= LDD_F_VIRGIN;
880         } else if (ldd->ldd_svname[ret - 8] == '=') {
881                 ldd->ldd_svname[ret - 8] = '-';
882                 ldd->ldd_flags |= LDD_F_WRITECONF;
883         }
884
885         if (strstr(ldd->ldd_params, PARAM_MGSNODE))
886                 mop.mo_mgs_failnodes++;
887
888         if (verbose > 0)
889                 print_ldd("Read previous values", &mop);
890 #endif /* TUNEFS */
891
892         ret = parse_opts(argc, argv, &mop, &mountopts, old_fsname);
893         if (ret != 0 || version)
894                 goto out;
895
896         if (!IS_MDT(ldd) && !IS_OST(ldd) && !IS_MGS(ldd)) {
897                 fatal();
898                 fprintf(stderr, "must set target type: MDT,OST,MGS\n");
899                 ret = EINVAL;
900                 goto out;
901         }
902
903         if (((IS_MDT(ldd) || IS_MGS(ldd))) && IS_OST(ldd)) {
904                 fatal();
905                 fprintf(stderr, "OST type is exclusive with MDT,MGS\n");
906                 ret = EINVAL;
907                 goto out;
908         }
909
910         /* Stand alone MGS doesn't need an index */
911         if (!IS_MDT(ldd) && IS_MGS(ldd)) {
912 #ifndef TUNEFS
913                 /* But if --index was specified flag an error */
914                 if (!(ldd->ldd_flags & LDD_F_NEED_INDEX)) {
915                         badopt("index", "MDT,OST");
916                         goto out;
917                 }
918 #endif
919                 ldd->ldd_flags &= ~LDD_F_NEED_INDEX;
920         }
921
922         if (ldd->ldd_flags & LDD_F_NEED_INDEX)
923                 fprintf(stderr,
924                         "warning: %s: for Lustre 2.4 and later, the target index must be specified with --index\n",
925                         mop.mo_device);
926
927         /* If no index is supplied for MDT by default set index to zero */
928         if (IS_MDT(ldd) && (ldd->ldd_svindex == INDEX_UNASSIGNED)) {
929                 ldd->ldd_flags &= ~LDD_F_NEED_INDEX;
930                 ldd->ldd_svindex = 0;
931         }
932 #ifndef TUNEFS
933         if (!IS_MGS(ldd) && (mop.mo_mgs_failnodes == 0)) {
934 #else
935         /*
936          * Don't check --mgs or --mgsnode if print_only is set or
937          * --erase-params is set.
938          */
939         if (!IS_MGS(ldd) && (mop.mo_mgs_failnodes == 0) && !print_only &&
940             !(mop.mo_flags & MO_ERASE_ALL)) {
941 #endif
942                 fatal();
943                 if (IS_MDT(ldd))
944                         fprintf(stderr, "Must specify --mgs or --mgsnode\n");
945                 else
946                         fprintf(stderr, "Must specify --mgsnode\n");
947                 ret = EINVAL;
948                 goto out;
949         }
950         if ((IS_MDT(ldd) || IS_OST(ldd)) && ldd->ldd_fsname[0] == '\0') {
951                 fatal();
952                 fprintf(stderr, "Must specify --fsname for MDT/OST device\n");
953                 ret = EINVAL;
954                 goto out;
955         }
956
957         /* These are the permanent mount options (always included) */
958         ret = osd_prepare_lustre(&mop,
959                                  wanted_mountopts, sizeof(wanted_mountopts));
960         if (ret != 0) {
961                 fatal();
962                 fprintf(stderr, "unable to prepare backend (%d)\n", ret);
963                 goto out;
964         }
965
966         if (mountopts) {
967                 trim_mountfsoptions(mountopts);
968                 if (check_mountfsoptions(mountopts, wanted_mountopts)) {
969                         ret = EINVAL;
970                         goto out;
971                 }
972                 snprintf(ldd->ldd_mount_opts, sizeof(ldd->ldd_mount_opts),
973                          "%s", mountopts);
974         } else {
975 #ifdef TUNEFS
976                 if (ldd->ldd_mount_opts[0] == 0)
977                 /* use the defaults unless old opts exist */
978 #endif
979                 {
980                         snprintf(ldd->ldd_mount_opts,
981                                  sizeof(ldd->ldd_mount_opts),
982                                  "%s", wanted_mountopts);
983                         trim_mountfsoptions(ldd->ldd_mount_opts);
984                 }
985         }
986
987         ret = osd_fix_mountopts(&mop, ldd->ldd_mount_opts,
988                                 sizeof(ldd->ldd_mount_opts));
989         if (ret != 0) {
990                 fatal();
991                 fprintf(stderr, "unable to fix mountfsoptions (%d)\n", ret);
992                 goto out;
993         }
994
995         if (server_make_name(ldd->ldd_flags, ldd->ldd_svindex,
996                              ldd->ldd_fsname, ldd->ldd_svname,
997                              sizeof(ldd->ldd_svname))) {
998                 printf("unknown server type %#x\n", ldd->ldd_flags);
999                 goto out;
1000         }
1001
1002         if (verbose >= 0)
1003                 print_ldd("Permanent disk data", &mop);
1004
1005         if (print_only) {
1006                 printf("exiting before disk write.\n");
1007                 goto out;
1008         }
1009
1010         if (check_mtab_entry(mop.mo_device, mop.mo_device, NULL, NULL))
1011                 return EEXIST;
1012
1013         /* Create the loopback file */
1014         if (mop.mo_flags & MO_IS_LOOP) {
1015                 ret = access(mop.mo_device, F_OK);
1016                 if (ret != 0)
1017                         ret = errno;
1018
1019 #ifndef TUNEFS
1020                 /* Reformat the loopback file */
1021                 if (ret != 0 || (mop.mo_flags & MO_FORCEFORMAT)) {
1022                         ret = loop_format(&mop);
1023                         if (ret != 0)
1024                                 goto out;
1025                 }
1026 #endif
1027                 if (ret == 0)
1028                         ret = loop_setup(&mop);
1029                 if (ret != 0) {
1030                         fatal();
1031                         fprintf(stderr, "Loop device setup for %s failed: %s\n",
1032                                 mop.mo_device, strerror(ret));
1033                         goto out;
1034                 }
1035         }
1036
1037 #ifndef TUNEFS
1038         /* Check whether the disk has already been formatted by mkfs.lustre */
1039         if (!(mop.mo_flags & MO_FORCEFORMAT)) {
1040                 ret = osd_is_lustre(mop.mo_device, &mount_type);
1041                 if (ret != 0) {
1042                         fatal();
1043                         fprintf(stderr,
1044                                 "Device %s was previously formatted for lustre. Use --reformat to reformat it, or tunefs.lustre to modify.\n",
1045                                 mop.mo_device);
1046                         goto out;
1047                 }
1048         }
1049
1050         /* Format the backing filesystem */
1051         ret = osd_make_lustre(&mop);
1052         if (ret != 0) {
1053                 fatal();
1054                 fprintf(stderr, "mkfs failed %d\n", ret);
1055                 goto out;
1056         }
1057 #else /* TUNEFS */
1058         /* update svname with '=' to refresh config */
1059         if (ldd->ldd_flags & LDD_F_WRITECONF) {
1060                 struct mount_opts opts;
1061
1062                 opts.mo_ldd = *ldd;
1063                 opts.mo_source = mop.mo_device;
1064                 (void)osd_label_lustre(&opts);
1065         }
1066
1067         /* Rename filesystem fsname */
1068         if (mop.mo_flags & MO_RENAME) {
1069                 ret = osd_rename_fsname(&mop, old_fsname);
1070                 if (ret)
1071                         goto out;
1072         }
1073
1074         /* Enable quota accounting */
1075         if (mop.mo_flags & MO_QUOTA) {
1076                 ret = osd_enable_quota(&mop);
1077                 goto out;
1078         }
1079 #endif /* !TUNEFS */
1080
1081         /* Write our config files */
1082         ret = osd_write_ldd(&mop);
1083         if (ret != 0) {
1084                 fatal();
1085                 fprintf(stderr, "failed to write local files\n");
1086                 goto out;
1087         }
1088 out:
1089         osd_fini();
1090         ret2 = loop_cleanup(&mop);
1091         if (ret == 0)
1092                 ret = ret2;
1093
1094         /* Fix any crazy return values from system() */
1095         if (ret != 0 && ((ret & 255) == 0))
1096                 return 1;
1097
1098         if (ret != 0)
1099                 verrprint("%s: exiting with %d (%s)\n",
1100                           progname, ret, strerror(ret));
1101         return ret;
1102 }