Whamcloud - gitweb
LU-17000 coverity: Fix Resource Leak(0)
[fs/lustre-release.git] / lustre / utils / libmount_utils_ldiskfs.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) 2012, 2017, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  *
31  * lustre/utils/mount_utils_ldiskfs.c
32  *
33  * Author: Nathan Rutman <nathan@clusterfs.com>
34 */
35
36 /* This source file is compiled into both mkfs.lustre and tunefs.lustre */
37
38 #if HAVE_CONFIG_H
39 #  include "config.h"
40 #endif /* HAVE_CONFIG_H */
41
42 #ifndef _GNU_SOURCE
43 #define _GNU_SOURCE
44 #endif
45 #include <stdarg.h>
46 #include <stdio.h>
47 #include <stdlib.h>
48 #include <string.h>
49 #include <inttypes.h>
50 #include <unistd.h>
51 #include <dirent.h>
52 #include <fcntl.h>
53 #include <mntent.h>
54
55 #include <sys/types.h>
56 #include <sys/stat.h>
57 #include <sys/mount.h>
58 #include <sys/utsname.h>
59 #include <sys/sysmacros.h>
60
61 #include <string.h>
62 #include <getopt.h>
63 #include <limits.h>
64 #include <ctype.h>
65
66 #include <ext2fs/ext2fs.h>
67
68 #ifndef BLKGETSIZE64
69 #include <linux/fs.h> /* for BLKGETSIZE64 */
70 #endif
71 #include <linux/major.h>
72 #include <linux/types.h>
73 #include <linux/version.h>
74 #include <linux/lnet/lnetctl.h>
75 #include <linux/lustre/lustre_ver.h>
76 #include <libcfs/util/string.h>
77
78 #include "mount_utils.h"
79
80 #define MAX_HW_SECTORS_KB_PATH  "queue/max_hw_sectors_kb"
81 #define MAX_SECTORS_KB_PATH     "queue/max_sectors_kb"
82 #define SCHEDULER_PATH          "queue/scheduler"
83 #define STRIPE_CACHE_SIZE       "md/stripe_cache_size"
84
85 #define DEFAULT_SCHEDULER       "deadline"
86
87 extern char *progname;
88
89 static ext2_filsys backfs;
90 static int open_flags = EXT2_FLAG_64BITS | EXT2_FLAG_SKIP_MMP |
91                         EXT2_FLAG_IGNORE_SB_ERRORS | EXT2_FLAG_SUPER_ONLY;
92
93 /* keep it less than LL_FID_NAMELEN */
94 #define DUMMY_FILE_NAME_LEN             25
95 #define EXT3_DIRENT_SIZE                DUMMY_FILE_NAME_LEN
96
97 static void append_unique(char *buf, char *prefix, char *key, char *val,
98                           size_t maxbuflen);
99 static bool is_e2fsprogs_feature_supp(const char *feature);
100 static void disp_old_e2fsprogs_msg(const char *feature, int make_backfs);
101
102 /* Determine if a device is a block device (as opposed to a file) */
103 static int is_block(char *devname)
104 {
105         struct stat st;
106         int     ret = 0;
107         char    *devpath;
108
109         ret = cfs_abs_path(devname, &devpath);
110         if (ret != 0) {
111                 fprintf(stderr, "%s: failed to resolve path '%s': %s\n",
112                         progname, devname, strerror(-ret));
113                 return -1;
114         }
115
116         ret = access(devname, F_OK);
117         if (ret != 0) {
118                 if (strncmp(devpath, "/dev/", 5) == 0) {
119                         /* nobody sane wants to create a loopback file under
120                          * /dev. Let's just report the device doesn't exist */
121                         fprintf(stderr, "%s: %s apparently does not exist\n",
122                                 progname, devpath);
123                         ret = -1;
124                         goto out;
125                 }
126                 ret = 0;
127                 goto out;
128         }
129         ret = stat(devpath, &st);
130         if (ret != 0) {
131                 fprintf(stderr, "%s: cannot stat %s\n", progname, devpath);
132                 goto out;
133         }
134         ret = S_ISBLK(st.st_mode);
135 out:
136         free(devpath);
137         return ret;
138 }
139
140 /* Write the server config files */
141 int ldiskfs_write_ldd(struct mkfs_opts *mop)
142 {
143         char mntpt[] = "/tmp/mntXXXXXX";
144         char filepnm[192];
145         char *dev;
146         FILE *filep;
147         int ret = 0;
148         size_t num;
149
150         /* Mount this device temporarily in order to write these files */
151         if (!mkdtemp(mntpt)) {
152                 fprintf(stderr, "%s: Can't create temp mount point %s: %s\n",
153                         progname, mntpt, strerror(errno));
154                 return errno;
155         }
156
157         dev = mop->mo_device;
158         if (mop->mo_flags & MO_IS_LOOP)
159                 dev = mop->mo_loopdev;
160
161         /* Multiple mount protection enabled if failover node specified */
162         if (mop->mo_flags & MO_FAILOVER) {
163                 if (!backfs)
164                         ext2fs_open(dev, open_flags, 0, 0,
165                                     unix_io_manager, &backfs);
166                 if (!backfs || !ext2fs_has_feature_mmp(backfs->super)) {
167                         if (is_e2fsprogs_feature_supp("-O mmp")) {
168                                 char *command = filepnm;
169
170                                 snprintf(command, sizeof(filepnm),
171                                          TUNE2FS" -O mmp '%s' >/dev/null 2>&1",
172                                          dev);
173                                 ret = run_command(command, sizeof(filepnm));
174                                 if (ret)
175                                         fprintf(stderr,
176                                                 "%s: Unable to set 'mmp' "
177                                                 "on %s: %d\n",
178                                                 progname, dev, ret);
179                         } else {
180                                 disp_old_e2fsprogs_msg("mmp", 1);
181                         }
182                         /* avoid stale cache after following operations */
183                         if (backfs) {
184                                 ext2fs_close(backfs);
185                                 backfs = NULL;
186                         }
187                 }
188         }
189
190         ret = mount(dev, mntpt, MT_STR(&mop->mo_ldd), 0,
191                 (mop->mo_mountopts == NULL) ?
192                 "errors=remount-ro" : mop->mo_mountopts);
193         if (ret) {
194                 fprintf(stderr, "%s: Unable to mount %s: %s\n",
195                         progname, dev, strerror(errno));
196                 ret = errno;
197                 if (errno == ENODEV) {
198                         fprintf(stderr, "Is the %s module available?\n",
199                                 MT_STR(&mop->mo_ldd));
200                 }
201                 goto out_rmdir;
202         }
203
204         /* Set up initial directories */
205         sprintf(filepnm, "%s/%s", mntpt, MOUNT_CONFIGS_DIR);
206         ret = mkdir(filepnm, 0777);
207         if ((ret != 0) && (errno != EEXIST)) {
208                 fprintf(stderr, "%s: Can't make configs dir %s (%s)\n",
209                         progname, filepnm, strerror(errno));
210                 goto out_umnt;
211         } else if (errno == EEXIST) {
212                 ret = 0;
213         }
214
215         /* Save the persistent mount data into a file. Lustre must pre-read
216            this file to get the real mount options. */
217         vprint("Writing %s\n", MOUNT_DATA_FILE);
218         sprintf(filepnm, "%s/%s", mntpt, MOUNT_DATA_FILE);
219         filep = fopen(filepnm, "w");
220         if (!filep) {
221                 fprintf(stderr, "%s: Unable to create %s file: %s\n",
222                         progname, filepnm, strerror(errno));
223                 goto out_umnt;
224         }
225         num = fwrite(&mop->mo_ldd, sizeof(mop->mo_ldd), 1, filep);
226         if (num < 1 && ferror(filep)) {
227                 fprintf(stderr, "%s: Unable to write to file (%s): %s\n",
228                         progname, filepnm, strerror(errno));
229                 fclose(filep);
230                 goto out_umnt;
231         }
232         fsync(filep->_fileno);
233         fclose(filep);
234
235 out_umnt:
236         umount(mntpt);
237 out_rmdir:
238         rmdir(mntpt);
239         return ret;
240 }
241
242 static int readcmd(char *cmd, char *buf, int len)
243 {
244         FILE *fp;
245         int red;
246
247         fp = popen(cmd, "r");
248         if (!fp)
249                 return errno;
250
251         red = fread(buf, 1, len, fp);
252         pclose(fp);
253
254         /* strip trailing newline */
255         if (buf[red - 1] == '\n')
256                 buf[red - 1] = '\0';
257
258         return (red == 0) ? -ENOENT : 0;
259 }
260
261 int ldiskfs_read_ldd(char *dev, struct lustre_disk_data *mo_ldd)
262 {
263         errcode_t retval;
264         ext2_ino_t ino;
265         ext2_file_t file;
266         unsigned int got;
267         char cmd[PATH_MAX];
268         int ret = 0;
269
270         if (!backfs) {
271                 retval = ext2fs_open(dev, open_flags, 0, 0,
272                                      unix_io_manager, &backfs);
273                 if (retval) {
274                         fprintf(stderr, "Unable to open fs on %s\n", dev);
275                         goto read_label;
276                 }
277         }
278         retval = ext2fs_namei(backfs, EXT2_ROOT_INO, EXT2_ROOT_INO,
279                               MOUNT_DATA_FILE, &ino);
280         if (retval) {
281                 fprintf(stderr, "Error while looking up %s\n", MOUNT_DATA_FILE);
282                 goto read_label;
283         }
284         retval = ext2fs_file_open(backfs, ino, 0, &file);
285         if (retval) {
286                 fprintf(stderr, "Error while opening file %s\n",
287                         MOUNT_DATA_FILE);
288                 goto read_label;
289         }
290         retval = ext2fs_file_read(file, mo_ldd, sizeof(*mo_ldd), &got);
291         if (retval || got == 0)
292                 fprintf(stderr, "Failed to read file %s\n", MOUNT_DATA_FILE);
293 read_label:
294         /* As long as we at least have the label, we're good to go */
295         snprintf(cmd, sizeof(cmd), E2LABEL" %s", dev);
296         ret = readcmd(cmd, mo_ldd->ldd_svname, sizeof(mo_ldd->ldd_svname) - 1);
297
298         return ret;
299 }
300
301 int ldiskfs_erase_ldd(struct mkfs_opts *mop, char *param)
302 {
303         return 0;
304 }
305
306 void ldiskfs_print_ldd_params(struct mkfs_opts *mop)
307 {
308         printf("Parameters:%s\n", mop->mo_ldd.ldd_params);
309 }
310
311 /* Display the need for the latest e2fsprogs to be installed. make_backfs
312  * indicates if the caller is make_lustre_backfs() or not. */
313 static void disp_old_e2fsprogs_msg(const char *feature, int make_backfs)
314 {
315         static int msg_displayed;
316
317         if (msg_displayed) {
318                 fprintf(stderr, "WARNING: %s does not support %s "
319                         "feature.\n\n", E2FSPROGS, feature);
320                 return;
321         }
322
323         msg_displayed++;
324
325         fprintf(stderr, "WARNING: The %s package currently installed on "
326                 "your system does not support \"%s\" feature.\n",
327                 E2FSPROGS, feature);
328 #if !(HAVE_LDISKFSPROGS)
329         fprintf(stderr, "Please install the latest version of e2fsprogs from\n"
330                 "https://downloads.whamcloud.com/public/e2fsprogs/latest/\n"
331                 "to enable this feature.\n");
332 #endif
333         if (make_backfs)
334                 fprintf(stderr,
335                         "Feature will not be enabled until %s is updated and '%s -O %s %%{device}' is run.\n\n",
336                         E2FSPROGS, TUNE2FS, feature);
337 }
338
339 /* Check whether the file exists in the device */
340 static int file_in_dev(char *file_name, char *dev_name)
341 {
342         ext2_ino_t ino;
343         errcode_t retval;
344
345         if (!backfs) {
346                 retval = ext2fs_open(dev_name, open_flags, 0, 0,
347                                      unix_io_manager, &backfs);
348                 if (retval)
349                         return 0;
350         }
351         retval = ext2fs_namei(backfs, EXT2_ROOT_INO, EXT2_ROOT_INO,
352                               file_name, &ino);
353         if (!retval)
354                 return 1;
355
356         return 0;
357 }
358
359 /* Check whether the device has already been used with lustre */
360 int ldiskfs_is_lustre(char *dev, unsigned *mount_type)
361 {
362         int ret;
363
364         ret = file_in_dev(MOUNT_DATA_FILE, dev);
365         if (ret) {
366                 /* in the -1 case, 'extents' means IS a lustre target */
367                 *mount_type = LDD_MT_LDISKFS;
368                 return 1;
369         }
370
371         ret = file_in_dev(LAST_RCVD, dev);
372         if (ret) {
373                 *mount_type = LDD_MT_LDISKFS;
374                 return 1;
375         }
376
377         return 0;
378 }
379
380 /* Check if a certain feature is supported by e2fsprogs.
381  * Firstly we try to use "debugfs supported_features" command to check if
382  * the feature is supported. If this fails we try to set this feature with
383  * mke2fs to check for its support. */
384 static bool is_e2fsprogs_feature_supp(const char *feature)
385 {
386         static char supp_features[4096] = "";
387         FILE *fp;
388         char cmd[PATH_MAX];
389         char imgname[] = "/tmp/test-img-XXXXXX";
390         int fd;
391         int ret;
392
393         if (supp_features[0] == '\0') {
394                 snprintf(cmd, sizeof(cmd), "%s -c -R supported_features 2>&1",
395                          DEBUGFS);
396
397                 /* Using popen() instead of run_command() since debugfs does
398                  * not return proper error code if command is not supported */
399                 fp = popen(cmd, "r");
400                 if (!fp) {
401                         fprintf(stderr, "%s: %s\n", progname, strerror(errno));
402                 } else {
403                         ret = fread(supp_features, 1,
404                                     sizeof(supp_features) - 1, fp);
405                         supp_features[ret] = '\0';
406                         pclose(fp);
407                 }
408         }
409
410         if (strstr(supp_features,
411                    strncmp(feature, "-O ", 3) ? feature : feature + 3))
412                 return true;
413
414         if ((fd = mkstemp(imgname)) < 0)
415                 return false;
416
417         close(fd);
418
419         snprintf(cmd, sizeof(cmd), "%s -F %s %s 100 >/dev/null 2>&1",
420                  MKE2FS, feature, imgname);
421         /* run_command() displays the output of mke2fs when it fails for
422          * some feature, so use system() directly */
423         ret = system(cmd);
424         unlink(imgname);
425
426         return ret == 0;
427 }
428
429 /**
430  * append_unique: append @key or @key=@val pair to @buf only if @key does not
431  *                exists
432  *      @buf: buffer to hold @key or @key=@val
433  *      @prefix: prefix string before @key
434  *      @key: key string
435  *      @val: value string if it's a @key=@val pair
436  */
437 static void append_unique(char *buf, char *prefix, char *key, char *val,
438                           size_t maxbuflen)
439 {
440         char *anchor, *end;
441         int  len;
442
443         if (key == NULL)
444                 return;
445
446         anchor = end = strstr(buf, key);
447         /* try to find exact match string in @buf */
448         while (end && *end != '\0' && *end != ',' && *end != ' ' && *end != '=')
449                 ++end;
450         len = end - anchor;
451         if (anchor == NULL || strlen(key) != len ||
452                         strncmp(anchor, key, len) != 0) {
453                 if (prefix != NULL)
454                         strscat(buf, prefix, maxbuflen);
455
456                 strscat(buf, key, maxbuflen);
457                 if (val != NULL) {
458                         strscat(buf, "=\"", maxbuflen);
459                         strscat(buf, val, maxbuflen);
460                         strscat(buf, "\"", maxbuflen);
461                 }
462         }
463 }
464
465 static int enable_default_ext4_features(struct mkfs_opts *mop, char *anchor,
466                                         size_t maxbuflen, bool user_spec)
467 {
468         unsigned long long blocks = mop->mo_device_kb / mop->mo_blocksize_kb;
469         bool enable_64bit = false;
470
471         /* Enable large block addresses if the LUN is over 2^32 blocks. */
472         if (blocks > 0xffffffffULL && is_e2fsprogs_feature_supp("-O 64bit"))
473                 enable_64bit = true;
474
475         append_unique(anchor, user_spec ? "," : " -O ",
476                       "uninit_bg", NULL, maxbuflen);
477         if (IS_OST(&mop->mo_ldd)) {
478                 append_unique(anchor, ",", "extents", NULL, maxbuflen);
479         } else if (IS_MDT(&mop->mo_ldd)) {
480                 if (enable_64bit)
481                         append_unique(anchor, ",", "extents", NULL, maxbuflen);
482                 else
483                         append_unique(anchor, ",", "^extents", NULL, maxbuflen);
484                 append_unique(anchor, ",", "dirdata", NULL, maxbuflen);
485         }
486
487         /* Multiple mount protection enabled only if failover node specified */
488         if (mop->mo_flags & MO_FAILOVER) {
489                 if (is_e2fsprogs_feature_supp("-O mmp"))
490                         append_unique(anchor, ",", "mmp", NULL, maxbuflen);
491                 else
492                         disp_old_e2fsprogs_msg("mmp", 1);
493         }
494
495         /* Allow more than 65000 subdirectories */
496         if (is_e2fsprogs_feature_supp("-O dir_nlink"))
497                 append_unique(anchor, ",", "dir_nlink", NULL, maxbuflen);
498
499         /* Enable quota by default */
500         if (is_e2fsprogs_feature_supp("-O quota")) {
501                 append_unique(anchor, ",", "quota", NULL, maxbuflen);
502                 /* Enable project quota by default */
503                 if (is_e2fsprogs_feature_supp("-O project"))
504                         append_unique(anchor, ",", "project", NULL, maxbuflen);
505         } else {
506                 fatal();
507                 fprintf(stderr, "\"-O quota\" must be supported by "
508                         "e2fsprogs, please upgrade your e2fsprogs.\n");
509                 return EINVAL;
510         }
511
512         /* Allow files larger than 2TB */
513         if (is_e2fsprogs_feature_supp("-O huge_file"))
514                 append_unique(anchor, ",", "huge_file", NULL, maxbuflen);
515
516         if (enable_64bit) {
517                 append_unique(anchor, ",", "64bit", NULL, maxbuflen);
518                 if (is_e2fsprogs_feature_supp("-O meta_bg"))
519                         append_unique(anchor, ",", "meta_bg", NULL, maxbuflen);
520                 append_unique(anchor, ",", "^resize_inode", NULL, maxbuflen);
521         }
522
523         /* Allow xattrs larger than one block, stored in a separate inode */
524         if (IS_MDT(&mop->mo_ldd) && is_e2fsprogs_feature_supp("-O ea_inode"))
525                 append_unique(anchor, ",", "ea_inode", NULL, maxbuflen);
526
527         /* Allow more than 10M entries in a single directory */
528         if (is_e2fsprogs_feature_supp("-O large_dir"))
529                 append_unique(anchor, ",", "large_dir", NULL, maxbuflen);
530
531         /* Disable fast_commit since it breaks ldiskfs transactions ordering */
532         if (is_e2fsprogs_feature_supp("fast_commit"))
533                 append_unique(anchor, ",", "^fast_commit", NULL, maxbuflen);
534
535         /* Cluster inode/block bitmaps and inode table for more efficient IO.
536          * Align the flex groups on a 1MB boundary for better performance. */
537         /* This -O feature needs to go last, since it adds the "-G" option. */
538         if (is_e2fsprogs_feature_supp("-O flex_bg")) {
539                 char tmp_buf[64];
540
541                 append_unique(anchor, ",", "flex_bg", NULL, maxbuflen);
542
543                 if (IS_OST(&mop->mo_ldd) &&
544                     strstr(mop->mo_mkfsopts, "-G") == NULL) {
545                         snprintf(tmp_buf, sizeof(tmp_buf), " -G %u",
546                                  1024 / mop->mo_blocksize_kb);
547                         strscat(anchor, tmp_buf, maxbuflen);
548                 }
549         }
550         /* Don't add any more "-O" options here, see last comment above */
551         return 0;
552 }
553
554 /**
555  * moveopts_to_end: find the option string, move remaining strings to
556  *                  where option string starts, and append the option
557  *                  string at the end
558  *      @start: where the option string starts before the move
559  *      RETURN: where the option string starts after the move
560  */
561 static char *moveopts_to_end(char *start)
562 {
563         size_t len;
564         char save[512];
565         char *end, *idx;
566
567         /* skip whitespace before options */
568         end = start + 2;
569         while (*end == ' ')
570                 ++end;
571
572         /* find end of option characters */
573         while (*end != ' ' && *end != '\0')
574                 ++end;
575
576         len = end - start;
577         if (len >= sizeof(save))
578                 len = sizeof(save) - 1;
579
580         /* save options */
581         strncpy(save, start, len);
582         save[len] = '\0';
583
584         /* move remaining options up front */
585         if (*end)
586                 memmove(start, end, strlen(end));
587         *(start + strlen(end)) = '\0';
588
589         /* append the specified options */
590         if (*(start + strlen(start) - 1) != ' ')
591                 strcat(start, " ");
592         idx = start + strlen(start);
593         strcat(start, save);
594
595         return idx;
596 }
597
598 /* Build fs according to type */
599 int ldiskfs_make_lustre(struct mkfs_opts *mop)
600 {
601         char mkfs_cmd[PATH_MAX];
602         char buf[64];
603         char *start;
604         char *dev;
605         int ret = 0, ext_opts = 0;
606         bool enable_64bit = false;
607         long inode_size = 0;
608         size_t maxbuflen;
609
610         mop->mo_blocksize_kb = 4;
611
612         start = strstr(mop->mo_mkfsopts, "-b");
613         if (start) {
614                 char *end = NULL;
615                 long blocksize;
616
617                 blocksize = strtol(start + 2, &end, 0);
618                 if (end && (*end == 'k' || *end == 'K'))
619                         blocksize *= 1024;
620                 /* EXT4_MIN_BLOCK_SIZE || EXT4_MAX_BLOCK_SIZE */
621                 if (blocksize < 1024 || blocksize > 65536) {
622                         fprintf(stderr,
623                                 "%s: blocksize %lu not in 1024-65536 bytes, normally 4096 bytes\n",
624                                 progname, blocksize);
625                         return EINVAL;
626                 }
627
628                 if ((blocksize & (blocksize - 1)) != 0) {
629                         fprintf(stderr,
630                                 "%s: blocksize %lu not a power-of-two value\n",
631                                 progname, blocksize);
632                         return EINVAL;
633                 }
634                 mop->mo_blocksize_kb = blocksize >> 10;
635         }
636
637         if (!(mop->mo_flags & MO_IS_LOOP)) {
638                 __u64 device_kb = get_device_size(mop->mo_device);
639
640                 if (device_kb == 0)
641                         return ENODEV;
642
643                 /* Compare to real size */
644                 if (mop->mo_device_kb == 0 || device_kb < mop->mo_device_kb)
645                         mop->mo_device_kb = device_kb;
646         }
647
648         if (mop->mo_device_kb != 0) {
649                 __u64 block_count;
650
651                 if (mop->mo_device_kb < 32384) {
652                         fprintf(stderr, "%s: size of filesystem must be larger "
653                                 "than 32MB, but is set to %lldKB\n",
654                                 progname, (long long)mop->mo_device_kb);
655                         return EINVAL;
656                 }
657                 block_count = mop->mo_device_kb / mop->mo_blocksize_kb;
658                 if (block_count > 0xffffffffULL) {
659                         /* If the LUN size is just over 2^32 blocks, limit the
660                          * filesystem size to 2^32-1 blocks to avoid problems
661                          * with ldiskfs/mkfs not handling this well. b=22906
662                          */
663                         if (block_count < 0x100002000ULL)
664                                 mop->mo_device_kb =
665                                         0xffffffffULL * mop->mo_blocksize_kb;
666                         else
667                                 enable_64bit = true;
668                 }
669         }
670
671         if ((mop->mo_ldd.ldd_mount_type != LDD_MT_EXT3) &&
672             (mop->mo_ldd.ldd_mount_type != LDD_MT_LDISKFS) &&
673             (mop->mo_ldd.ldd_mount_type != LDD_MT_LDISKFS2)) {
674                 fprintf(stderr, "%s: unsupported fs type: %d (%s)\n",
675                         progname, mop->mo_ldd.ldd_mount_type,
676                         MT_STR(&mop->mo_ldd));
677
678                 return EINVAL;
679         }
680
681         /* Journal size in MB */
682         if (strstr(mop->mo_mkfsopts, "-J") == NULL &&
683             mop->mo_device_kb > 1024 * 1024) {
684                 /* Choose our own default journal size */
685                 long journal_mb = 0, max_mb;
686
687                 /* cap journal size at 4GB for MDT, leave at 1GB for OSTs */
688                 if (IS_MDT(&mop->mo_ldd))
689                         max_mb = 4096;
690                 else if (IS_OST(&mop->mo_ldd))
691                         max_mb = 1024;
692                 else /* Use mke2fs default size for MGS */
693                         max_mb = 0;
694
695                 /* Use at most 4% of device for journal */
696                 journal_mb = mop->mo_device_kb * 4 / (1024 * 100);
697                 if (journal_mb > max_mb)
698                         journal_mb = max_mb;
699
700                 if (journal_mb) {
701                         snprintf(buf, sizeof(buf), " -J size=%ld", journal_mb);
702                         strscat(mop->mo_mkfsopts, buf,
703                                 sizeof(mop->mo_mkfsopts));
704                 }
705         }
706
707         /*
708          * The inode size is constituted by following elements
709          * (assuming all files are in composite layout and has
710          * 3 components):
711          *
712          *   ldiskfs inode size: 160
713          *   MDT extended attributes size, including:
714          *      ext4_xattr_header: 32
715          *      LOV EA size: 32(lov_comp_md_v1) +
716          *                   3 * 40(lov_comp_md_entry_v1) +
717          *                   3 * 32(lov_mds_md) +
718          *                   stripes * 24(lov_ost_data) +
719          *                   16(xattr_entry) + 4("lov")
720          *      LMA EA size: 24(lustre_mdt_attrs) +
721          *                   16(xattr_entry) + 4("lma")
722          *      SOM EA size: 24(lustre_som_attrs) +
723          *                   16(xattr_entry) + 4("som")
724          *      link EA size: 24(link_ea_header) + 18(link_ea_entry) +
725          *                    16(filename) + 16(xattr_entry) + 4("link")
726          *   and some margin for 4-byte alignment, ACLs and other EAs.
727          *
728          * If we say the average filename length is about 32 bytes,
729          * the calculation looks like:
730          * 160 + 32 + (32+3*(40+32)+24*stripes+20) + (24+20) + (24+20) +
731          *  (24+20) + (~42+16+20) + other <= 512*2^m, {m=0,1,2,3}
732          */
733         if (strstr(mop->mo_mkfsopts, "-I") == NULL) {
734                 if (IS_MDT(&mop->mo_ldd)) {
735                         if (mop->mo_stripe_count > 59)
736                                 inode_size = 512; /* bz 7241 */
737                         /* see also "-i" below for EA blocks */
738                         else if (mop->mo_stripe_count > 16)
739                                 inode_size = 2048;
740                         else
741                                 inode_size = 1024;
742                 } else if (IS_OST(&mop->mo_ldd)) {
743                         /* We store MDS FID and necessary composite
744                          * layout information in the OST object EA:
745                          *   ldiskfs inode size: 160
746                          *   OST extended attributes size, including:
747                          *      ext4_xattr_header: 32
748                          *      LMA EA size: 24(lustre_mdt_attrs) +
749                          *                   16(xattr_entry) + 4("lma")
750                          *      FID EA size: 52(filter_fid) +
751                          *                   16(xattr_entry) + 4("fid")
752                          * 160 + 32 + (24+20) + (52+20) = 308
753                          */
754                         inode_size = 512;
755                 }
756
757                 if (inode_size > 0) {
758                         snprintf(buf, sizeof(buf), " -I %ld", inode_size);
759                         strscat(mop->mo_mkfsopts, buf,
760                                 sizeof(mop->mo_mkfsopts));
761                 }
762         }
763
764         /* Bytes_per_inode: disk size / num inodes */
765         if (strstr(mop->mo_mkfsopts, "-i") == NULL &&
766             strstr(mop->mo_mkfsopts, "-N") == NULL) {
767                 long bytes_per_inode = 0;
768
769                 /* Allocate more inodes on MDT devices.  There is
770                  * no data stored on the MDT, and very little extra
771                  * metadata beyond the inode.  It could go down as
772                  * low as 1024 bytes, but this is conservative.
773                  * Account for external EA blocks for wide striping.
774                  */
775                 if (IS_MDT(&mop->mo_ldd)) {
776                         bytes_per_inode = inode_size + 1536;
777
778                         if (mop->mo_stripe_count > 59) {
779                                 int extra = mop->mo_stripe_count * 24;
780
781                                 extra = ((extra - 1) | 4095) + 1;
782                                 bytes_per_inode += extra;
783                         }
784                 }
785
786                 /* Allocate fewer inodes on large OST devices.  Most
787                  * filesystems can be much more aggressive than even
788                  * this, but it is impossible to know in advance.
789                  */
790                 if (IS_OST(&mop->mo_ldd)) {
791                         /* OST > 16TB assume average file size 1MB */
792                         if (mop->mo_device_kb > (16ULL << 30))
793                                 bytes_per_inode = 1024 * 1024;
794                         /* OST > 4TB assume average file size 512kB */
795                         else if (mop->mo_device_kb > (4ULL << 30))
796                                 bytes_per_inode = 512 * 1024;
797                         /* OST > 1TB assume average file size 256kB */
798                         else if (mop->mo_device_kb > (1ULL << 30))
799                                 bytes_per_inode = 256 * 1024;
800                         /* OST > 10GB assume average file size 64kB,
801                          * plus a bit so that inodes will fit into a
802                          * 256x flex_bg without overflowing.
803                          */
804                         else if (mop->mo_device_kb > (10ULL << 20))
805                                 bytes_per_inode = 69905;
806                 }
807
808                 if (bytes_per_inode > 0) {
809                         snprintf(buf, sizeof(buf), " -i %ld", bytes_per_inode);
810                         strscat(mop->mo_mkfsopts, buf,
811                                 sizeof(mop->mo_mkfsopts));
812                         mop->mo_inode_size = bytes_per_inode;
813                 }
814         }
815
816         if (verbose < 2)
817                 strscat(mop->mo_mkfsopts, " -q", sizeof(mop->mo_mkfsopts));
818
819         /* start handle -O mkfs options */
820         start = strstr(mop->mo_mkfsopts, "-O");
821         if (start) {
822                 if (strstr(start + 2, "-O") != NULL) {
823                         fprintf(stderr,
824                                 "%s: don't specify multiple -O options\n",
825                                 progname);
826                         return EINVAL;
827                 }
828                 start = moveopts_to_end(start);
829                 maxbuflen = sizeof(mop->mo_mkfsopts) -
830                         (start - mop->mo_mkfsopts) - strlen(start);
831                 ret = enable_default_ext4_features(mop, start, maxbuflen, 1);
832         } else {
833                 start = mop->mo_mkfsopts + strlen(mop->mo_mkfsopts);
834                 maxbuflen = sizeof(mop->mo_mkfsopts) - strlen(mop->mo_mkfsopts);
835                 ret = enable_default_ext4_features(mop, start, maxbuflen, 0);
836         }
837         if (ret)
838                 return ret;
839         /* end handle -O mkfs options */
840
841         /* start handle -E mkfs options */
842         start = strstr(mop->mo_mkfsopts, "-E");
843         if (start) {
844                 if (strstr(start + 2, "-E") != NULL) {
845                         fprintf(stderr,
846                                 "%s: don't specify multiple -E options\n",
847                                 progname);
848                         return EINVAL;
849                 }
850                 start = moveopts_to_end(start);
851                 maxbuflen = sizeof(mop->mo_mkfsopts) -
852                         (start - mop->mo_mkfsopts) - strlen(start);
853                 ext_opts = 1;
854         } else {
855                 start = mop->mo_mkfsopts + strlen(mop->mo_mkfsopts);
856                 maxbuflen = sizeof(mop->mo_mkfsopts) - strlen(mop->mo_mkfsopts);
857         }
858
859         /* In order to align the filesystem metadata on 1MB boundaries,
860          * give a resize value that will reserve a power-of-two group
861          * descriptor blocks, but leave one block for the superblock.
862          * Only useful for filesystems with < 2^32 blocks due to resize
863          * limitations.
864          */
865         if (!enable_64bit && strstr(mop->mo_mkfsopts, "meta_bg") == NULL &&
866             IS_OST(&mop->mo_ldd) && mop->mo_device_kb > 100 * 1024) {
867                 unsigned int group_blocks = mop->mo_blocksize_kb * 8192;
868                 unsigned int desc_per_block = mop->mo_blocksize_kb * 1024 / 32;
869                 unsigned int resize_blks;
870                 __u64 block_count = mop->mo_device_kb / mop->mo_blocksize_kb;
871
872                 resize_blks = (1ULL<<32) - desc_per_block*group_blocks;
873                 if (resize_blks > block_count) {
874                         snprintf(buf, sizeof(buf), "%u", resize_blks);
875                         append_unique(start, ext_opts ? "," : " -E ",
876                                       "resize", buf, maxbuflen);
877                         ext_opts = 1;
878                 }
879         }
880
881         /* Avoid zeroing out the full journal - speeds up mkfs */
882         if (is_e2fsprogs_feature_supp("-E lazy_journal_init=0")) {
883                 append_unique(start, ext_opts ? "," : " -E ",
884                               "lazy_journal_init", "0", maxbuflen);
885                 ext_opts = 1;
886         }
887         if (is_e2fsprogs_feature_supp("-E lazy_itable_init=0")) {
888                 append_unique(start, ext_opts ? "," : "-E",
889                             "lazy_itable_init", "0", maxbuflen);
890                 ext_opts = 1;
891         }
892
893         /* end handle -E mkfs options */
894
895         /* Allow reformat of full devices (as opposed to partitions).
896          * We already checked for mounted dev.
897          */
898         strscat(mop->mo_mkfsopts, " -F", sizeof(mop->mo_mkfsopts));
899
900         snprintf(mkfs_cmd, sizeof(mkfs_cmd), "%s -j -b %d -L %s ", MKE2FS,
901                  mop->mo_blocksize_kb * 1024, mop->mo_ldd.ldd_svname);
902
903         /* For loop device format the dev, not the filename */
904         dev = mop->mo_device;
905         if (mop->mo_flags & MO_IS_LOOP)
906                 dev = mop->mo_loopdev;
907
908         vprint("formatting backing filesystem %s on %s\n",
909                MT_STR(&mop->mo_ldd), dev);
910         vprint("\ttarget name   %s\n", mop->mo_ldd.ldd_svname);
911         vprint("\tkilobytes     %llu\n", mop->mo_device_kb);
912         vprint("\toptions       %s\n", mop->mo_mkfsopts);
913
914         /* mkfs_cmd's trailing space is important! */
915         strscat(mkfs_cmd, mop->mo_mkfsopts, sizeof(mkfs_cmd));
916         strscat(mkfs_cmd, " ", sizeof(mkfs_cmd));
917         strscat(mkfs_cmd, dev, sizeof(mkfs_cmd));
918         if (mop->mo_device_kb != 0) {
919                 snprintf(buf, sizeof(buf), " %lluk",
920                          (unsigned long long)mop->mo_device_kb);
921                 strscat(mkfs_cmd, buf, sizeof(mkfs_cmd));
922         }
923
924         vprint("mkfs_cmd = %s\n", mkfs_cmd);
925         ret = run_command(mkfs_cmd, sizeof(mkfs_cmd));
926         if (ret) {
927                 fatal();
928                 fprintf(stderr, "Unable to build fs %s (%d)\n", dev, ret);
929         }
930         return ret;
931 }
932
933 int ldiskfs_prepare_lustre(struct mkfs_opts *mop,
934                            char *wanted_mountopts, size_t len)
935 {
936         struct lustre_disk_data *ldd = &mop->mo_ldd;
937         int ret;
938
939         /* Set MO_IS_LOOP to indicate a loopback device is needed */
940         ret = is_block(mop->mo_device);
941         if (ret < 0) {
942                 return errno;
943         } else if (ret == 0) {
944                 mop->mo_flags |= MO_IS_LOOP;
945         }
946
947         if (IS_MDT(ldd) || IS_MGS(ldd))
948                 strscat(wanted_mountopts, ",user_xattr", len);
949
950         return 0;
951 }
952
953 int ldiskfs_fix_mountopts(struct mkfs_opts *mop, char *mountopts, size_t len)
954 {
955         if (strstr(mountopts, "errors=") == NULL)
956                 strscat(mountopts, ",errors=remount-ro", len);
957
958         return 0;
959 }
960
961 static int read_file(const char *path, char *buf, int size)
962 {
963         FILE *fd;
964
965         fd = fopen(path, "r");
966         if (fd == NULL)
967                 return errno;
968
969         if (fgets(buf, size, fd) == NULL) {
970                 fprintf(stderr, "reading from %s: %s", path, strerror(errno));
971                 fclose(fd);
972                 return 1;
973         }
974         fclose(fd);
975
976         /* strip trailing newline */
977         size = strlen(buf);
978         if (buf[size - 1] == '\n')
979                 buf[size - 1] = '\0';
980
981         return 0;
982 }
983
984 static int write_file(const char *path, const char *buf)
985 {
986         int fd, rc;
987
988         fd = open(path, O_WRONLY);
989         if (fd < 0)
990                 return errno;
991
992         rc = write(fd, buf, strlen(buf));
993         close(fd);
994
995         return rc < 0 ? errno : 0;
996 }
997
998 static int tune_md_stripe_cache_size(const char *sys_path,
999                                      struct mount_opts *mop)
1000 {
1001         char path[PATH_MAX];
1002         unsigned long old_stripe_cache_size;
1003         unsigned long new_stripe_cache_size;
1004         char buf[3 * sizeof(old_stripe_cache_size) + 2];
1005         int rc;
1006
1007         if (mop->mo_md_stripe_cache_size <= 0)
1008                 return 0;
1009
1010         new_stripe_cache_size = mop->mo_md_stripe_cache_size;
1011
1012         snprintf(path, sizeof(path), "%s/%s", sys_path, STRIPE_CACHE_SIZE);
1013         rc = read_file(path, buf, sizeof(buf));
1014         if (rc != 0) {
1015                 if (verbose)
1016                         fprintf(stderr, "warning: cannot read '%s': %s\n",
1017                                 path, strerror(errno));
1018                 return rc;
1019         }
1020
1021         old_stripe_cache_size = strtoul(buf, NULL, 0);
1022         if (old_stripe_cache_size == 0 || old_stripe_cache_size == ULONG_MAX)
1023                 return EINVAL;
1024
1025         if (new_stripe_cache_size <= old_stripe_cache_size)
1026                 return 0;
1027
1028         snprintf(buf, sizeof(buf), "%lu", new_stripe_cache_size);
1029         rc = write_file(path, buf);
1030         if (rc != 0) {
1031                 if (verbose)
1032                         fprintf(stderr, "warning: cannot write '%s': %s\n",
1033                                 path, strerror(errno));
1034                 return rc;
1035         }
1036
1037         return 0;
1038 }
1039
1040 static int tune_max_sectors_kb(const char *sys_path, struct mount_opts *mop)
1041 {
1042         char path[PATH_MAX];
1043         unsigned long max_hw_sectors_kb;
1044         unsigned long old_max_sectors_kb;
1045         unsigned long new_max_sectors_kb;
1046         char buf[3 * sizeof(old_max_sectors_kb) + 2];
1047         int rc;
1048
1049         if (mop->mo_max_sectors_kb >= 0) {
1050                 new_max_sectors_kb = mop->mo_max_sectors_kb;
1051                 goto have_new_max_sectors_kb;
1052         }
1053
1054         snprintf(path, sizeof(path), "%s/%s", sys_path, MAX_HW_SECTORS_KB_PATH);
1055         rc = read_file(path, buf, sizeof(buf));
1056         if (rc != 0) {
1057                 /* No MAX_HW_SECTORS_KB_PATH isn't necessary an
1058                  * error for some devices. */
1059                 return 0;
1060         }
1061
1062         max_hw_sectors_kb = strtoul(buf, NULL, 0);
1063         if (max_hw_sectors_kb == 0 || max_hw_sectors_kb == ULLONG_MAX) {
1064                 /* No digits at all or something weird. */
1065                 return 0;
1066         }
1067
1068         new_max_sectors_kb = max_hw_sectors_kb;
1069
1070         /* Don't increase IO request size limit past 16MB.  It is
1071          * about PTLRPC_MAX_BRW_SIZE, but that isn't in a public
1072          * header.  Note that even though the block layer allows
1073          * larger values, setting max_sectors_kb = 32768 causes
1074          * crashes (LU-6974). */
1075         if (new_max_sectors_kb > 16 * 1024)
1076                 new_max_sectors_kb = 16 * 1024;
1077
1078 have_new_max_sectors_kb:
1079         snprintf(path, sizeof(path), "%s/%s", sys_path, MAX_SECTORS_KB_PATH);
1080         rc = read_file(path, buf, sizeof(buf));
1081         if (rc != 0) {
1082                 /* No MAX_SECTORS_KB_PATH isn't necessary an error for
1083                  * some devices. */
1084                 return 0;
1085         }
1086
1087         old_max_sectors_kb = strtoul(buf, NULL, 0);
1088         if (old_max_sectors_kb == 0 || old_max_sectors_kb == ULLONG_MAX) {
1089                 /* No digits at all or something weird. */
1090                 return 0;
1091         }
1092
1093         if (new_max_sectors_kb <= old_max_sectors_kb)
1094                 return 0;
1095
1096         snprintf(buf, sizeof(buf), "%lu", new_max_sectors_kb);
1097         rc = write_file(path, buf);
1098         if (rc != 0) {
1099                 if (verbose)
1100                         fprintf(stderr, "warning: cannot write '%s': %s\n",
1101                                 path, strerror(errno));
1102                 return rc;
1103         }
1104
1105         fprintf(stderr, "%s: increased '%s' from %lu to %lu\n",
1106                 progname, path, old_max_sectors_kb, new_max_sectors_kb);
1107
1108         return 0;
1109 }
1110
1111 static int tune_block_dev_scheduler(const char *sys_path, const char *new_sched)
1112 {
1113         char path[PATH_MAX];
1114         char buf[PATH_MAX];
1115         char *s, *e;
1116         char *old_sched;
1117         int rc;
1118
1119         /* Before setting the scheduler, we need to check to see if
1120          * it's already set to "noop". If it is then we don't want to
1121          * override that setting. If it's set to anything other than
1122          * "noop" then set the scheduler to what has been passed
1123          * in. */
1124
1125         snprintf(path, sizeof(path), "%s/%s", sys_path, SCHEDULER_PATH);
1126         rc = read_file(path, buf, sizeof(buf));
1127         if (rc != 0) {
1128                 if (verbose)
1129                         fprintf(stderr, "%s: cannot read '%s': %s\n",
1130                                 progname, path, strerror(errno));
1131
1132                 return rc;
1133         }
1134
1135         /* The expected format of buf: noop anticipatory deadline [cfq] */
1136         s = strchr(buf, '[');
1137         e = strchr(buf, ']');
1138
1139         /* If the format is not what we expect then be safe and error out. */
1140         if (s == NULL || e == NULL || !(s < e)) {
1141                 if (verbose)
1142                         fprintf(stderr,
1143                                 "%s: cannot parse scheduler options for '%s'\n",
1144                                 progname, path);
1145
1146                 return EINVAL;
1147         }
1148
1149         old_sched = s + 1;
1150         *e = '\0';
1151
1152         if (strcmp(old_sched, "noop") == 0 ||
1153             strcmp(old_sched, "deadline") == 0 ||
1154             strcmp(old_sched, "mq-deadline") == 0 ||
1155             strstr(old_sched, new_sched) == 0)
1156                 return 0;
1157
1158         rc = write_file(path, new_sched);
1159         if (rc != 0) {
1160                 if (verbose)
1161                         fprintf(stderr,
1162                                 "%s: cannot set scheduler on '%s': %s\n",
1163                                 progname, path, strerror(errno));
1164                 return rc;
1165         }
1166
1167         fprintf(stderr, "%s: changed scheduler of '%s' from %s to %s\n",
1168                 progname, path, old_sched, new_sched);
1169
1170         return 0;
1171 }
1172
1173 static int tune_block_dev(const char *src, struct mount_opts *mop);
1174
1175 static int tune_block_dev_slaves(const char *sys_path, struct mount_opts *mop)
1176 {
1177         char slaves_path[PATH_MAX];
1178         DIR *slaves_dir;
1179         struct dirent *d;
1180         int rc = 0;
1181
1182         snprintf(slaves_path, sizeof(slaves_path), "%s/slaves", sys_path);
1183         slaves_dir = opendir(slaves_path);
1184         if (slaves_dir == NULL) {
1185                 if (errno == ENOENT)
1186                         return 0;
1187
1188                 return errno;
1189         }
1190
1191         while ((d = readdir(slaves_dir)) != NULL) {
1192                 char path[PATH_MAX * 2];
1193                 int rc2;
1194
1195                 if (d->d_type != DT_LNK)
1196                         continue;
1197
1198                 snprintf(path, sizeof(path), "/dev/%s", d->d_name);
1199                 rc2 = tune_block_dev(path, mop);
1200                 if (rc2 != 0)
1201                         rc = rc2;
1202         }
1203
1204         closedir(slaves_dir);
1205
1206         return rc;
1207 }
1208
1209 /* This is to tune the kernel for good SCSI performance.
1210  * For that we set the value of /sys/block/{dev}/queue/max_sectors_kb
1211  * to the value of /sys/block/{dev}/queue/max_hw_sectors_kb */
1212 static int tune_block_dev(const char *src, struct mount_opts *mop)
1213 {
1214         struct stat st;
1215         char sys_path[PATH_MAX];
1216         char partition_path[PATH_MAX + sizeof("partition")];
1217         char *real_sys_path = NULL;
1218         int rc;
1219
1220         /*
1221          * Don't apply block device tuning for MDT or MGT devices,
1222          * since we don't need huge IO sizes to get good performance
1223          */
1224         if (!IS_OST(&mop->mo_ldd))
1225                 return 0;
1226
1227         if (src == NULL)
1228                 return EINVAL;
1229
1230         rc = stat(src, &st);
1231         if (rc < 0) {
1232                 if (verbose)
1233                         fprintf(stderr, "warning: cannot stat '%s': %s\n",
1234                                 src, strerror(errno));
1235                 return errno;
1236         }
1237
1238         if (!S_ISBLK(st.st_mode))
1239                 return 0;
1240
1241         if (major(st.st_rdev) == LOOP_MAJOR)
1242                 return 0;
1243
1244         snprintf(sys_path, sizeof(sys_path), "/sys/dev/block/%u:%u",
1245                  major(st.st_rdev), minor(st.st_rdev));
1246
1247         snprintf(partition_path, sizeof(partition_path), "%s/partition",
1248                  sys_path);
1249
1250         rc = access(partition_path, F_OK);
1251         if (rc < 0) {
1252                 if (errno == ENOENT)
1253                         goto have_whole_dev;
1254
1255                 if (verbose)
1256                         fprintf(stderr, "warning: cannot access '%s': %s\n",
1257                                 partition_path, strerror(errno));
1258                 rc = errno;
1259                 goto out;
1260         }
1261
1262         snprintf(sys_path, sizeof(sys_path), "/sys/dev/block/%u:%u/..",
1263                  major(st.st_rdev), minor(st.st_rdev));
1264
1265 have_whole_dev:
1266         /* Since we recurse on slave devices we resolve the sys_path to
1267          * avoid path buffer overflows. */
1268         real_sys_path = realpath(sys_path, NULL);
1269         if (real_sys_path == NULL) {
1270                 if (verbose)
1271                         fprintf(stderr,
1272                                 "warning: cannot resolve '%s': %s\n",
1273                                 sys_path, strerror(errno));
1274                 rc = errno;
1275                 goto out;
1276         }
1277
1278         if (major(st.st_rdev) == MD_MAJOR) {
1279                 rc = tune_md_stripe_cache_size(real_sys_path, mop);
1280         } else {
1281                 /* Ignore errors from tune_max_sectors_kb() and
1282                  * tune_scheduler(). The worst that will happen is a block
1283                  * device with an "incorrect" scheduler. */
1284                 tune_max_sectors_kb(real_sys_path, mop);
1285                 tune_block_dev_scheduler(real_sys_path, DEFAULT_SCHEDULER);
1286
1287                 /* If device is multipath device then tune its slave
1288                  * devices. */
1289                 rc = tune_block_dev_slaves(real_sys_path, mop);
1290         }
1291
1292 out:
1293         free(real_sys_path);
1294
1295         return rc;
1296 }
1297
1298 int ldiskfs_tune_lustre(char *dev, struct mount_opts *mop)
1299 {
1300         return tune_block_dev(dev, mop);
1301 }
1302
1303 int ldiskfs_label_lustre(struct mount_opts *mop)
1304 {
1305         char label_cmd[PATH_MAX];
1306         int rc;
1307
1308         snprintf(label_cmd, sizeof(label_cmd),
1309                  TUNE2FS" -f -L '%s' '%s' >/dev/null 2>&1",
1310                  mop->mo_ldd.ldd_svname, mop->mo_source);
1311         rc = run_command(label_cmd, sizeof(label_cmd));
1312
1313         return rc;
1314 }
1315
1316 int ldiskfs_rename_fsname(struct mkfs_opts *mop, const char *oldname)
1317 {
1318         struct mount_opts opts;
1319         struct lustre_disk_data *ldd = &mop->mo_ldd;
1320         char mntpt[] = "/tmp/mntXXXXXX";
1321         char *dev;
1322         int ret;
1323
1324         /* Change the filesystem label. */
1325         opts.mo_ldd = *ldd;
1326         opts.mo_source = mop->mo_device;
1327         ret = ldiskfs_label_lustre(&opts);
1328         if (ret) {
1329                 if (errno != 0)
1330                         ret = errno;
1331                 fprintf(stderr, "Can't change filesystem label: %s\n",
1332                         strerror(ret));
1333                 return ret;
1334         }
1335
1336         /* Mount this device temporarily in order to write these files */
1337         if (mkdtemp(mntpt) == NULL) {
1338                 if (errno != 0)
1339                         ret = errno;
1340                 else
1341                         ret = EINVAL;
1342                 fprintf(stderr, "Can't create temp mount point %s: %s\n",
1343                         mntpt, strerror(ret));
1344                 return ret;
1345         }
1346
1347         if (mop->mo_flags & MO_IS_LOOP)
1348                 dev = mop->mo_loopdev;
1349         else
1350                 dev = mop->mo_device;
1351         ret = mount(dev, mntpt, MT_STR(ldd), 0, ldd->ldd_mount_opts);
1352         if (ret) {
1353                 if (errno != 0)
1354                         ret = errno;
1355                 fprintf(stderr, "Unable to mount %s: %s\n",
1356                         dev, strerror(ret));
1357                 if (ret == ENODEV)
1358                         fprintf(stderr, "Is the %s module available?\n",
1359                                 MT_STR(ldd));
1360                 goto out_rmdir;
1361         }
1362
1363         ret = lustre_rename_fsname(mop, mntpt, oldname);
1364         umount(mntpt);
1365
1366 out_rmdir:
1367         rmdir(mntpt);
1368         return ret;
1369 }
1370
1371 /* Enable quota accounting */
1372 int ldiskfs_enable_quota(struct mkfs_opts *mop)
1373 {
1374         char *dev;
1375         char cmd[512];
1376         int cmdsz = sizeof(cmd), ret;
1377
1378         if (!is_e2fsprogs_feature_supp("-O quota")) {
1379                 fprintf(stderr, "%s: \"-O quota\" is is not supported by "
1380                         "current e2fsprogs\n", progname);
1381                 return EINVAL;
1382         }
1383
1384         dev = mop->mo_device;
1385         if (mop->mo_flags & MO_IS_LOOP)
1386                 dev = mop->mo_loopdev;
1387
1388         /* Quota feature is already enabled? */
1389         if (!backfs)
1390                 ext2fs_open(dev, open_flags, 0, 0, unix_io_manager, &backfs);
1391         if (backfs && ext2fs_has_feature_quota(backfs->super)) {
1392                 vprint("Quota feature is already enabled.\n");
1393                 return 0;
1394         }
1395
1396         /* Turn on quota feature by "tune2fs -O quota" */
1397         snprintf(cmd, cmdsz, "%s -O quota %s", TUNE2FS, dev);
1398         ret = run_command(cmd, cmdsz);
1399         if (ret)
1400                 fprintf(stderr, "command:%s (%d)", cmd, ret);
1401
1402         return ret;
1403 }
1404
1405 int ldiskfs_init(void)
1406 {
1407         /* Required because full path to DEBUGFS is not specified */
1408         setenv("PATH", "/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin", 0);
1409
1410         return 0;
1411 }
1412
1413 void ldiskfs_fini(void)
1414 {
1415         if (backfs) {
1416                 ext2fs_close(backfs);
1417                 backfs = NULL;
1418         }
1419 }
1420
1421 #ifndef PLUGIN_DIR
1422 struct module_backfs_ops ldiskfs_ops = {
1423         .init                   = ldiskfs_init,
1424         .fini                   = ldiskfs_fini,
1425         .read_ldd               = ldiskfs_read_ldd,
1426         .write_ldd              = ldiskfs_write_ldd,
1427         .erase_ldd              = ldiskfs_erase_ldd,
1428         .print_ldd_params       = ldiskfs_print_ldd_params,
1429         .is_lustre              = ldiskfs_is_lustre,
1430         .make_lustre            = ldiskfs_make_lustre,
1431         .prepare_lustre         = ldiskfs_prepare_lustre,
1432         .fix_mountopts          = ldiskfs_fix_mountopts,
1433         .tune_lustre            = ldiskfs_tune_lustre,
1434         .label_lustre           = ldiskfs_label_lustre,
1435         .enable_quota           = ldiskfs_enable_quota,
1436         .rename_fsname          = ldiskfs_rename_fsname,
1437 };
1438 #endif /* PLUGIN_DIR */