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