Whamcloud - gitweb
LU-17000 utils: In mydaemon() check after calling open()
[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 200 >/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                 append_unique(anchor, ",", "^resize_inode", NULL, maxbuflen);
519         }
520
521         /* Allow xattrs larger than one block, stored in a separate inode */
522         if (IS_MDT(&mop->mo_ldd) && is_e2fsprogs_feature_supp("-O ea_inode"))
523                 append_unique(anchor, ",", "ea_inode", NULL, maxbuflen);
524
525         /* Allow more than 10M entries in a single directory */
526         if (is_e2fsprogs_feature_supp("-O large_dir"))
527                 append_unique(anchor, ",", "large_dir", NULL, maxbuflen);
528
529         /* Disable fast_commit since it breaks ldiskfs transactions ordering */
530         if (is_e2fsprogs_feature_supp("fast_commit"))
531                 append_unique(anchor, ",", "^fast_commit", NULL, maxbuflen);
532
533         /* Cluster inode/block bitmaps and inode table for more efficient IO.
534          * Align the flex groups on a 1MB boundary for better performance. */
535         /* This -O feature needs to go last, since it adds the "-G" option. */
536         if (is_e2fsprogs_feature_supp("-O flex_bg")) {
537                 char tmp_buf[64];
538
539                 append_unique(anchor, ",", "flex_bg", NULL, maxbuflen);
540
541                 if (IS_OST(&mop->mo_ldd) &&
542                     strstr(mop->mo_mkfsopts, "-G") == NULL) {
543                         snprintf(tmp_buf, sizeof(tmp_buf), " -G %u",
544                                  1024 / mop->mo_blocksize_kb);
545                         strscat(anchor, tmp_buf, maxbuflen);
546                 }
547         }
548         /* Don't add any more "-O" options here, see last comment above */
549         return 0;
550 }
551
552 /**
553  * moveopts_to_end: find the option string, move remaining strings to
554  *                  where option string starts, and append the option
555  *                  string at the end
556  *      @start: where the option string starts before the move
557  *      RETURN: where the option string starts after the move
558  */
559 static char *moveopts_to_end(char *start)
560 {
561         size_t len;
562         char save[512];
563         char *end, *idx;
564
565         /* skip whitespace before options */
566         end = start + 2;
567         while (*end == ' ')
568                 ++end;
569
570         /* find end of option characters */
571         while (*end != ' ' && *end != '\0')
572                 ++end;
573
574         len = end - start;
575         if (len >= sizeof(save))
576                 len = sizeof(save) - 1;
577
578         /* save options */
579         strncpy(save, start, len);
580         save[len] = '\0';
581
582         /* move remaining options up front */
583         if (*end)
584                 memmove(start, end, strlen(end));
585         *(start + strlen(end)) = '\0';
586
587         /* append the specified options */
588         if (*(start + strlen(start) - 1) != ' ')
589                 strcat(start, " ");
590         idx = start + strlen(start);
591         strcat(start, save);
592
593         return idx;
594 }
595
596 /* Build fs according to type */
597 int ldiskfs_make_lustre(struct mkfs_opts *mop)
598 {
599         char mkfs_cmd[PATH_MAX];
600         char buf[64];
601         char *start;
602         char *dev;
603         int ret = 0, ext_opts = 0;
604         bool enable_64bit = false;
605         long inode_size = 0;
606         size_t maxbuflen;
607
608         mop->mo_blocksize_kb = 4;
609
610         start = strstr(mop->mo_mkfsopts, "-b");
611         if (start) {
612                 char *end = NULL;
613                 long blocksize;
614
615                 blocksize = strtol(start + 2, &end, 0);
616                 if (end && (*end == 'k' || *end == 'K'))
617                         blocksize *= 1024;
618                 /* EXT4_MIN_BLOCK_SIZE || EXT4_MAX_BLOCK_SIZE */
619                 if (blocksize < 1024 || blocksize > 65536) {
620                         fprintf(stderr,
621                                 "%s: blocksize %lu not in 1024-65536 bytes, normally 4096 bytes\n",
622                                 progname, blocksize);
623                         return EINVAL;
624                 }
625
626                 if ((blocksize & (blocksize - 1)) != 0) {
627                         fprintf(stderr,
628                                 "%s: blocksize %lu not a power-of-two value\n",
629                                 progname, blocksize);
630                         return EINVAL;
631                 }
632                 mop->mo_blocksize_kb = blocksize >> 10;
633         }
634
635         if (!(mop->mo_flags & MO_IS_LOOP)) {
636                 __u64 device_kb = get_device_size(mop->mo_device);
637
638                 if (device_kb == 0)
639                         return ENODEV;
640
641                 /* Compare to real size */
642                 if (mop->mo_device_kb == 0 || device_kb < mop->mo_device_kb)
643                         mop->mo_device_kb = device_kb;
644         }
645
646         if (mop->mo_device_kb != 0) {
647                 __u64 block_count;
648
649                 if (mop->mo_device_kb < 32384) {
650                         fprintf(stderr, "%s: size of filesystem must be larger "
651                                 "than 32MB, but is set to %lldKB\n",
652                                 progname, (long long)mop->mo_device_kb);
653                         return EINVAL;
654                 }
655                 block_count = mop->mo_device_kb / mop->mo_blocksize_kb;
656                 if (block_count > 0xffffffffULL) {
657                         /* If the LUN size is just over 2^32 blocks, limit the
658                          * filesystem size to 2^32-1 blocks to avoid problems
659                          * with ldiskfs/mkfs not handling this well. b=22906
660                          */
661                         if (block_count < 0x100002000ULL)
662                                 mop->mo_device_kb =
663                                         0xffffffffULL * mop->mo_blocksize_kb;
664                         else
665                                 enable_64bit = true;
666                 }
667         }
668
669         if ((mop->mo_ldd.ldd_mount_type != LDD_MT_EXT3) &&
670             (mop->mo_ldd.ldd_mount_type != LDD_MT_LDISKFS) &&
671             (mop->mo_ldd.ldd_mount_type != LDD_MT_LDISKFS2)) {
672                 fprintf(stderr, "%s: unsupported fs type: %d (%s)\n",
673                         progname, mop->mo_ldd.ldd_mount_type,
674                         MT_STR(&mop->mo_ldd));
675
676                 return EINVAL;
677         }
678
679         /* Journal size in MB */
680         if (strstr(mop->mo_mkfsopts, "-J") == NULL &&
681             mop->mo_device_kb > 1024 * 1024) {
682                 /* Choose our own default journal size */
683                 long journal_mb = 0, max_mb;
684
685                 /* cap journal size at 4GB for MDT, leave at 1GB for OSTs */
686                 if (IS_MDT(&mop->mo_ldd))
687                         max_mb = 4096;
688                 else if (IS_OST(&mop->mo_ldd))
689                         max_mb = 1024;
690                 else /* Use mke2fs default size for MGS */
691                         max_mb = 0;
692
693                 /* Use at most 4% of device for journal */
694                 journal_mb = mop->mo_device_kb * 4 / (1024 * 100);
695                 if (journal_mb > max_mb)
696                         journal_mb = max_mb;
697
698                 if (journal_mb) {
699                         snprintf(buf, sizeof(buf), " -J size=%ld", journal_mb);
700                         strscat(mop->mo_mkfsopts, buf,
701                                 sizeof(mop->mo_mkfsopts));
702                 }
703         }
704
705         /*
706          * The inode size is constituted by following elements
707          * (assuming all files are in composite layout and has
708          * 3 components):
709          *
710          *   ldiskfs inode size: 160
711          *   MDT extended attributes size, including:
712          *      ext4_xattr_header: 32
713          *      LOV EA size: 32(lov_comp_md_v1) +
714          *                   3 * 40(lov_comp_md_entry_v1) +
715          *                   3 * 32(lov_mds_md) +
716          *                   stripes * 24(lov_ost_data) +
717          *                   16(xattr_entry) + 4("lov")
718          *      LMA EA size: 24(lustre_mdt_attrs) +
719          *                   16(xattr_entry) + 4("lma")
720          *      SOM EA size: 24(lustre_som_attrs) +
721          *                   16(xattr_entry) + 4("som")
722          *      link EA size: 24(link_ea_header) + 18(link_ea_entry) +
723          *                    16(filename) + 16(xattr_entry) + 4("link")
724          *   and some margin for 4-byte alignment, ACLs and other EAs.
725          *
726          * If we say the average filename length is about 32 bytes,
727          * the calculation looks like:
728          * 160 + 32 + (32+3*(40+32)+24*stripes+20) + (24+20) + (24+20) +
729          *  (24+20) + (~42+16+20) + other <= 512*2^m, {m=0,1,2,3}
730          */
731         if (strstr(mop->mo_mkfsopts, "-I") == NULL) {
732                 if (IS_MDT(&mop->mo_ldd)) {
733                         if (mop->mo_stripe_count > 59)
734                                 inode_size = 512; /* bz 7241 */
735                         /* see also "-i" below for EA blocks */
736                         else if (mop->mo_stripe_count > 16)
737                                 inode_size = 2048;
738                         else
739                                 inode_size = 1024;
740                 } else if (IS_OST(&mop->mo_ldd)) {
741                         /* We store MDS FID and necessary composite
742                          * layout information in the OST object EA:
743                          *   ldiskfs inode size: 160
744                          *   OST extended attributes size, including:
745                          *      ext4_xattr_header: 32
746                          *      LMA EA size: 24(lustre_mdt_attrs) +
747                          *                   16(xattr_entry) + 4("lma")
748                          *      FID EA size: 52(filter_fid) +
749                          *                   16(xattr_entry) + 4("fid")
750                          * 160 + 32 + (24+20) + (52+20) = 308
751                          */
752                         inode_size = 512;
753                 }
754
755                 if (inode_size > 0) {
756                         snprintf(buf, sizeof(buf), " -I %ld", inode_size);
757                         strscat(mop->mo_mkfsopts, buf,
758                                 sizeof(mop->mo_mkfsopts));
759                 }
760         }
761
762         /* Bytes_per_inode: disk size / num inodes */
763         if (strstr(mop->mo_mkfsopts, "-i") == NULL &&
764             strstr(mop->mo_mkfsopts, "-N") == NULL) {
765                 long bytes_per_inode = 0;
766
767                 /* Allocate more inodes on MDT devices.  There is
768                  * no data stored on the MDT, and very little extra
769                  * metadata beyond the inode.  It could go down as
770                  * low as 1024 bytes, but this is conservative.
771                  * Account for external EA blocks for wide striping.
772                  */
773                 if (IS_MDT(&mop->mo_ldd)) {
774                         bytes_per_inode = inode_size + 1536;
775
776                         if (mop->mo_stripe_count > 59) {
777                                 int extra = mop->mo_stripe_count * 24;
778
779                                 extra = ((extra - 1) | 4095) + 1;
780                                 bytes_per_inode += extra;
781                         }
782                 }
783
784                 /* Allocate fewer inodes on large OST devices.  Most
785                  * filesystems can be much more aggressive than even
786                  * this, but it is impossible to know in advance.
787                  */
788                 if (IS_OST(&mop->mo_ldd)) {
789                         /* OST > 16TB assume average file size 1MB */
790                         if (mop->mo_device_kb > (16ULL << 30))
791                                 bytes_per_inode = 1024 * 1024;
792                         /* OST > 4TB assume average file size 512kB */
793                         else if (mop->mo_device_kb > (4ULL << 30))
794                                 bytes_per_inode = 512 * 1024;
795                         /* OST > 1TB assume average file size 256kB */
796                         else if (mop->mo_device_kb > (1ULL << 30))
797                                 bytes_per_inode = 256 * 1024;
798                         /* OST > 10GB assume average file size 64kB,
799                          * plus a bit so that inodes will fit into a
800                          * 256x flex_bg without overflowing.
801                          */
802                         else if (mop->mo_device_kb > (10ULL << 20))
803                                 bytes_per_inode = 69905;
804                 }
805
806                 if (bytes_per_inode > 0) {
807                         snprintf(buf, sizeof(buf), " -i %ld", bytes_per_inode);
808                         strscat(mop->mo_mkfsopts, buf,
809                                 sizeof(mop->mo_mkfsopts));
810                         mop->mo_inode_size = bytes_per_inode;
811                 }
812         }
813
814         if (verbose < 2)
815                 strscat(mop->mo_mkfsopts, " -q", sizeof(mop->mo_mkfsopts));
816
817         /* start handle -O mkfs options */
818         start = strstr(mop->mo_mkfsopts, "-O");
819         if (start) {
820                 if (strstr(start + 2, "-O") != NULL) {
821                         fprintf(stderr,
822                                 "%s: don't specify multiple -O options\n",
823                                 progname);
824                         return EINVAL;
825                 }
826                 start = moveopts_to_end(start);
827                 maxbuflen = sizeof(mop->mo_mkfsopts) -
828                         (start - mop->mo_mkfsopts) - strlen(start);
829                 ret = enable_default_ext4_features(mop, start, maxbuflen, 1);
830         } else {
831                 start = mop->mo_mkfsopts + strlen(mop->mo_mkfsopts);
832                 maxbuflen = sizeof(mop->mo_mkfsopts) - strlen(mop->mo_mkfsopts);
833                 ret = enable_default_ext4_features(mop, start, maxbuflen, 0);
834         }
835         if (ret)
836                 return ret;
837         /* end handle -O mkfs options */
838
839         /* start handle -E mkfs options */
840         start = strstr(mop->mo_mkfsopts, "-E");
841         if (start) {
842                 if (strstr(start + 2, "-E") != NULL) {
843                         fprintf(stderr,
844                                 "%s: don't specify multiple -E options\n",
845                                 progname);
846                         return EINVAL;
847                 }
848                 start = moveopts_to_end(start);
849                 maxbuflen = sizeof(mop->mo_mkfsopts) -
850                         (start - mop->mo_mkfsopts) - strlen(start);
851                 ext_opts = 1;
852         } else {
853                 start = mop->mo_mkfsopts + strlen(mop->mo_mkfsopts);
854                 maxbuflen = sizeof(mop->mo_mkfsopts) - strlen(mop->mo_mkfsopts);
855         }
856
857         /* In order to align the filesystem metadata on 1MB boundaries,
858          * give a resize value that will reserve a power-of-two group
859          * descriptor blocks, but leave one block for the superblock.
860          * Only useful for filesystems with < 2^32 blocks due to resize
861          * limitations.
862          */
863         if (!enable_64bit && strstr(mop->mo_mkfsopts, "meta_bg") == NULL &&
864             IS_OST(&mop->mo_ldd) && mop->mo_device_kb > 100 * 1024) {
865                 unsigned int group_blocks = mop->mo_blocksize_kb * 8192;
866                 unsigned int desc_per_block = mop->mo_blocksize_kb * 1024 / 32;
867                 unsigned int resize_blks;
868                 __u64 block_count = mop->mo_device_kb / mop->mo_blocksize_kb;
869
870                 resize_blks = (1ULL<<32) - desc_per_block*group_blocks;
871                 if (resize_blks > block_count) {
872                         snprintf(buf, sizeof(buf), "%u", resize_blks);
873                         append_unique(start, ext_opts ? "," : " -E ",
874                                       "resize", buf, maxbuflen);
875                         ext_opts = 1;
876                 }
877         }
878
879         /* Avoid zeroing out the full journal - speeds up mkfs */
880         if (is_e2fsprogs_feature_supp("-E lazy_journal_init")) {
881                 append_unique(start, ext_opts ? "," : " -E ",
882                               "lazy_journal_init", NULL, maxbuflen);
883                 ext_opts = 1;
884         }
885         if (is_e2fsprogs_feature_supp("-E lazy_itable_init=0")) {
886                 append_unique(start, ext_opts ? "," : " -E ",
887                             "lazy_itable_init", "0", maxbuflen);
888                 ext_opts = 1;
889         }
890         if (is_e2fsprogs_feature_supp("-E packed_meta_blocks")) {
891                 append_unique(start, ext_opts ? "," : " -E ",
892                               "packed_meta_blocks", NULL, maxbuflen);
893                 ext_opts = 1;
894         }
895
896         /* end handle -E mkfs options */
897
898         /* Allow reformat of full devices (as opposed to partitions).
899          * We already checked for mounted dev.
900          */
901         strscat(mop->mo_mkfsopts, " -F", sizeof(mop->mo_mkfsopts));
902
903         snprintf(mkfs_cmd, sizeof(mkfs_cmd), "%s -j -b %d -L %s ", MKE2FS,
904                  mop->mo_blocksize_kb * 1024, mop->mo_ldd.ldd_svname);
905
906         /* For loop device format the dev, not the filename */
907         dev = mop->mo_device;
908         if (mop->mo_flags & MO_IS_LOOP)
909                 dev = mop->mo_loopdev;
910
911         vprint("formatting backing filesystem %s on %s\n",
912                MT_STR(&mop->mo_ldd), dev);
913         vprint("\ttarget name   %s\n", mop->mo_ldd.ldd_svname);
914         vprint("\tkilobytes     %llu\n", mop->mo_device_kb);
915         vprint("\toptions       %s\n", mop->mo_mkfsopts);
916
917         /* mkfs_cmd's trailing space is important! */
918         strscat(mkfs_cmd, mop->mo_mkfsopts, sizeof(mkfs_cmd));
919         strscat(mkfs_cmd, " ", sizeof(mkfs_cmd));
920         strscat(mkfs_cmd, dev, sizeof(mkfs_cmd));
921         if (mop->mo_device_kb != 0) {
922                 snprintf(buf, sizeof(buf), " %lluk",
923                          (unsigned long long)mop->mo_device_kb);
924                 strscat(mkfs_cmd, buf, sizeof(mkfs_cmd));
925         }
926
927         vprint("mkfs_cmd = %s\n", mkfs_cmd);
928         ret = run_command(mkfs_cmd, sizeof(mkfs_cmd));
929         if (ret) {
930                 fatal();
931                 fprintf(stderr, "Unable to build fs %s (%d)\n", dev, ret);
932         }
933         return ret;
934 }
935
936 int ldiskfs_prepare_lustre(struct mkfs_opts *mop,
937                            char *wanted_mountopts, size_t len)
938 {
939         struct lustre_disk_data *ldd = &mop->mo_ldd;
940         int ret;
941
942         /* Set MO_IS_LOOP to indicate a loopback device is needed */
943         ret = is_block(mop->mo_device);
944         if (ret < 0) {
945                 return errno;
946         } else if (ret == 0) {
947                 mop->mo_flags |= MO_IS_LOOP;
948         }
949
950         if (IS_MDT(ldd) || IS_MGS(ldd))
951                 strscat(wanted_mountopts, ",user_xattr", len);
952
953         return 0;
954 }
955
956 int ldiskfs_fix_mountopts(struct mkfs_opts *mop, char *mountopts, size_t len)
957 {
958         if (strstr(mountopts, "errors=") == NULL)
959                 strscat(mountopts, ",errors=remount-ro", len);
960
961         return 0;
962 }
963
964 static int read_file(const char *path, char *buf, int size)
965 {
966         FILE *fd;
967
968         fd = fopen(path, "r");
969         if (fd == NULL)
970                 return errno;
971
972         if (fgets(buf, size, fd) == NULL) {
973                 fprintf(stderr, "reading from %s: %s", path, strerror(errno));
974                 fclose(fd);
975                 return 1;
976         }
977         fclose(fd);
978
979         /* strip trailing newline */
980         size = strlen(buf);
981         if (buf[size - 1] == '\n')
982                 buf[size - 1] = '\0';
983
984         return 0;
985 }
986
987 static int write_file(const char *path, const char *buf)
988 {
989         int fd, rc;
990
991         fd = open(path, O_WRONLY);
992         if (fd < 0)
993                 return errno;
994
995         rc = write(fd, buf, strlen(buf));
996         close(fd);
997
998         return rc < 0 ? errno : 0;
999 }
1000
1001 static int tune_md_stripe_cache_size(const char *sys_path,
1002                                      struct mount_opts *mop)
1003 {
1004         char path[PATH_MAX];
1005         unsigned long old_stripe_cache_size;
1006         unsigned long new_stripe_cache_size;
1007         char buf[3 * sizeof(old_stripe_cache_size) + 2];
1008         int rc;
1009
1010         if (mop->mo_md_stripe_cache_size <= 0)
1011                 return 0;
1012
1013         new_stripe_cache_size = mop->mo_md_stripe_cache_size;
1014
1015         snprintf(path, sizeof(path), "%s/%s", sys_path, STRIPE_CACHE_SIZE);
1016         rc = read_file(path, buf, sizeof(buf));
1017         if (rc != 0) {
1018                 if (verbose)
1019                         fprintf(stderr, "warning: cannot read '%s': %s\n",
1020                                 path, strerror(errno));
1021                 return rc;
1022         }
1023
1024         old_stripe_cache_size = strtoul(buf, NULL, 0);
1025         if (old_stripe_cache_size == 0 || old_stripe_cache_size == ULONG_MAX)
1026                 return EINVAL;
1027
1028         if (new_stripe_cache_size <= old_stripe_cache_size)
1029                 return 0;
1030
1031         snprintf(buf, sizeof(buf), "%lu", new_stripe_cache_size);
1032         rc = write_file(path, buf);
1033         if (rc != 0) {
1034                 if (verbose)
1035                         fprintf(stderr, "warning: cannot write '%s': %s\n",
1036                                 path, strerror(errno));
1037                 return rc;
1038         }
1039
1040         return 0;
1041 }
1042
1043 static int tune_max_sectors_kb(const char *sys_path, struct mount_opts *mop)
1044 {
1045         char path[PATH_MAX];
1046         unsigned long max_hw_sectors_kb;
1047         unsigned long old_max_sectors_kb;
1048         unsigned long new_max_sectors_kb;
1049         char buf[3 * sizeof(old_max_sectors_kb) + 2];
1050         int rc;
1051
1052         if (mop->mo_max_sectors_kb >= 0) {
1053                 new_max_sectors_kb = mop->mo_max_sectors_kb;
1054                 goto have_new_max_sectors_kb;
1055         }
1056
1057         snprintf(path, sizeof(path), "%s/%s", sys_path, MAX_HW_SECTORS_KB_PATH);
1058         rc = read_file(path, buf, sizeof(buf));
1059         if (rc != 0) {
1060                 /* No MAX_HW_SECTORS_KB_PATH isn't necessary an
1061                  * error for some devices. */
1062                 return 0;
1063         }
1064
1065         max_hw_sectors_kb = strtoul(buf, NULL, 0);
1066         if (max_hw_sectors_kb == 0 || max_hw_sectors_kb == ULLONG_MAX) {
1067                 /* No digits at all or something weird. */
1068                 return 0;
1069         }
1070
1071         new_max_sectors_kb = max_hw_sectors_kb;
1072
1073         /* Don't increase IO request size limit past 16MB.  It is
1074          * about PTLRPC_MAX_BRW_SIZE, but that isn't in a public
1075          * header.  Note that even though the block layer allows
1076          * larger values, setting max_sectors_kb = 32768 causes
1077          * crashes (LU-6974). */
1078         if (new_max_sectors_kb > 16 * 1024)
1079                 new_max_sectors_kb = 16 * 1024;
1080
1081 have_new_max_sectors_kb:
1082         snprintf(path, sizeof(path), "%s/%s", sys_path, MAX_SECTORS_KB_PATH);
1083         rc = read_file(path, buf, sizeof(buf));
1084         if (rc != 0) {
1085                 /* No MAX_SECTORS_KB_PATH isn't necessary an error for
1086                  * some devices. */
1087                 return 0;
1088         }
1089
1090         old_max_sectors_kb = strtoul(buf, NULL, 0);
1091         if (old_max_sectors_kb == 0 || old_max_sectors_kb == ULLONG_MAX) {
1092                 /* No digits at all or something weird. */
1093                 return 0;
1094         }
1095
1096         if (new_max_sectors_kb <= old_max_sectors_kb)
1097                 return 0;
1098
1099         snprintf(buf, sizeof(buf), "%lu", new_max_sectors_kb);
1100         rc = write_file(path, buf);
1101         if (rc != 0) {
1102                 if (verbose)
1103                         fprintf(stderr, "warning: cannot write '%s': %s\n",
1104                                 path, strerror(errno));
1105                 return rc;
1106         }
1107
1108         fprintf(stderr, "%s: increased '%s' from %lu to %lu\n",
1109                 progname, path, old_max_sectors_kb, new_max_sectors_kb);
1110
1111         return 0;
1112 }
1113
1114 static int tune_block_dev_scheduler(const char *sys_path, const char *new_sched)
1115 {
1116         char path[PATH_MAX];
1117         char buf[PATH_MAX];
1118         char *s, *e;
1119         char *old_sched;
1120         int rc;
1121
1122         /* Before setting the scheduler, we need to check to see if
1123          * it's already set to "noop". If it is then we don't want to
1124          * override that setting. If it's set to anything other than
1125          * "noop" then set the scheduler to what has been passed
1126          * in. */
1127
1128         snprintf(path, sizeof(path), "%s/%s", sys_path, SCHEDULER_PATH);
1129         rc = read_file(path, buf, sizeof(buf));
1130         if (rc != 0) {
1131                 if (verbose)
1132                         fprintf(stderr, "%s: cannot read '%s': %s\n",
1133                                 progname, path, strerror(errno));
1134
1135                 return rc;
1136         }
1137
1138         /* The expected format of buf: noop anticipatory deadline [cfq] */
1139         s = strchr(buf, '[');
1140         e = strchr(buf, ']');
1141
1142         /* If the format is not what we expect then be safe and error out. */
1143         if (s == NULL || e == NULL || !(s < e)) {
1144                 if (verbose)
1145                         fprintf(stderr,
1146                                 "%s: cannot parse scheduler options for '%s'\n",
1147                                 progname, path);
1148
1149                 return EINVAL;
1150         }
1151
1152         old_sched = s + 1;
1153         *e = '\0';
1154
1155         if (strcmp(old_sched, "noop") == 0 ||
1156             strcmp(old_sched, "deadline") == 0 ||
1157             strcmp(old_sched, "mq-deadline") == 0 ||
1158             strstr(old_sched, new_sched) == 0)
1159                 return 0;
1160
1161         rc = write_file(path, new_sched);
1162         if (rc != 0) {
1163                 if (verbose)
1164                         fprintf(stderr,
1165                                 "%s: cannot set scheduler on '%s': %s\n",
1166                                 progname, path, strerror(errno));
1167                 return rc;
1168         }
1169
1170         fprintf(stderr, "%s: changed scheduler of '%s' from %s to %s\n",
1171                 progname, path, old_sched, new_sched);
1172
1173         return 0;
1174 }
1175
1176 static int tune_block_dev(const char *src, struct mount_opts *mop);
1177
1178 static int tune_block_dev_slaves(const char *sys_path, struct mount_opts *mop)
1179 {
1180         char slaves_path[PATH_MAX];
1181         DIR *slaves_dir;
1182         struct dirent *d;
1183         int rc = 0;
1184
1185         snprintf(slaves_path, sizeof(slaves_path), "%s/slaves", sys_path);
1186         slaves_dir = opendir(slaves_path);
1187         if (slaves_dir == NULL) {
1188                 if (errno == ENOENT)
1189                         return 0;
1190
1191                 return errno;
1192         }
1193
1194         while ((d = readdir(slaves_dir)) != NULL) {
1195                 char path[PATH_MAX * 2];
1196                 int rc2;
1197
1198                 if (d->d_type != DT_LNK)
1199                         continue;
1200
1201                 snprintf(path, sizeof(path), "/dev/%s", d->d_name);
1202                 rc2 = tune_block_dev(path, mop);
1203                 if (rc2 != 0)
1204                         rc = rc2;
1205         }
1206
1207         closedir(slaves_dir);
1208
1209         return rc;
1210 }
1211
1212 /* This is to tune the kernel for good SCSI performance.
1213  * For that we set the value of /sys/block/{dev}/queue/max_sectors_kb
1214  * to the value of /sys/block/{dev}/queue/max_hw_sectors_kb */
1215 static int tune_block_dev(const char *src, struct mount_opts *mop)
1216 {
1217         struct stat st;
1218         char sys_path[PATH_MAX];
1219         char partition_path[PATH_MAX + sizeof("partition")];
1220         char *real_sys_path = NULL;
1221         int rc;
1222
1223         /*
1224          * Don't apply block device tuning for MDT or MGT devices,
1225          * since we don't need huge IO sizes to get good performance
1226          */
1227         if (!IS_OST(&mop->mo_ldd))
1228                 return 0;
1229
1230         if (src == NULL)
1231                 return EINVAL;
1232
1233         rc = stat(src, &st);
1234         if (rc < 0) {
1235                 if (verbose)
1236                         fprintf(stderr, "warning: cannot stat '%s': %s\n",
1237                                 src, strerror(errno));
1238                 return errno;
1239         }
1240
1241         if (!S_ISBLK(st.st_mode))
1242                 return 0;
1243
1244         if (major(st.st_rdev) == LOOP_MAJOR)
1245                 return 0;
1246
1247         snprintf(sys_path, sizeof(sys_path), "/sys/dev/block/%u:%u",
1248                  major(st.st_rdev), minor(st.st_rdev));
1249
1250         snprintf(partition_path, sizeof(partition_path), "%s/partition",
1251                  sys_path);
1252
1253         rc = access(partition_path, F_OK);
1254         if (rc < 0) {
1255                 if (errno == ENOENT)
1256                         goto have_whole_dev;
1257
1258                 if (verbose)
1259                         fprintf(stderr, "warning: cannot access '%s': %s\n",
1260                                 partition_path, strerror(errno));
1261                 rc = errno;
1262                 goto out;
1263         }
1264
1265         snprintf(sys_path, sizeof(sys_path), "/sys/dev/block/%u:%u/..",
1266                  major(st.st_rdev), minor(st.st_rdev));
1267
1268 have_whole_dev:
1269         /* Since we recurse on slave devices we resolve the sys_path to
1270          * avoid path buffer overflows. */
1271         real_sys_path = realpath(sys_path, NULL);
1272         if (real_sys_path == NULL) {
1273                 if (verbose)
1274                         fprintf(stderr,
1275                                 "warning: cannot resolve '%s': %s\n",
1276                                 sys_path, strerror(errno));
1277                 rc = errno;
1278                 goto out;
1279         }
1280
1281         if (major(st.st_rdev) == MD_MAJOR) {
1282                 rc = tune_md_stripe_cache_size(real_sys_path, mop);
1283         } else {
1284                 /* Ignore errors from tune_max_sectors_kb() and
1285                  * tune_scheduler(). The worst that will happen is a block
1286                  * device with an "incorrect" scheduler. */
1287                 tune_max_sectors_kb(real_sys_path, mop);
1288                 tune_block_dev_scheduler(real_sys_path, DEFAULT_SCHEDULER);
1289
1290                 /* If device is multipath device then tune its slave
1291                  * devices. */
1292                 rc = tune_block_dev_slaves(real_sys_path, mop);
1293         }
1294
1295 out:
1296         free(real_sys_path);
1297
1298         return rc;
1299 }
1300
1301 int ldiskfs_tune_lustre(char *dev, struct mount_opts *mop)
1302 {
1303         return tune_block_dev(dev, mop);
1304 }
1305
1306 int ldiskfs_label_lustre(struct mount_opts *mop)
1307 {
1308         char label_cmd[PATH_MAX];
1309         int rc;
1310
1311         snprintf(label_cmd, sizeof(label_cmd),
1312                  TUNE2FS" -f -L '%s' '%s' >/dev/null 2>&1",
1313                  mop->mo_ldd.ldd_svname, mop->mo_source);
1314         rc = run_command(label_cmd, sizeof(label_cmd));
1315
1316         return rc;
1317 }
1318
1319 int ldiskfs_rename_fsname(struct mkfs_opts *mop, const char *oldname)
1320 {
1321         struct mount_opts opts;
1322         struct lustre_disk_data *ldd = &mop->mo_ldd;
1323         char mntpt[] = "/tmp/mntXXXXXX";
1324         char *dev;
1325         int ret;
1326
1327         /* Change the filesystem label. */
1328         opts.mo_ldd = *ldd;
1329         opts.mo_source = mop->mo_device;
1330         ret = ldiskfs_label_lustre(&opts);
1331         if (ret) {
1332                 if (errno != 0)
1333                         ret = errno;
1334                 fprintf(stderr, "Can't change filesystem label: %s\n",
1335                         strerror(ret));
1336                 return ret;
1337         }
1338
1339         /* Mount this device temporarily in order to write these files */
1340         if (mkdtemp(mntpt) == NULL) {
1341                 if (errno != 0)
1342                         ret = errno;
1343                 else
1344                         ret = EINVAL;
1345                 fprintf(stderr, "Can't create temp mount point %s: %s\n",
1346                         mntpt, strerror(ret));
1347                 return ret;
1348         }
1349
1350         if (mop->mo_flags & MO_IS_LOOP)
1351                 dev = mop->mo_loopdev;
1352         else
1353                 dev = mop->mo_device;
1354         ret = mount(dev, mntpt, MT_STR(ldd), 0, ldd->ldd_mount_opts);
1355         if (ret) {
1356                 if (errno != 0)
1357                         ret = errno;
1358                 fprintf(stderr, "Unable to mount %s: %s\n",
1359                         dev, strerror(ret));
1360                 if (ret == ENODEV)
1361                         fprintf(stderr, "Is the %s module available?\n",
1362                                 MT_STR(ldd));
1363                 goto out_rmdir;
1364         }
1365
1366         ret = lustre_rename_fsname(mop, mntpt, oldname);
1367         umount(mntpt);
1368
1369 out_rmdir:
1370         rmdir(mntpt);
1371         return ret;
1372 }
1373
1374 /* Enable quota accounting */
1375 int ldiskfs_enable_quota(struct mkfs_opts *mop)
1376 {
1377         char *dev;
1378         char cmd[512];
1379         int cmdsz = sizeof(cmd), ret;
1380
1381         if (!is_e2fsprogs_feature_supp("-O quota")) {
1382                 fprintf(stderr, "%s: \"-O quota\" is is not supported by "
1383                         "current e2fsprogs\n", progname);
1384                 return EINVAL;
1385         }
1386
1387         dev = mop->mo_device;
1388         if (mop->mo_flags & MO_IS_LOOP)
1389                 dev = mop->mo_loopdev;
1390
1391         /* Quota feature is already enabled? */
1392         if (!backfs)
1393                 ext2fs_open(dev, open_flags, 0, 0, unix_io_manager, &backfs);
1394         if (backfs && ext2fs_has_feature_quota(backfs->super)) {
1395                 vprint("Quota feature is already enabled.\n");
1396                 return 0;
1397         }
1398
1399         /* Turn on quota feature by "tune2fs -O quota" */
1400         snprintf(cmd, cmdsz, "%s -O quota %s", TUNE2FS, dev);
1401         ret = run_command(cmd, cmdsz);
1402         if (ret)
1403                 fprintf(stderr, "command:%s (%d)", cmd, ret);
1404
1405         return ret;
1406 }
1407
1408 int ldiskfs_init(void)
1409 {
1410         /* Required because full path to DEBUGFS is not specified */
1411         setenv("PATH", "/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin", 0);
1412
1413         return 0;
1414 }
1415
1416 void ldiskfs_fini(void)
1417 {
1418         if (backfs) {
1419                 ext2fs_close(backfs);
1420                 backfs = NULL;
1421         }
1422 }
1423
1424 #ifndef PLUGIN_DIR
1425 struct module_backfs_ops ldiskfs_ops = {
1426         .init                   = ldiskfs_init,
1427         .fini                   = ldiskfs_fini,
1428         .read_ldd               = ldiskfs_read_ldd,
1429         .write_ldd              = ldiskfs_write_ldd,
1430         .erase_ldd              = ldiskfs_erase_ldd,
1431         .print_ldd_params       = ldiskfs_print_ldd_params,
1432         .is_lustre              = ldiskfs_is_lustre,
1433         .make_lustre            = ldiskfs_make_lustre,
1434         .prepare_lustre         = ldiskfs_prepare_lustre,
1435         .fix_mountopts          = ldiskfs_fix_mountopts,
1436         .tune_lustre            = ldiskfs_tune_lustre,
1437         .label_lustre           = ldiskfs_label_lustre,
1438         .enable_quota           = ldiskfs_enable_quota,
1439         .rename_fsname          = ldiskfs_rename_fsname,
1440 };
1441 #endif /* PLUGIN_DIR */