excellent shrinkage patch by Tito
[oweals/busybox.git] / e2fsprogs / util.c
1 /*
2  * util.c --- helper functions used by tune2fs and mke2fs
3  * 
4  * Copyright 1995, 1996, 1997, 1998, 1999, 2000 by Theodore Ts'o.
5  *
6  * %Begin-Header%
7  * This file may be redistributed under the terms of the GNU Public
8  * License.
9  * %End-Header%
10  */
11
12 #include <stdio.h>
13 #include <string.h>
14 #include <errno.h>
15 #include <linux/major.h>
16 #include <sys/stat.h>
17
18 #include "e2fsbb.h"
19 #include "e2p/e2p.h"
20 #include "ext2fs/ext2_fs.h"
21 #include "ext2fs/ext2fs.h"
22 #include "blkid/blkid.h"
23 #include "util.h"
24
25 void proceed_question(void)
26 {
27         fputs("Proceed anyway? (y,n) ", stdout);
28         if (bb_ask_confirmation() == 0)
29                 exit(1);
30 }
31
32 void check_plausibility(const char *device, int force)
33 {
34         int val;
35 #ifdef CONFIG_LFS
36         struct stat64 s;
37         val = stat64(device, &s);
38 #else
39         struct stat s;
40         val = stat(device, &s);
41 #endif
42         if (force)
43                 return;
44         if(val == -1)
45                 bb_perror_msg_and_die("Could not stat %s", device);
46         if (!S_ISBLK(s.st_mode)) {
47                 printf("%s is not a block special device.\n", device);
48                 proceed_question();
49                 return;
50         }
51
52 #ifdef HAVE_LINUX_MAJOR_H
53 #ifndef MAJOR
54 #define MAJOR(dev)      ((dev)>>8)
55 #define MINOR(dev)      ((dev) & 0xff)
56 #endif
57 #ifndef SCSI_BLK_MAJOR
58 #ifdef SCSI_DISK0_MAJOR
59 #ifdef SCSI_DISK8_MAJOR
60 #define SCSI_DISK_MAJOR(M) ((M) == SCSI_DISK0_MAJOR || \
61   ((M) >= SCSI_DISK1_MAJOR && (M) <= SCSI_DISK7_MAJOR) || \
62   ((M) >= SCSI_DISK8_MAJOR && (M) <= SCSI_DISK15_MAJOR))
63 #else
64 #define SCSI_DISK_MAJOR(M) ((M) == SCSI_DISK0_MAJOR || \
65   ((M) >= SCSI_DISK1_MAJOR && (M) <= SCSI_DISK7_MAJOR))
66 #endif /* defined(SCSI_DISK8_MAJOR) */
67 #define SCSI_BLK_MAJOR(M) (SCSI_DISK_MAJOR((M)) || (M) == SCSI_CDROM_MAJOR)
68 #else
69 #define SCSI_BLK_MAJOR(M)  ((M) == SCSI_DISK_MAJOR || (M) == SCSI_CDROM_MAJOR)
70 #endif /* defined(SCSI_DISK0_MAJOR) */
71 #endif /* defined(SCSI_BLK_MAJOR) */
72         if (((MAJOR(s.st_rdev) == HD_MAJOR &&
73               MINOR(s.st_rdev)%64 == 0) ||
74              (SCSI_BLK_MAJOR(MAJOR(s.st_rdev)) &&
75               MINOR(s.st_rdev)%16 == 0))) {
76                 printf("%s is entire device, not just one partition!\n", device);
77                 proceed_question();
78         }
79 #endif
80 }
81
82 void check_mount(const char *device, int force, const char *type)
83 {
84         errcode_t retval;
85         int mount_flags;
86
87         retval = ext2fs_check_if_mounted(device, &mount_flags);
88         if (retval) {
89                 bb_error_msg("Could not determine if %s is mounted", device);
90                 return;
91         }
92         if (!(mount_flags & EXT2_MF_MOUNTED))
93                 return;
94
95         bb_error_msg("%s is mounted !", device);
96         if (force)
97                 bb_error_msg("forcing anyways and ignoring /etc/mtab status");
98         else
99                 bb_error_msg_and_die("will not make a %s here!", type);
100 }
101
102 void parse_journal_opts(char **journal_device, int *journal_flags, 
103                         int *journal_size, const char *opts)
104 {
105         char *buf, *token, *next, *p, *arg;
106         int journal_usage = 0;
107 #if 0
108         int     len;
109         len = strlen(opts);
110         buf = xmalloc(len+1);
111         strcpy(buf, opts);
112 #else
113         buf = bb_xstrdup(opts);
114 #endif
115         for (token = buf; token && *token; token = next) {
116                 p = strchr(token, ',');
117                 next = 0;
118                 if (p) {
119                         *p = 0;
120                         next = p+1;
121                 } 
122                 arg = strchr(token, '=');
123                 if (arg) {
124                         *arg = 0;
125                         arg++;
126                 }
127                 if (strcmp(token, "device") == 0) {
128                         *journal_device = blkid_get_devname(NULL, arg, NULL);
129                         if (!journal_device) {
130                                 journal_usage++;
131                                 continue;
132                         }
133                 } else if (strcmp(token, "size") == 0) {
134                         if (!arg) {
135                                 journal_usage++;
136                                 continue;
137                         }
138                         (*journal_size) = strtoul(arg, &p, 0);
139                         if (*p)
140                                 journal_usage++;
141                 } else if (strcmp(token, "v1_superblock") == 0) {
142                         (*journal_flags) |= EXT2_MKJOURNAL_V1_SUPER;
143                         continue;
144                 } else
145                         journal_usage++;
146         }
147         if (journal_usage)
148                 bb_error_msg_and_die(
149                         "\nBad journal options specified.\n\n"
150                         "Journal options are separated by commas, "
151                         "and may take an argument which\n"
152                         "\tis set off by an equals ('=') sign.\n\n"
153                         "Valid journal options are:\n"
154                         "\tsize=<journal size in megabytes>\n"
155                         "\tdevice=<journal device>\n\n"
156                         "The journal size must be between "
157                         "1024 and 102400 filesystem blocks.\n\n");
158 }       
159
160 /*
161  * Determine the number of journal blocks to use, either via
162  * user-specified # of megabytes, or via some intelligently selected
163  * defaults.
164  * 
165  * Find a reasonable journal file size (in blocks) given the number of blocks
166  * in the filesystem.  For very small filesystems, it is not reasonable to
167  * have a journal that fills more than half of the filesystem.
168  */
169 int figure_journal_size(int size, ext2_filsys fs)
170 {
171         blk_t j_blocks;
172
173         if (fs->super->s_blocks_count < 2048) {
174                 bb_error_msg("Filesystem too small for a journal");
175                 return 0;
176         }
177
178         if (size >= 0) {
179                 j_blocks = size * 1024 / (fs->blocksize / 1024);
180                 if (j_blocks < 1024 || j_blocks > 102400)
181                         bb_error_msg_and_die("\nThe requested journal "
182                                 "size is %d blocks;\n it must be "
183                                 "between 1024 and 102400 blocks; Aborting",
184                                 j_blocks);
185                 if (j_blocks > fs->super->s_free_blocks_count)
186                         bb_error_msg_and_die("Journal size too big for filesystem");
187                 return j_blocks;
188         }
189
190         if (fs->super->s_blocks_count < 32768)
191                 j_blocks = 1024;
192         else if (fs->super->s_blocks_count < 262144)
193                 j_blocks = 4096;
194         else
195                 j_blocks = 8192;
196
197         return j_blocks;
198 }
199
200 void print_check_message(ext2_filsys fs)
201 {
202         printf("This filesystem will be automatically "
203                  "checked every %d mounts or\n"
204                  "%g days, whichever comes first.  "
205                  "Use tune2fs -c or -i to override.\n",
206                fs->super->s_max_mnt_count,
207                (double)fs->super->s_checkinterval / (3600 * 24));
208 }
209
210 void make_journal_device(char *journal_device, ext2_filsys fs, int quiet, int force)
211 {
212         errcode_t       retval;
213         ext2_filsys     jfs;
214         io_manager      io_ptr;
215
216         check_plausibility(journal_device, force);
217         check_mount(journal_device, force, "journal");  
218         io_ptr = unix_io_manager;       
219         retval = ext2fs_open(journal_device, EXT2_FLAG_RW|
220                                         EXT2_FLAG_JOURNAL_DEV_OK, 0,
221                                         fs->blocksize, io_ptr, &jfs);
222         if (retval)
223                 bb_error_msg_and_die("Could not journal device %s", journal_device);
224         if(!quiet)
225                 printf("Adding journal to device %s: ", journal_device);
226         fflush(stdout);
227         retval = ext2fs_add_journal_device(fs, jfs);
228         if(retval)
229                 bb_error_msg_and_die("\nFailed to add journal to device %s", journal_device);
230         if(!quiet)
231                 puts("done");
232         ext2fs_close(jfs);
233 }
234
235 void make_journal_blocks(ext2_filsys fs, int journal_size, int journal_flags, int quiet)
236 {
237         unsigned long journal_blocks;
238         errcode_t       retval;
239                 
240         journal_blocks = figure_journal_size(journal_size, fs);
241         if (!journal_blocks) {
242                 fs->super->s_feature_compat &=
243                         ~EXT3_FEATURE_COMPAT_HAS_JOURNAL;
244                 return;
245         }
246         if(!quiet)
247                 printf("Creating journal (%ld blocks): ", journal_blocks);
248         fflush(stdout);
249         retval = ext2fs_add_journal_inode(fs, journal_blocks,
250                                                   journal_flags);
251         if(retval)
252                 bb_error_msg_and_die("Could not create journal");
253         if(!quiet)
254                 puts("done");
255 }