Whamcloud - gitweb
4f662fa1b00efd0fb56a7ba17af6574ac55d33bc
[fs/lustre-release.git] / lustre / utils / mount_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.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2012, 2014, Intel Corporation.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  *
36  * lustre/utils/mount_utils_ldiskfs.c
37  *
38  * Author: Nathan Rutman <nathan@clusterfs.com>
39 */
40
41 /* This source file is compiled into both mkfs.lustre and tunefs.lustre */
42
43 #if HAVE_CONFIG_H
44 #  include "config.h"
45 #endif /* HAVE_CONFIG_H */
46
47 #ifndef _GNU_SOURCE
48 #define _GNU_SOURCE
49 #endif
50 #include "mount_utils.h"
51 #include <stdlib.h>
52 #include <stdio.h>
53 #include <unistd.h>
54 #include <fcntl.h>
55 #include <stdarg.h>
56 #include <mntent.h>
57 #include <glob.h>
58
59 #include <sys/types.h>
60 #include <sys/stat.h>
61 #include <sys/mount.h>
62 #include <sys/utsname.h>
63
64 #include <string.h>
65 #include <getopt.h>
66 #include <limits.h>
67 #include <ctype.h>
68
69 #ifndef BLKGETSIZE64
70 #include <linux/fs.h> /* for BLKGETSIZE64 */
71 #endif
72 #include <linux/version.h>
73 #include <lustre_disk.h>
74 #include <lustre_param.h>
75 #include <lnet/lnetctl.h>
76 #include <lustre_ver.h>
77
78 #ifdef HAVE_SELINUX
79 #include <selinux/selinux.h>
80 #endif
81
82 #define MAX_HW_SECTORS_KB_PATH  "queue/max_hw_sectors_kb"
83 #define MAX_SECTORS_KB_PATH     "queue/max_sectors_kb"
84 #define SCHEDULER_PATH          "queue/scheduler"
85 #define STRIPE_CACHE_SIZE       "md/stripe_cache_size"
86
87 #define DEFAULT_SCHEDULER       "deadline"
88
89 extern char *progname;
90
91 #define L_BLOCK_SIZE 4096
92 /* keep it less than LL_FID_NAMELEN */
93 #define DUMMY_FILE_NAME_LEN             25
94 #define EXT3_DIRENT_SIZE                DUMMY_FILE_NAME_LEN
95
96 /*
97  * Concatenate context of the temporary mount point iff selinux is enabled
98  */
99 #ifdef HAVE_SELINUX
100 static void append_context_for_mount(char *mntpt, struct mkfs_opts *mop)
101 {
102         security_context_t fcontext;
103
104         if (getfilecon(mntpt, &fcontext) < 0) {
105                 /* Continuing with default behaviour */
106                 fprintf(stderr, "%s: Get file context failed : %s\n",
107                         progname, strerror(errno));
108                 return;
109         }
110
111         if (fcontext != NULL) {
112                 strcat(mop->mo_ldd.ldd_mount_opts, ",context=");
113                 strcat(mop->mo_ldd.ldd_mount_opts, fcontext);
114                 freecon(fcontext);
115         }
116 }
117 #endif
118
119 /* return canonicalized absolute pathname, even if the target file does not
120  * exist, unlike realpath */
121 static char *absolute_path(char *devname)
122 {
123         char  buf[PATH_MAX + 1] = "";
124         char *path;
125         char *ptr;
126         int len;
127
128         path = malloc(sizeof(buf));
129         if (path == NULL)
130                 return NULL;
131
132         if (devname[0] != '/') {
133                 if (getcwd(buf, sizeof(buf) - 1) == NULL) {
134                         free(path);
135                         return NULL;
136                 }
137                 len = snprintf(path, sizeof(buf), "%s/%s", buf, devname);
138                 if (len >= sizeof(buf)) {
139                         free(path);
140                         return NULL;
141                 }
142         } else {
143                 len = snprintf(path, sizeof(buf), "%s", devname);
144                 if (len >= sizeof(buf)) {
145                         free(path);
146                         return NULL;
147                 }
148         }
149
150         /* truncate filename before calling realpath */
151         ptr = strrchr(path, '/');
152         if (ptr == NULL) {
153                 free(path);
154                 return NULL;
155         }
156         *ptr = '\0';
157         if (buf != realpath(path, buf)) {
158                 free(path);
159                 return NULL;
160         }
161         /* add the filename back */
162         len = snprintf(path, PATH_MAX, "%s/%s", buf, ptr+1);
163         if (len >= PATH_MAX) {
164                 free(path);
165                 return NULL;
166         }
167         return path;
168 }
169
170 /* Determine if a device is a block device (as opposed to a file) */
171 static int is_block(char *devname)
172 {
173         struct stat st;
174         int     ret = 0;
175         char    *devpath;
176
177         devpath = absolute_path(devname);
178         if (devpath == NULL) {
179                 fprintf(stderr, "%s: failed to resolve path to %s\n",
180                         progname, devname);
181                 return -1;
182         }
183
184         ret = access(devname, F_OK);
185         if (ret != 0) {
186                 if (strncmp(devpath, "/dev/", 5) == 0) {
187                         /* nobody sane wants to create a loopback file under
188                          * /dev. Let's just report the device doesn't exist */
189                         fprintf(stderr, "%s: %s apparently does not exist\n",
190                                 progname, devpath);
191                         ret = -1;
192                         goto out;
193                 }
194                 ret = 0;
195                 goto out;
196         }
197         ret = stat(devpath, &st);
198         if (ret != 0) {
199                 fprintf(stderr, "%s: cannot stat %s\n", progname, devpath);
200                 goto out;
201         }
202         ret = S_ISBLK(st.st_mode);
203 out:
204         free(devpath);
205         return ret;
206 }
207
208 static int is_feature_enabled(const char *feature, const char *devpath)
209 {
210         char cmd[PATH_MAX];
211         FILE *fp;
212         char enabled_features[4096] = "";
213         int ret = 1;
214
215         snprintf(cmd, sizeof(cmd), "%s -R features %s 2>&1",
216                  DEBUGFS, devpath);
217
218         /* Using popen() instead of run_command() since debugfs does
219          * not return proper error code if command is not supported */
220         fp = popen(cmd, "r");
221         if (!fp) {
222                 fprintf(stderr, "%s: %s\n", progname, strerror(errno));
223                 return 0;
224         }
225
226         ret = fread(enabled_features, 1, sizeof(enabled_features) - 1, fp);
227         enabled_features[ret] = '\0';
228         pclose(fp);
229
230         if (strstr(enabled_features, feature))
231                 return 1;
232         return 0;
233 }
234
235 /* Write the server config files */
236 int ldiskfs_write_ldd(struct mkfs_opts *mop)
237 {
238         char mntpt[] = "/tmp/mntXXXXXX";
239         char filepnm[128];
240         char *dev;
241         FILE *filep;
242         int ret = 0;
243         size_t num;
244
245         /* Mount this device temporarily in order to write these files */
246         if (!mkdtemp(mntpt)) {
247                 fprintf(stderr, "%s: Can't create temp mount point %s: %s\n",
248                         progname, mntpt, strerror(errno));
249                 return errno;
250         }
251
252         /*
253          * Append file context to mount options if SE Linux is enabled
254          */
255         #ifdef HAVE_SELINUX
256         if (is_selinux_enabled() > 0)
257                 append_context_for_mount(mntpt, mop);
258         #endif
259
260         dev = mop->mo_device;
261         if (mop->mo_flags & MO_IS_LOOP)
262                 dev = mop->mo_loopdev;
263
264         ret = mount(dev, mntpt, MT_STR(&mop->mo_ldd), 0,
265                     mop->mo_ldd.ldd_mount_opts);
266         if (ret) {
267                 fprintf(stderr, "%s: Unable to mount %s: %s\n",
268                         progname, dev, strerror(errno));
269                 ret = errno;
270                 if (errno == ENODEV) {
271                         fprintf(stderr, "Is the %s module available?\n",
272                                 MT_STR(&mop->mo_ldd));
273                 }
274                 goto out_rmdir;
275         }
276
277         /* Set up initial directories */
278         sprintf(filepnm, "%s/%s", mntpt, MOUNT_CONFIGS_DIR);
279         ret = mkdir(filepnm, 0777);
280         if ((ret != 0) && (errno != EEXIST)) {
281                 fprintf(stderr, "%s: Can't make configs dir %s (%s)\n",
282                         progname, filepnm, strerror(errno));
283                 goto out_umnt;
284         } else if (errno == EEXIST) {
285                 ret = 0;
286         }
287
288         /* Save the persistent mount data into a file. Lustre must pre-read
289            this file to get the real mount options. */
290         vprint("Writing %s\n", MOUNT_DATA_FILE);
291         sprintf(filepnm, "%s/%s", mntpt, MOUNT_DATA_FILE);
292         filep = fopen(filepnm, "w");
293         if (!filep) {
294                 fprintf(stderr, "%s: Unable to create %s file: %s\n",
295                         progname, filepnm, strerror(errno));
296                 goto out_umnt;
297         }
298         num = fwrite(&mop->mo_ldd, sizeof(mop->mo_ldd), 1, filep);
299         if (num < 1 && ferror(filep)) {
300                 fprintf(stderr, "%s: Unable to write to file (%s): %s\n",
301                         progname, filepnm, strerror(errno));
302                 fclose(filep);
303                 goto out_umnt;
304         }
305         fclose(filep);
306
307 out_umnt:
308         umount(mntpt);
309 out_rmdir:
310         rmdir(mntpt);
311         return ret;
312 }
313
314 static int readcmd(char *cmd, char *buf, int len)
315 {
316         FILE *fp;
317         int red;
318
319         fp = popen(cmd, "r");
320         if (!fp)
321                 return errno;
322
323         red = fread(buf, 1, len, fp);
324         pclose(fp);
325
326         /* strip trailing newline */
327         if (buf[red - 1] == '\n')
328                 buf[red - 1] = '\0';
329
330         return (red == 0) ? -ENOENT : 0;
331 }
332
333 int ldiskfs_read_ldd(char *dev, struct lustre_disk_data *mo_ldd)
334 {
335         char tmpdir[] = "/tmp/dirXXXXXX";
336         char cmd[PATH_MAX];
337         char filepnm[128];
338         FILE *filep;
339         int ret = 0;
340         int cmdsz = sizeof(cmd);
341
342         /* Make a temporary directory to hold Lustre data files. */
343         if (!mkdtemp(tmpdir)) {
344                 fprintf(stderr, "%s: Can't create temporary directory %s: %s\n",
345                         progname, tmpdir, strerror(errno));
346                 return errno;
347         }
348
349         /* TODO: it's worth observing the get_mountdata() function that is
350            in mount_utils.c for getting the mountdata out of the
351            filesystem */
352
353         /* Construct debugfs command line. */
354         snprintf(cmd, cmdsz, "%s -c -R 'dump /%s %s/mountdata' '%s'",
355                  DEBUGFS, MOUNT_DATA_FILE, tmpdir, dev);
356
357         ret = run_command(cmd, cmdsz);
358         if (ret)
359                 verrprint("%s: Unable to dump %s dir (%d)\n",
360                           progname, MOUNT_CONFIGS_DIR, ret);
361
362         sprintf(filepnm, "%s/mountdata", tmpdir);
363         filep = fopen(filepnm, "r");
364         if (filep) {
365                 size_t num_read;
366                 vprint("Reading %s\n", MOUNT_DATA_FILE);
367                 num_read = fread(mo_ldd, sizeof(*mo_ldd), 1, filep);
368                 if (num_read < 1 && ferror(filep)) {
369                         fprintf(stderr, "%s: Unable to read from file %s: %s\n",
370                                 progname, filepnm, strerror(errno));
371                 }
372                 fclose(filep);
373         }
374
375         snprintf(cmd, cmdsz, "rm -rf %s", tmpdir);
376         run_command(cmd, cmdsz);
377         if (ret)
378                 verrprint("Failed to read old data (%d)\n", ret);
379
380         /* As long as we at least have the label, we're good to go */
381         snprintf(cmd, sizeof(cmd), E2LABEL" %s", dev);
382         ret = readcmd(cmd, mo_ldd->ldd_svname, sizeof(mo_ldd->ldd_svname) - 1);
383
384         return ret;
385 }
386
387
388 /* Display the need for the latest e2fsprogs to be installed. make_backfs
389  * indicates if the caller is make_lustre_backfs() or not. */
390 static void disp_old_e2fsprogs_msg(const char *feature, int make_backfs)
391 {
392         static int msg_displayed;
393
394         if (msg_displayed) {
395                 fprintf(stderr, "WARNING: %s does not support %s "
396                         "feature.\n\n", E2FSPROGS, feature);
397                 return;
398         }
399
400         msg_displayed++;
401
402         fprintf(stderr, "WARNING: The %s package currently installed on "
403                 "your system does not support \"%s\" feature.\n",
404                 E2FSPROGS, feature);
405 #if !(HAVE_LDISKFSPROGS)
406         fprintf(stderr, "Please install the latest version of e2fsprogs from\n"
407                 "https://downloads.hpdd.intel.com/public/e2fsprogs/latest/\n"
408                 "to enable this feature.\n");
409 #endif
410         if (make_backfs)
411                 fprintf(stderr, "Feature will not be enabled until %s"
412                         "is updated and '%s -O %s %%{device}' "
413                         "is run.\n\n", E2FSPROGS, TUNE2FS, feature);
414 }
415
416 /* Check whether the file exists in the device */
417 static int file_in_dev(char *file_name, char *dev_name)
418 {
419         FILE *fp;
420         char debugfs_cmd[256];
421         unsigned int inode_num;
422         int i;
423
424         /* Construct debugfs command line. */
425         snprintf(debugfs_cmd, sizeof(debugfs_cmd),
426                  "%s -c -R 'stat %s' '%s' 2>&1 | egrep '(Inode|unsupported)'",
427                  DEBUGFS, file_name, dev_name);
428
429         fp = popen(debugfs_cmd, "r");
430         if (!fp) {
431                 fprintf(stderr, "%s: %s\n", progname, strerror(errno));
432                 return 0;
433         }
434
435         if (fscanf(fp, "Inode: %u", &inode_num) == 1) { /* exist */
436                 pclose(fp);
437                 return 1;
438         }
439         i = fread(debugfs_cmd, 1, sizeof(debugfs_cmd) - 1, fp);
440         if (i) {
441                 debugfs_cmd[i] = 0;
442                 fprintf(stderr, "%s", debugfs_cmd);
443                 if (strstr(debugfs_cmd, "unsupported feature")) {
444                         disp_old_e2fsprogs_msg("an unknown", 0);
445                 }
446                 pclose(fp);
447                 return -1;
448         }
449         pclose(fp);
450         return 0;
451 }
452
453 /* Check whether the device has already been used with lustre */
454 int ldiskfs_is_lustre(char *dev, unsigned *mount_type)
455 {
456         int ret;
457
458         ret = file_in_dev(MOUNT_DATA_FILE, dev);
459         if (ret) {
460                 /* in the -1 case, 'extents' means IS a lustre target */
461                 *mount_type = LDD_MT_LDISKFS;
462                 return 1;
463         }
464
465         ret = file_in_dev(LAST_RCVD, dev);
466         if (ret) {
467                 *mount_type = LDD_MT_LDISKFS;
468                 return 1;
469         }
470
471         return 0;
472 }
473
474 /* Check if a certain feature is supported by e2fsprogs.
475  * Firstly we try to use "debugfs supported_features" command to check if
476  * the feature is supported. If this fails we try to set this feature with
477  * mke2fs to check for its support. */
478 static int is_e2fsprogs_feature_supp(const char *feature)
479 {
480         static char supp_features[4096] = "";
481         FILE *fp;
482         char cmd[PATH_MAX];
483         char imgname[] = "/tmp/test-img-XXXXXX";
484         int fd = -1;
485         int ret = 1;
486
487         if (supp_features[0] == '\0') {
488                 snprintf(cmd, sizeof(cmd), "%s -c -R supported_features 2>&1",
489                          DEBUGFS);
490
491                 /* Using popen() instead of run_command() since debugfs does
492                  * not return proper error code if command is not supported */
493                 fp = popen(cmd, "r");
494                 if (!fp) {
495                         fprintf(stderr, "%s: %s\n", progname, strerror(errno));
496                         return 0;
497                 }
498                 ret = fread(supp_features, 1, sizeof(supp_features) - 1, fp);
499                 supp_features[ret] = '\0';
500                 pclose(fp);
501         }
502         if (ret > 0 && strstr(supp_features,
503                               strncmp(feature, "-O ", 3) ? feature : feature+3))
504                 return 0;
505
506         if ((fd = mkstemp(imgname)) < 0)
507                 return -1;
508         else
509                 close(fd);
510
511         snprintf(cmd, sizeof(cmd), "%s -F %s %s 100 >/dev/null 2>&1",
512                  MKE2FS, feature, imgname);
513         /* run_command() displays the output of mke2fs when it fails for
514          * some feature, so use system() directly */
515         ret = system(cmd);
516         unlink(imgname);
517
518         return ret;
519 }
520
521
522 /**
523  * append_unique: append @key or @key=@val pair to @buf only if @key does not
524  *                exists
525  *      @buf: buffer to hold @key or @key=@val
526  *      @prefix: prefix string before @key
527  *      @key: key string
528  *      @val: value string if it's a @key=@val pair
529  */
530 static void append_unique(char *buf, char *prefix, char *key, char *val,
531                           size_t maxbuflen)
532 {
533         char *anchor, *end;
534         int  len;
535
536         if (key == NULL)
537                 return;
538
539         anchor = end = strstr(buf, key);
540         /* try to find exact match string in @buf */
541         while (end && *end != '\0' && *end != ',' && *end != ' ' && *end != '=')
542                 ++end;
543         len = end - anchor;
544         if (anchor == NULL || strlen(key) != len ||
545                         strncmp(anchor, key, len) != 0) {
546                 if (prefix != NULL)
547                         strscat(buf, prefix, maxbuflen);
548
549                 strscat(buf, key, maxbuflen);
550                 if (val != NULL) {
551                         strscat(buf, "=", maxbuflen);
552                         strscat(buf, val, maxbuflen);
553                 }
554         }
555 }
556
557 static int enable_default_ext4_features(struct mkfs_opts *mop, char *anchor,
558                                         size_t maxbuflen, int user_spec)
559 {
560         if (IS_OST(&mop->mo_ldd)) {
561                 append_unique(anchor, user_spec ? "," : " -O ",
562                               "extents", NULL, sizeof(mop->mo_mkfsopts));
563                 append_unique(anchor, ",", "uninit_bg", NULL, maxbuflen);
564         } else if (IS_MDT(&mop->mo_ldd)) {
565                 append_unique(anchor, user_spec ? "," : " -O ",
566                               "dirdata", NULL, maxbuflen);
567                 append_unique(anchor, ",", "uninit_bg", NULL, maxbuflen);
568                 append_unique(anchor, ",", "^extents", NULL, maxbuflen);
569         } else {
570                 append_unique(anchor, user_spec ? "," : " -O ",
571                               "uninit_bg", NULL, maxbuflen);
572         }
573
574         /* Multiple mount protection enabled only if failover node specified */
575         if (mop->mo_flags & MO_FAILOVER) {
576                 if (is_e2fsprogs_feature_supp("-O mmp") == 0)
577                         append_unique(anchor, ",", "mmp", NULL, maxbuflen);
578                 else
579                         disp_old_e2fsprogs_msg("mmp", 1);
580         }
581
582         /* Allow more than 65000 subdirectories */
583         if (is_e2fsprogs_feature_supp("-O dir_nlink") == 0)
584                 append_unique(anchor, ",", "dir_nlink", NULL, maxbuflen);
585
586         /* The following options are only valid for ext4-based ldiskfs.
587          * If --backfstype=ext3 is specified, do not enable them. */
588         if (mop->mo_ldd.ldd_mount_type == LDD_MT_EXT3)
589                 return 0;
590
591         /* Enable quota by default */
592         if (is_e2fsprogs_feature_supp("-O quota") == 0) {
593                 append_unique(anchor, ",", "quota", NULL, maxbuflen);
594         } else {
595                 fatal();
596                 fprintf(stderr, "\"-O quota\" must be supported by "
597                         "e2fsprogs, please upgrade your e2fsprogs.\n");
598                 return EINVAL;
599         }
600
601         /* Allow files larger than 2TB.  Also needs LU-16, but not harmful. */
602         if (is_e2fsprogs_feature_supp("-O huge_file") == 0)
603                 append_unique(anchor, ",", "huge_file", NULL, maxbuflen);
604
605         /* Enable large block addresses if the LUN is over 2^32 blocks. */
606         if (mop->mo_device_kb / (L_BLOCK_SIZE >> 10) >= 0x100002000ULL &&
607             is_e2fsprogs_feature_supp("-O 64bit") == 0)
608                 append_unique(anchor, ",", "64bit", NULL, maxbuflen);
609
610         /* Cluster inode/block bitmaps and inode table for more efficient IO.
611          * Align the flex groups on a 1MB boundary for better performance. */
612         /* This -O feature needs to go last, since it adds the "-G" option. */
613         if (is_e2fsprogs_feature_supp("-O flex_bg") == 0) {
614                 char tmp_buf[64];
615
616                 append_unique(anchor, ",", "flex_bg", NULL, maxbuflen);
617
618                 if (IS_OST(&mop->mo_ldd)) {
619                         snprintf(tmp_buf, sizeof(tmp_buf), " -G %u",
620                                  (1 << 20) / L_BLOCK_SIZE);
621                         strscat(anchor, tmp_buf, maxbuflen);
622                 }
623         }
624         /* Don't add any more "-O" options here, see last comment above */
625         return 0;
626 }
627
628 /**
629  * moveopts_to_end: find the option string, move remaining strings to
630  *                  where option string starts, and append the option
631  *                  string at the end
632  *      @start: where the option string starts before the move
633  *      RETURN: where the option string starts after the move
634  */
635 static char *moveopts_to_end(char *start)
636 {
637         size_t len;
638         char save[512];
639         char *end, *idx;
640
641         /* skip whitespace before options */
642         end = start + 2;
643         while (*end == ' ')
644                 ++end;
645
646         /* find end of option characters */
647         while (*end != ' ' && *end != '\0')
648                 ++end;
649
650         len = end - start;
651         if (len >= sizeof(save))
652                 len = sizeof(save) - 1;
653
654         /* save options */
655         strncpy(save, start, len);
656         save[len] = '\0';
657
658         /* move remaining options up front */
659         if (*end)
660                 memmove(start, end, strlen(end));
661         *(start + strlen(end)) = '\0';
662
663         /* append the specified options */
664         if (*(start + strlen(start) - 1) != ' ')
665                 strcat(start, " ");
666         idx = start + strlen(start);
667         strcat(start, save);
668
669         return idx;
670 }
671
672 /* Build fs according to type */
673 int ldiskfs_make_lustre(struct mkfs_opts *mop)
674 {
675         __u64 device_kb = mop->mo_device_kb, block_count = 0;
676         char mkfs_cmd[PATH_MAX];
677         char buf[64];
678         char *start;
679         char *dev;
680         int ret = 0, ext_opts = 0;
681         size_t maxbuflen;
682
683         if (!(mop->mo_flags & MO_IS_LOOP)) {
684                 mop->mo_device_kb = get_device_size(mop->mo_device);
685
686                 if (mop->mo_device_kb == 0)
687                         return ENODEV;
688
689                 /* Compare to real size */
690                 if (device_kb == 0 || device_kb > mop->mo_device_kb)
691                         device_kb = mop->mo_device_kb;
692                 else
693                         mop->mo_device_kb = device_kb;
694         }
695
696         if (mop->mo_device_kb != 0) {
697                 if (mop->mo_device_kb < 8096) {
698                         fprintf(stderr, "%s: size of filesystem must be larger "
699                                 "than 8MB, but is set to %lldKB\n",
700                                 progname, (long long)mop->mo_device_kb);
701                         return EINVAL;
702                 }
703                 block_count = mop->mo_device_kb / (L_BLOCK_SIZE >> 10);
704                 /* If the LUN size is just over 2^32 blocks, limit the
705                  * filesystem size to 2^32-1 blocks to avoid problems with
706                  * ldiskfs/mkfs not handling this size.  Bug 22906 */
707                 if (block_count > 0xffffffffULL && block_count < 0x100002000ULL)
708                         block_count = 0xffffffffULL;
709         }
710
711         if ((mop->mo_ldd.ldd_mount_type == LDD_MT_EXT3) ||
712             (mop->mo_ldd.ldd_mount_type == LDD_MT_LDISKFS) ||
713             (mop->mo_ldd.ldd_mount_type == LDD_MT_LDISKFS2)) {
714                 long inode_size = 0;
715
716                 /* Journal size in MB */
717                 if (strstr(mop->mo_mkfsopts, "-J") == NULL &&
718                     device_kb > 1024 * 1024) {
719                         /* Choose our own default journal size */
720                         long journal_mb = 0, max_mb;
721
722                         /* cap journal size at 4GB for MDT,
723                          * leave it at 400MB for OSTs. */
724                         if (IS_MDT(&mop->mo_ldd))
725                                 max_mb = 4096;
726                         else if (IS_OST(&mop->mo_ldd))
727                                 max_mb = 400;
728                         else /* Use mke2fs default size for MGS */
729                                 max_mb = 0;
730
731                         /* Use at most 4% of device for journal */
732                         journal_mb = device_kb * 4 / (1024 * 100);
733                         if (journal_mb > max_mb)
734                                 journal_mb = max_mb;
735
736                         if (journal_mb) {
737                                 sprintf(buf, " -J size=%ld", journal_mb);
738                                 strscat(mop->mo_mkfsopts, buf,
739                                         sizeof(mop->mo_mkfsopts));
740                         }
741                 }
742
743                 /* Inode size (for extended attributes).  The LOV EA size is
744                  * 32 (EA hdr) + 32 (lov_mds_md) + stripes * 24 (lov_ost_data),
745                  * and we want some margin above that for ACLs, other EAs... */
746                 if (strstr(mop->mo_mkfsopts, "-I") == NULL) {
747                         if (IS_MDT(&mop->mo_ldd)) {
748                                 if (mop->mo_stripe_count > 72)
749                                         inode_size = 512; /* bz 7241 */
750                                 /* see also "-i" below for EA blocks */
751                                 else if (mop->mo_stripe_count > 32)
752                                         inode_size = 2048;
753                                 else if (mop->mo_stripe_count > 10)
754                                         inode_size = 1024;
755                                 else
756                                         inode_size = 512;
757                         } else if (IS_OST(&mop->mo_ldd)) {
758                                 /* We store MDS FID and OST objid in EA on OST
759                                  * we need to make inode bigger as well. */
760                                 inode_size = 256;
761                         }
762
763                         if (inode_size > 0) {
764                                 sprintf(buf, " -I %ld", inode_size);
765                                 strscat(mop->mo_mkfsopts, buf,
766                                         sizeof(mop->mo_mkfsopts));
767                         }
768                 }
769
770                 /* Bytes_per_inode: disk size / num inodes */
771                 if (strstr(mop->mo_mkfsopts, "-i") == NULL &&
772                     strstr(mop->mo_mkfsopts, "-N") == NULL) {
773                         long bytes_per_inode = 0;
774
775                         /* Allocate more inodes on MDT devices.  There is
776                          * no data stored on the MDT, and very little extra
777                          * metadata beyond the inode.  It could go down as
778                          * low as 1024 bytes, but this is conservative.
779                          * Account for external EA blocks for wide striping. */
780                         if (IS_MDT(&mop->mo_ldd)) {
781                                 bytes_per_inode = inode_size + 1536;
782
783                                 if (mop->mo_stripe_count > 72) {
784                                         int extra = mop->mo_stripe_count * 24;
785                                         extra = ((extra - 1) | 4095) + 1;
786                                         bytes_per_inode += extra;
787                                 }
788                         }
789
790                         /* Allocate fewer inodes on large OST devices.  Most
791                          * filesystems can be much more aggressive than even
792                          * this, but it is impossible to know in advance. */
793                         if (IS_OST(&mop->mo_ldd)) {
794                                 /* OST > 16TB assume average file size 1MB */
795                                 if (device_kb > (16ULL << 30))
796                                         bytes_per_inode = 1024 * 1024;
797                                 /* OST > 4TB assume average file size 512kB */
798                                 else if (device_kb > (4ULL << 30))
799                                         bytes_per_inode = 512 * 1024;
800                                 /* OST > 1TB assume average file size 256kB */
801                                 else if (device_kb > (1ULL << 30))
802                                         bytes_per_inode = 256 * 1024;
803                                 /* OST > 10GB assume average file size 64kB,
804                                  * plus a bit so that inodes will fit into a
805                                  * 256x flex_bg without overflowing */
806                                 else if (device_kb > (10ULL << 20))
807                                         bytes_per_inode = 69905;
808                         }
809
810                         if (bytes_per_inode > 0) {
811                                 sprintf(buf, " -i %ld", bytes_per_inode);
812                                 strscat(mop->mo_mkfsopts, buf,
813                                         sizeof(mop->mo_mkfsopts));
814                         }
815                 }
816
817                 if (verbose < 2) {
818                         strscat(mop->mo_mkfsopts, " -q",
819                                 sizeof(mop->mo_mkfsopts));
820                 }
821
822                 /* start handle -O mkfs options */
823                 if ((start = strstr(mop->mo_mkfsopts, "-O")) != NULL) {
824                         if (strstr(start + 2, "-O") != NULL) {
825                                 fprintf(stderr,
826                                         "%s: don't specify multiple -O options\n",
827                                         progname);
828                                 return EINVAL;
829                         }
830                         start = moveopts_to_end(start);
831                         maxbuflen = sizeof(mop->mo_mkfsopts) -
832                                 (start - mop->mo_mkfsopts) - strlen(start);
833                         ret = enable_default_ext4_features(mop, start, maxbuflen, 1);
834                 } else {
835                         start = mop->mo_mkfsopts + strlen(mop->mo_mkfsopts),
836                               maxbuflen = sizeof(mop->mo_mkfsopts) -
837                                       strlen(mop->mo_mkfsopts);
838                         ret = enable_default_ext4_features(mop, start, maxbuflen, 0);
839                 }
840                 if (ret)
841                         return ret;
842                 /* end handle -O mkfs options */
843
844                 /* start handle -E mkfs options */
845                 if ((start = strstr(mop->mo_mkfsopts, "-E")) != NULL) {
846                         if (strstr(start + 2, "-E") != NULL) {
847                                 fprintf(stderr,
848                                         "%s: don't specify multiple -E options\n",
849                                         progname);
850                                 return EINVAL;
851                         }
852                         start = moveopts_to_end(start);
853                         maxbuflen = sizeof(mop->mo_mkfsopts) -
854                                 (start - mop->mo_mkfsopts) - strlen(start);
855                         ext_opts = 1;
856                 } else {
857                         start = mop->mo_mkfsopts + strlen(mop->mo_mkfsopts);
858                         maxbuflen = sizeof(mop->mo_mkfsopts) -
859                                 strlen(mop->mo_mkfsopts);
860                 }
861
862                 /* In order to align the filesystem metadata on 1MB boundaries,
863                  * give a resize value that will reserve a power-of-two group
864                  * descriptor blocks, but leave one block for the superblock.
865                  * Only useful for filesystems with < 2^32 blocks due to resize
866                  * limitations. */
867                 if (IS_OST(&mop->mo_ldd) && mop->mo_device_kb > 100 * 1024 &&
868                     mop->mo_device_kb * 1024 / L_BLOCK_SIZE <= 0xffffffffULL) {
869                         unsigned group_blocks = L_BLOCK_SIZE * 8;
870                         unsigned desc_per_block = L_BLOCK_SIZE / 32;
871                         unsigned resize_blks;
872
873                         resize_blks = (1ULL<<32) - desc_per_block*group_blocks;
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                 /* Avoid zeroing out the full journal - speeds up mkfs */
881                 if (is_e2fsprogs_feature_supp("-E lazy_journal_init") == 0)
882                         append_unique(start, ext_opts ? "," : " -E ",
883                                       "lazy_journal_init", NULL, maxbuflen);
884                 /* end handle -E mkfs options */
885
886                 /* Allow reformat of full devices (as opposed to
887                    partitions.)  We already checked for mounted dev. */
888                 strscat(mop->mo_mkfsopts, " -F", sizeof(mop->mo_mkfsopts));
889
890                 snprintf(mkfs_cmd, sizeof(mkfs_cmd),
891                          "%s -j -b %d -L %s ", MKE2FS, L_BLOCK_SIZE,
892                          mop->mo_ldd.ldd_svname);
893         } else {
894                 fprintf(stderr,"%s: unsupported fs type: %d (%s)\n",
895                         progname, mop->mo_ldd.ldd_mount_type,
896                         MT_STR(&mop->mo_ldd));
897                 return EINVAL;
898         }
899
900         /* For loop device format the dev, not the filename */
901         dev = mop->mo_device;
902         if (mop->mo_flags & MO_IS_LOOP)
903                 dev = mop->mo_loopdev;
904
905         vprint("formatting backing filesystem %s on %s\n",
906                MT_STR(&mop->mo_ldd), dev);
907         vprint("\ttarget name  %s\n", mop->mo_ldd.ldd_svname);
908         vprint("\t4k blocks     "LPU64"\n", block_count);
909         vprint("\toptions       %s\n", mop->mo_mkfsopts);
910
911         /* mkfs_cmd's trailing space is important! */
912         strscat(mkfs_cmd, mop->mo_mkfsopts, sizeof(mkfs_cmd));
913         strscat(mkfs_cmd, " ", sizeof(mkfs_cmd));
914         strscat(mkfs_cmd, dev, sizeof(mkfs_cmd));
915         if (block_count != 0) {
916                 sprintf(buf, " "LPU64, block_count);
917                 strscat(mkfs_cmd, buf, sizeof(mkfs_cmd));
918         }
919
920         vprint("mkfs_cmd = %s\n", mkfs_cmd);
921         ret = run_command(mkfs_cmd, sizeof(mkfs_cmd));
922         if (ret) {
923                 fatal();
924                 fprintf(stderr, "Unable to build fs %s (%d)\n", dev, ret);
925         }
926         return ret;
927 }
928
929 int ldiskfs_prepare_lustre(struct mkfs_opts *mop,
930                            char *default_mountopts, int default_len,
931                            char *always_mountopts, int always_len)
932 {
933         struct lustre_disk_data *ldd = &mop->mo_ldd;
934         int ret;
935
936         /* Set MO_IS_LOOP to indicate a loopback device is needed */
937         ret = is_block(mop->mo_device);
938         if (ret < 0) {
939                 return errno;
940         } else if (ret == 0) {
941                 mop->mo_flags |= MO_IS_LOOP;
942         }
943
944         strscat(default_mountopts, ",errors=remount-ro", default_len);
945         if (IS_MDT(ldd) || IS_MGS(ldd))
946                 strscat(always_mountopts, ",user_xattr", always_len);
947
948         return 0;
949 }
950
951 static int read_file(const char *path, char *buf, int size)
952 {
953         FILE *fd;
954
955         fd = fopen(path, "r");
956         if (fd == NULL)
957                 return errno;
958
959         if (fgets(buf, size, fd) == NULL) {
960                 fprintf(stderr, "reading from %s: %s", path, strerror(errno));
961                 fclose(fd);
962                 return 1;
963         }
964         fclose(fd);
965
966         /* strip trailing newline */
967         size = strlen(buf);
968         if (buf[size - 1] == '\n')
969                 buf[size - 1] = '\0';
970
971         return 0;
972 }
973
974 static int write_file(const char *path, const char *buf)
975 {
976         FILE *fd;
977
978         fd = fopen(path, "w");
979         if (fd == NULL)
980                 return errno;
981
982         fputs(buf, fd);
983         fclose(fd);
984         return 0;
985 }
986
987 static int set_blockdev_scheduler(const char *path, const char *scheduler)
988 {
989         char buf[PATH_MAX], *s, *e, orig_sched[50];
990         int rc;
991
992         /* Before setting the scheduler, we need to check to see if it's
993          * already set to "noop". If it is, we don't want to override
994          * that setting. If it's set to anything other than "noop", set
995          * the scheduler to what has been passed in. */
996
997         rc = read_file(path, buf, sizeof(buf));
998         if (rc) {
999                 if (verbose)
1000                         fprintf(stderr, "%s: cannot open '%s': %s\n",
1001                                 progname, path, strerror(errno));
1002                 return rc;
1003         }
1004
1005         /* The expected format of buf: noop anticipatory deadline [cfq] */
1006         s = strchr(buf, '[');
1007         e = strchr(buf, ']');
1008
1009         /* If the format is not what we expect. Play it safe and error out. */
1010         if (s == NULL || e == NULL) {
1011                 if (verbose)
1012                         fprintf(stderr, "%s: cannot parse scheduler "
1013                                         "options for '%s'\n", progname, path);
1014                 return -EINVAL;
1015         }
1016
1017         snprintf(orig_sched, e - s, "%s", s + 1);
1018
1019         if (strcmp(orig_sched, "noop") == 0 ||
1020             strcmp(orig_sched, scheduler) == 0)
1021                 return 0;
1022
1023         rc = write_file(path, scheduler);
1024         if (rc) {
1025                 if (verbose)
1026                         fprintf(stderr, "%s: cannot set scheduler on "
1027                                         "'%s': %s\n", progname, path,
1028                                         strerror(errno));
1029                 return rc;
1030         } else {
1031                 fprintf(stderr, "%s: change scheduler of %s from %s to %s\n",
1032                         progname, path, orig_sched, scheduler);
1033         }
1034
1035         return rc;
1036 }
1037
1038 /* This is to tune the kernel for good SCSI performance.
1039  * For that we set the value of /sys/block/{dev}/queue/max_sectors_kb
1040  * to the value of /sys/block/{dev}/queue/max_hw_sectors_kb */
1041 static int set_blockdev_tunables(char *source, struct mount_opts *mop)
1042 {
1043         glob_t glob_info = { 0 };
1044         struct stat stat_buf;
1045         char *chk_major, *chk_minor;
1046         char *savept = NULL, *dev;
1047         char *ret_path;
1048         char buf[PATH_MAX] = {'\0'}, path[PATH_MAX] = {'\0'};
1049         char real_path[PATH_MAX] = {'\0'};
1050         int i, rc = 0;
1051         int major, minor;
1052         char *slave = NULL;
1053
1054         if (!source)
1055                 return -EINVAL;
1056
1057         ret_path = realpath(source, real_path);
1058         if (ret_path == NULL) {
1059                 if (verbose)
1060                         fprintf(stderr, "warning: %s: cannot resolve: %s\n",
1061                                 source, strerror(errno));
1062                 return -EINVAL;
1063         }
1064
1065         if (strncmp(real_path, "/dev/loop", 9) == 0)
1066                 return 0;
1067
1068         if ((real_path[0] != '/') && (strpbrk(real_path, ",:") != NULL))
1069                 return 0;
1070
1071         snprintf(path, sizeof(path), "/sys/block%s", real_path + 4);
1072         if (access(path, X_OK) == 0)
1073                 goto set_params;
1074
1075         /* The name of the device say 'X' specified in /dev/X may not
1076          * match any entry under /sys/block/. In that case we need to
1077          * match the major/minor number to find the entry under
1078          * sys/block corresponding to /dev/X */
1079
1080         /* Don't chop tail digit on /dev/mapper/xxx, LU-478 */
1081         if (strncmp(real_path, "/dev/mapper", 11) != 0) {
1082                 dev = real_path + strlen(real_path);
1083                 while (--dev > real_path && isdigit(*dev))
1084                         *dev = 0;
1085
1086                 if (strncmp(real_path, "/dev/md_", 8) == 0)
1087                         *dev = 0;
1088         }
1089
1090         rc = stat(real_path, &stat_buf);
1091         if (rc) {
1092                 if (verbose)
1093                         fprintf(stderr, "warning: %s, device %s stat failed\n",
1094                                 strerror(errno), real_path);
1095                 return rc;
1096         }
1097
1098         major = major(stat_buf.st_rdev);
1099         minor = minor(stat_buf.st_rdev);
1100         rc = glob("/sys/block/*", GLOB_NOSORT, NULL, &glob_info);
1101         if (rc) {
1102                 if (verbose)
1103                         fprintf(stderr, "warning: failed to read entries under "
1104                                 "/sys/block\n");
1105                 globfree(&glob_info);
1106                 return rc;
1107         }
1108
1109         for (i = 0; i < glob_info.gl_pathc; i++){
1110                 snprintf(path, sizeof(path), "%s/dev", glob_info.gl_pathv[i]);
1111
1112                 rc = read_file(path, buf, sizeof(buf));
1113                 if (rc)
1114                         continue;
1115
1116                 if (buf[strlen(buf) - 1] == '\n')
1117                         buf[strlen(buf) - 1] = '\0';
1118
1119                 chk_major = strtok_r(buf, ":", &savept);
1120                 chk_minor = savept;
1121                 if (chk_major != NULL && major == atoi(chk_major) &&
1122                     chk_minor != NULL && minor == atoi(chk_minor))
1123                         break;
1124         }
1125
1126         if (i == glob_info.gl_pathc) {
1127                 if (verbose)
1128                         fprintf(stderr,"warning: device %s does not match any "
1129                                 "entry under /sys/block\n", real_path);
1130                 globfree(&glob_info);
1131                 return -EINVAL;
1132         }
1133
1134         /* Chop off "/dev" from path we found */
1135         path[strlen(glob_info.gl_pathv[i])] = '\0';
1136         globfree(&glob_info);
1137
1138 set_params:
1139         if (strncmp(real_path, "/dev/md", 7) == 0) {
1140                 snprintf(real_path, sizeof(real_path), "%s/%s", path,
1141                          STRIPE_CACHE_SIZE);
1142
1143                 rc = read_file(real_path, buf, sizeof(buf));
1144                 if (rc) {
1145                         if (verbose)
1146                                 fprintf(stderr, "warning: opening %s: %s\n",
1147                                         real_path, strerror(errno));
1148                         return 0;
1149                 }
1150
1151                 if (atoi(buf) >= mop->mo_md_stripe_cache_size)
1152                         return 0;
1153
1154                 if (strlen(buf) - 1 > 0) {
1155                         snprintf(buf, sizeof(buf), "%d",
1156                                  mop->mo_md_stripe_cache_size);
1157                         rc = write_file(real_path, buf);
1158                         if (rc && verbose)
1159                                 fprintf(stderr, "warning: opening %s: %s\n",
1160                                         real_path, strerror(errno));
1161                 }
1162                 /* Return since raid and disk tunables are different */
1163                 return rc;
1164         }
1165
1166         snprintf(real_path, sizeof(real_path), "%s/%s", path,
1167                  MAX_HW_SECTORS_KB_PATH);
1168         rc = read_file(real_path, buf, sizeof(buf));
1169         if (rc) {
1170                 if (verbose)
1171                         fprintf(stderr, "warning: opening %s: %s\n",
1172                                 real_path, strerror(errno));
1173                 /* No MAX_HW_SECTORS_KB_PATH isn't necessary an
1174                  * error for some device. */
1175                 goto subdevs;
1176         }
1177
1178         if (strlen(buf) - 1 > 0) {
1179                 char oldbuf[32] = "", *end = NULL;
1180                 unsigned long long oldval, newval;
1181
1182                 snprintf(real_path, sizeof(real_path), "%s/%s", path,
1183                          MAX_SECTORS_KB_PATH);
1184                 rc = read_file(real_path, oldbuf, sizeof(oldbuf));
1185                 /* Only set new parameter if different from the old one. */
1186                 if (rc != 0 || strcmp(oldbuf, buf) == 0) {
1187                         /* No MAX_SECTORS_KB_PATH isn't necessary an
1188                          * error for some device. */
1189                         goto subdevs;
1190                 }
1191
1192                 newval = strtoull(buf, &end, 0);
1193                 if (newval == 0 || newval == ULLONG_MAX || end == buf)
1194                         goto subdevs;
1195
1196                 /* Don't increase IO request size limit past 32MB.  It is about
1197                  * 2x PTLRPC_MAX_BRW_SIZE, but that isn't defined publicly. */
1198                 if (newval > 32 * 1024)
1199                         newval = 32 * 1024;
1200
1201                 oldval = strtoull(oldbuf, &end, 0);
1202                 /* Don't shrink the current limit. */
1203                 if (oldval != ULLONG_MAX && newval <= oldval)
1204                         goto subdevs;
1205
1206                 rc = write_file(real_path, buf);
1207                 if (rc) {
1208                         if (verbose)
1209                                 fprintf(stderr, "warning: writing to %s: %s\n",
1210                                         real_path, strerror(errno));
1211                         /* No MAX_SECTORS_KB_PATH isn't necessary an
1212                          * error for some device. */
1213                         goto subdevs;
1214                 }
1215                 fprintf(stderr, "%s: increased %s from %s to %s\n",
1216                         progname, real_path, oldbuf, buf);
1217         }
1218
1219 subdevs:
1220         /* Purposely ignore errors reported from set_blockdev_scheduler.
1221          * The worst that will happen is a block device with an "incorrect"
1222          * scheduler. */
1223         snprintf(real_path, sizeof(real_path), "%s/%s", path, SCHEDULER_PATH);
1224         set_blockdev_scheduler(real_path, DEFAULT_SCHEDULER);
1225
1226         /* if device is multipath device, tune its slave devices */
1227         glob_info.gl_pathc = 0;
1228         glob_info.gl_offs = 0;
1229         snprintf(real_path, sizeof(real_path), "%s/slaves/*", path);
1230         rc = glob(real_path, GLOB_NOSORT, NULL, &glob_info);
1231
1232         for (i = 0; rc == 0 && i < glob_info.gl_pathc; i++) {
1233                 slave = basename(glob_info.gl_pathv[i]);
1234                 snprintf(real_path, sizeof(real_path), "/dev/%s", slave);
1235                 rc = set_blockdev_tunables(real_path, mop);
1236         }
1237
1238         if (rc == GLOB_NOMATCH) {
1239                 /* no slave device is not an error */
1240                 rc = 0;
1241         } else if (rc && verbose) {
1242                 if (slave == NULL) {
1243                         fprintf(stderr, "warning: %s, failed to read"
1244                                 " entries under %s/slaves\n",
1245                                 strerror(errno), path);
1246                 } else {
1247                         fprintf(stderr, "unable to set tunables for"
1248                                 " slave device %s (slave would be"
1249                                 " unable to handle IO request from"
1250                                 " master %s)\n",
1251                                 real_path, source);
1252                 }
1253         }
1254         globfree(&glob_info);
1255
1256         return rc;
1257 }
1258
1259 int ldiskfs_tune_lustre(char *dev, struct mount_opts *mop)
1260 {
1261         return set_blockdev_tunables(dev, mop);
1262 }
1263
1264 int ldiskfs_label_lustre(struct mount_opts *mop)
1265 {
1266         char label_cmd[PATH_MAX];
1267         int rc;
1268
1269         snprintf(label_cmd, sizeof(label_cmd),
1270                  TUNE2FS" -f -L '%s' '%s' >/dev/null 2>&1",
1271                  mop->mo_ldd.ldd_svname, mop->mo_source);
1272         rc = run_command(label_cmd, sizeof(label_cmd));
1273
1274         return rc;
1275 }
1276
1277 /* Enable quota accounting */
1278 int ldiskfs_enable_quota(struct mkfs_opts *mop)
1279 {
1280         char *dev;
1281         char cmd[512];
1282         int cmdsz = sizeof(cmd), ret;
1283
1284         if (is_e2fsprogs_feature_supp("-O quota") != 0) {
1285                 fprintf(stderr, "%s: \"-O quota\" is is not supported by "
1286                         "current e2fsprogs\n", progname);
1287                 return EINVAL;
1288         }
1289
1290         dev = mop->mo_device;
1291         if (mop->mo_flags & MO_IS_LOOP)
1292                 dev = mop->mo_loopdev;
1293
1294         /* Quota feature is already enabled? */
1295         if (is_feature_enabled("quota", dev)) {
1296                 vprint("Quota feature is already enabled.\n");
1297                 return 0;
1298         }
1299
1300         /* Turn on quota feature by "tune2fs -O quota" */
1301         snprintf(cmd, cmdsz, "%s -O quota %s", TUNE2FS, dev);
1302         ret = run_command(cmd, cmdsz);
1303         if (ret)
1304                 fprintf(stderr, "command:%s (%d)", cmd, ret);
1305
1306         return ret;
1307 }
1308
1309 int ldiskfs_init(void)
1310 {
1311         /* Required because full path to DEBUGFS is not specified */
1312         setenv("PATH", "/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin", 0);
1313
1314         return 0;
1315 }
1316
1317 void ldiskfs_fini(void)
1318 {
1319         return;
1320 }
1321