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