Yet more "#if 0" content removed.
[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                 bb_error_msg("%s is mounted !", device);
94 force_check:
95                 if (force)
96                         bb_error_msg("badblocks forced anyways");
97                 else
98                         bb_error_msg_and_die("it's not safe to run badblocks!");
99         }
100
101         if (mount_flags & EXT2_MF_BUSY) {  
102                 bb_error_msg("%s is apparently in use by the system", device);
103                 goto force_check;
104         }
105
106 }
107
108 void parse_journal_opts(char **journal_device, int *journal_flags,
109                         int *journal_size, const char *opts)
110 {
111         char *buf, *token, *next, *p, *arg;
112         int journal_usage = 0;
113         buf = bb_xstrdup(opts);
114         for (token = buf; token && *token; token = next) {
115                 p = strchr(token, ',');
116                 next = 0;
117                 if (p) {
118                         *p = 0;
119                         next = p+1;
120                 }
121                 arg = strchr(token, '=');
122                 if (arg) {
123                         *arg = 0;
124                         arg++;
125                 }
126                 if (strcmp(token, "device") == 0) {
127                         *journal_device = blkid_get_devname(NULL, arg, NULL);
128                         if (!journal_device) {
129                                 journal_usage++;
130                                 continue;
131                         }
132                 } else if (strcmp(token, "size") == 0) {
133                         if (!arg) {
134                                 journal_usage++;
135                                 continue;
136                         }
137                         (*journal_size) = strtoul(arg, &p, 0);
138                         if (*p)
139                                 journal_usage++;
140                 } else if (strcmp(token, "v1_superblock") == 0) {
141                         (*journal_flags) |= EXT2_MKJOURNAL_V1_SUPER;
142                         continue;
143                 } else
144                         journal_usage++;
145         }
146         if (journal_usage)
147                 bb_error_msg_and_die(
148                         "\nBad journal options specified.\n\n"
149                         "Journal options are separated by commas, "
150                         "and may take an argument which\n"
151                         "\tis set off by an equals ('=') sign.\n\n"
152                         "Valid journal options are:\n"
153                         "\tsize=<journal size in megabytes>\n"
154                         "\tdevice=<journal device>\n\n"
155                         "The journal size must be between "
156                         "1024 and 102400 filesystem blocks.\n\n");
157 }
158
159 /*
160  * Determine the number of journal blocks to use, either via
161  * user-specified # of megabytes, or via some intelligently selected
162  * defaults.
163  *
164  * Find a reasonable journal file size (in blocks) given the number of blocks
165  * in the filesystem.  For very small filesystems, it is not reasonable to
166  * have a journal that fills more than half of the filesystem.
167  */
168 int figure_journal_size(int size, ext2_filsys fs)
169 {
170         blk_t j_blocks;
171
172         if (fs->super->s_blocks_count < 2048) {
173                 bb_error_msg("Filesystem too small for a journal");
174                 return 0;
175         }
176
177         if (size >= 0) {
178                 j_blocks = size * 1024 / (fs->blocksize / 1024);
179                 if (j_blocks < 1024 || j_blocks > 102400)
180                         bb_error_msg_and_die("\nThe requested journal "
181                                 "size is %d blocks;\n it must be "
182                                 "between 1024 and 102400 blocks; Aborting",
183                                 j_blocks);
184                 if (j_blocks > fs->super->s_free_blocks_count)
185                         bb_error_msg_and_die("Journal size too big for filesystem");
186                 return j_blocks;
187         }
188
189         if (fs->super->s_blocks_count < 32768)
190                 j_blocks = 1024;
191         else if (fs->super->s_blocks_count < 256*1024)
192                 j_blocks = 4096;
193         else if (fs->super->s_blocks_count < 512*1024)
194                 j_blocks = 8192;
195         else if (fs->super->s_blocks_count < 1024*1024)
196                 j_blocks = 16384;
197         else
198                 j_blocks = 32768;
199
200         return j_blocks;
201 }
202
203 void print_check_message(ext2_filsys fs)
204 {
205         printf("This filesystem will be automatically "
206                  "checked every %d mounts or\n"
207                  "%g days, whichever comes first.  "
208                  "Use tune2fs -c or -i to override.\n",
209                fs->super->s_max_mnt_count,
210                (double)fs->super->s_checkinterval / (3600 * 24));
211 }
212
213 void make_journal_device(char *journal_device, ext2_filsys fs, int quiet, int force)
214 {
215         errcode_t       retval;
216         ext2_filsys     jfs;
217         io_manager      io_ptr;
218
219         check_plausibility(journal_device, force);
220         check_mount(journal_device, force, "journal");
221         io_ptr = unix_io_manager;
222         retval = ext2fs_open(journal_device, EXT2_FLAG_RW|
223                                         EXT2_FLAG_JOURNAL_DEV_OK, 0,
224                                         fs->blocksize, io_ptr, &jfs);
225         if (retval)
226                 bb_error_msg_and_die("Could not journal device %s", journal_device);
227         if(!quiet)
228                 printf("Adding journal to device %s: ", journal_device);
229         fflush(stdout);
230         retval = ext2fs_add_journal_device(fs, jfs);
231         if(retval)
232                 bb_error_msg_and_die("\nFailed to add journal to device %s", journal_device);
233         if(!quiet)
234                 puts("done");
235         ext2fs_close(jfs);
236 }
237
238 void make_journal_blocks(ext2_filsys fs, int journal_size, int journal_flags, int quiet)
239 {
240         unsigned long journal_blocks;
241         errcode_t       retval;
242
243         journal_blocks = figure_journal_size(journal_size, fs);
244         if (!journal_blocks) {
245                 fs->super->s_feature_compat &=
246                         ~EXT3_FEATURE_COMPAT_HAS_JOURNAL;
247                 return;
248         }
249         if(!quiet)
250                 printf("Creating journal (%ld blocks): ", journal_blocks);
251         fflush(stdout);
252         retval = ext2fs_add_journal_inode(fs, journal_blocks,
253                                                   journal_flags);
254         if(retval)
255                 bb_error_msg_and_die("Could not create journal");
256         if(!quiet)
257                 puts("done");
258 }
259
260 char *e2fs_set_sbin_path(void)
261 {
262         char *oldpath = getenv("PATH");
263         /* Update our PATH to include /sbin  */
264 #define PATH_SET "/sbin"
265         if (oldpath)
266                 oldpath = bb_xasprintf("%s:%s", PATH_SET, oldpath);
267          else
268                 oldpath = PATH_SET;
269         putenv (oldpath);
270         return oldpath;
271 }