tunefs.c revision 1.24 1 1.24 lukem /* $NetBSD: tunefs.c,v 1.24 2001/09/06 02:16:01 lukem Exp $ */
2 1.10 cgd
3 1.1 cgd /*
4 1.8 mycroft * Copyright (c) 1983, 1993
5 1.8 mycroft * The Regents of the University of California. All rights reserved.
6 1.1 cgd *
7 1.1 cgd * Redistribution and use in source and binary forms, with or without
8 1.1 cgd * modification, are permitted provided that the following conditions
9 1.1 cgd * are met:
10 1.1 cgd * 1. Redistributions of source code must retain the above copyright
11 1.1 cgd * notice, this list of conditions and the following disclaimer.
12 1.1 cgd * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 cgd * notice, this list of conditions and the following disclaimer in the
14 1.1 cgd * documentation and/or other materials provided with the distribution.
15 1.1 cgd * 3. All advertising materials mentioning features or use of this software
16 1.1 cgd * must display the following acknowledgement:
17 1.1 cgd * This product includes software developed by the University of
18 1.1 cgd * California, Berkeley and its contributors.
19 1.1 cgd * 4. Neither the name of the University nor the names of its contributors
20 1.1 cgd * may be used to endorse or promote products derived from this software
21 1.1 cgd * without specific prior written permission.
22 1.1 cgd *
23 1.1 cgd * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24 1.1 cgd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 1.1 cgd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 1.1 cgd * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27 1.1 cgd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 1.1 cgd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 1.1 cgd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 1.1 cgd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 1.1 cgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 1.1 cgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 1.1 cgd * SUCH DAMAGE.
34 1.1 cgd */
35 1.1 cgd
36 1.11 lukem #include <sys/cdefs.h>
37 1.1 cgd #ifndef lint
38 1.11 lukem __COPYRIGHT("@(#) Copyright (c) 1983, 1993\n\
39 1.11 lukem The Regents of the University of California. All rights reserved.\n");
40 1.1 cgd #endif /* not lint */
41 1.1 cgd
42 1.1 cgd #ifndef lint
43 1.10 cgd #if 0
44 1.12 lukem static char sccsid[] = "@(#)tunefs.c 8.3 (Berkeley) 5/3/95";
45 1.10 cgd #else
46 1.24 lukem __RCSID("$NetBSD: tunefs.c,v 1.24 2001/09/06 02:16:01 lukem Exp $");
47 1.10 cgd #endif
48 1.1 cgd #endif /* not lint */
49 1.1 cgd
50 1.1 cgd /*
51 1.1 cgd * tunefs: change layout parameters to an existing file system.
52 1.1 cgd */
53 1.1 cgd #include <sys/param.h>
54 1.1 cgd #include <sys/stat.h>
55 1.8 mycroft
56 1.12 lukem #include <ufs/ufs/dinode.h>
57 1.8 mycroft #include <ufs/ffs/fs.h>
58 1.13 bouyer #include <ufs/ffs/ffs_extern.h>
59 1.18 bouyer
60 1.18 bouyer #include <machine/bswap.h>
61 1.8 mycroft
62 1.22 lukem #include <err.h>
63 1.8 mycroft #include <errno.h>
64 1.6 cgd #include <fcntl.h>
65 1.1 cgd #include <fstab.h>
66 1.22 lukem #include <paths.h>
67 1.1 cgd #include <stdio.h>
68 1.6 cgd #include <stdlib.h>
69 1.14 thorpej #include <string.h>
70 1.6 cgd #include <unistd.h>
71 1.6 cgd
72 1.6 cgd /* the optimization warning string template */
73 1.8 mycroft #define OPTWARN "should optimize for %s with minfree %s %d%%"
74 1.1 cgd
75 1.1 cgd union {
76 1.1 cgd struct fs sb;
77 1.1 cgd char pad[MAXBSIZE];
78 1.1 cgd } sbun;
79 1.1 cgd #define sblock sbun.sb
80 1.13 bouyer char buf[MAXBSIZE];
81 1.1 cgd
82 1.22 lukem int fi;
83 1.22 lukem long dev_bsize = 1;
84 1.22 lukem int needswap = 0;
85 1.22 lukem
86 1.22 lukem static void bwrite(daddr_t, char *, int);
87 1.22 lukem static int bread(daddr_t, char *, int);
88 1.22 lukem static int getnum(const char *, const char *, int, int);
89 1.22 lukem static void getsb(struct fs *, const char *);
90 1.22 lukem static void usage(void);
91 1.22 lukem int main(int, char *[]);
92 1.6 cgd
93 1.6 cgd int
94 1.22 lukem main(int argc, char *argv[])
95 1.1 cgd {
96 1.20 fvdl #ifdef TUNEFS_SOFTDEP
97 1.22 lukem int softdep;
98 1.24 lukem #define OPTSTRING "AFNa:d:e:g:h:k:m:n:o:t:"
99 1.22 lukem #else
100 1.24 lukem #define OPTSTRING "AFNa:d:e:g:h:k:m:o:t:"
101 1.22 lukem #endif
102 1.22 lukem struct stat st;
103 1.22 lukem int i, ch, Aflag, Fflag, Nflag;
104 1.22 lukem struct fstab *fs;
105 1.22 lukem const char *special, *chg[2];
106 1.22 lukem char device[MAXPATHLEN];
107 1.22 lukem int maxbpg, maxcontig, minfree, rotdelay, optim, trackskew;
108 1.24 lukem int avgfilesize, avgfpdir;
109 1.22 lukem
110 1.22 lukem Aflag = Fflag = Nflag = 0;
111 1.22 lukem maxbpg = maxcontig = minfree = rotdelay = optim = trackskew = -1;
112 1.24 lukem avgfilesize = avgfpdir = -1;
113 1.22 lukem #ifdef TUNEFS_SOFTDEP
114 1.22 lukem softdep = -1;
115 1.22 lukem #endif
116 1.22 lukem chg[FS_OPTSPACE] = "space";
117 1.22 lukem chg[FS_OPTTIME] = "time";
118 1.22 lukem
119 1.22 lukem while ((ch = getopt(argc, argv, OPTSTRING)) != -1) {
120 1.22 lukem switch (ch) {
121 1.22 lukem
122 1.22 lukem case 'A':
123 1.22 lukem Aflag++;
124 1.22 lukem break;
125 1.22 lukem
126 1.22 lukem case 'F':
127 1.22 lukem Fflag++;
128 1.22 lukem break;
129 1.22 lukem
130 1.22 lukem case 'N':
131 1.22 lukem Nflag++;
132 1.22 lukem break;
133 1.22 lukem
134 1.22 lukem case 'a':
135 1.22 lukem maxcontig = getnum(optarg,
136 1.22 lukem "maximum contiguous block count", 1, INT_MAX);
137 1.22 lukem break;
138 1.22 lukem
139 1.22 lukem case 'd':
140 1.22 lukem rotdelay = getnum(optarg,
141 1.22 lukem "rotational delay between contiguous blocks",
142 1.22 lukem 0, INT_MAX);
143 1.22 lukem break;
144 1.22 lukem
145 1.22 lukem case 'e':
146 1.22 lukem maxbpg = getnum(optarg,
147 1.22 lukem "maximum blocks per file in a cylinder group",
148 1.22 lukem 1, INT_MAX);
149 1.22 lukem break;
150 1.22 lukem
151 1.24 lukem case 'g':
152 1.24 lukem avgfilesize = getnum(optarg,
153 1.24 lukem "average file size", 1, INT_MAX);
154 1.24 lukem break;
155 1.24 lukem
156 1.24 lukem case 'h':
157 1.24 lukem avgfpdir = getnum(optarg,
158 1.24 lukem "expected number of files per directory",
159 1.24 lukem 1, INT_MAX);
160 1.24 lukem break;
161 1.22 lukem
162 1.22 lukem case 'm':
163 1.22 lukem minfree = getnum(optarg,
164 1.22 lukem "minimum percentage of free space", 0, 99);
165 1.22 lukem break;
166 1.22 lukem
167 1.22 lukem #ifdef TUNEFS_SOFTDEP
168 1.22 lukem case 'n':
169 1.22 lukem if (strcmp(optarg, "enable") == 0)
170 1.22 lukem softdep = 1;
171 1.22 lukem else if (strcmp(optarg, "disable") == 0)
172 1.22 lukem softdep = 0;
173 1.22 lukem else {
174 1.22 lukem errx(10, "bad soft dependencies "
175 1.22 lukem "(options are `enable' or `disable')");
176 1.22 lukem }
177 1.22 lukem break;
178 1.20 fvdl #endif
179 1.1 cgd
180 1.22 lukem case 'o':
181 1.22 lukem if (strcmp(optarg, chg[FS_OPTSPACE]) == 0)
182 1.22 lukem optim = FS_OPTSPACE;
183 1.22 lukem else if (strcmp(optarg, chg[FS_OPTTIME]) == 0)
184 1.22 lukem optim = FS_OPTTIME;
185 1.22 lukem else
186 1.22 lukem errx(10,
187 1.22 lukem "bad %s (options are `space' or `time')",
188 1.22 lukem "optimization preference");
189 1.22 lukem break;
190 1.22 lukem
191 1.23 lukem case 'k':
192 1.23 lukem case 't': /* for compatibility with old syntax */
193 1.22 lukem trackskew = getnum(optarg,
194 1.22 lukem "track skew in sectors", 0, INT_MAX);
195 1.22 lukem break;
196 1.22 lukem
197 1.22 lukem default:
198 1.22 lukem usage();
199 1.22 lukem }
200 1.22 lukem }
201 1.22 lukem argc -= optind;
202 1.22 lukem argv += optind;
203 1.22 lukem if (argc != 1)
204 1.6 cgd usage();
205 1.22 lukem
206 1.22 lukem special = argv[0];
207 1.1 cgd fs = getfsfile(special);
208 1.1 cgd if (fs)
209 1.1 cgd special = fs->fs_spec;
210 1.22 lukem again:
211 1.1 cgd if (stat(special, &st) < 0) {
212 1.22 lukem if (!Fflag && *special != '/') {
213 1.1 cgd if (*special == 'r')
214 1.1 cgd special++;
215 1.16 mycroft (void)snprintf(device, sizeof(device), "%s/%s",
216 1.16 mycroft _PATH_DEV, special);
217 1.1 cgd special = device;
218 1.1 cgd goto again;
219 1.1 cgd }
220 1.6 cgd err(1, "%s", special);
221 1.1 cgd }
222 1.22 lukem if (Fflag) {
223 1.22 lukem if (!S_ISREG(st.st_mode))
224 1.22 lukem errx(10, "%s: not a regular file", special);
225 1.22 lukem } else if (!S_ISBLK(st.st_mode) && !S_ISCHR(st.st_mode))
226 1.8 mycroft errx(10, "%s: not a block or character device", special);
227 1.1 cgd getsb(&sblock, special);
228 1.22 lukem
229 1.23 lukem #define CHANGEVAL(old, new, type, suffix) do \
230 1.23 lukem if ((new) != -1) { \
231 1.23 lukem if ((new) == (old)) \
232 1.23 lukem warnx("%s remains unchanged at %d%s", \
233 1.23 lukem (type), (old), (suffix)); \
234 1.23 lukem else { \
235 1.23 lukem warnx("%s changes from %d%s to %d%s", \
236 1.23 lukem (type), (old), (suffix), (new), (suffix)); \
237 1.23 lukem (old) = (new); \
238 1.23 lukem } \
239 1.23 lukem } while (/* CONSTCOND */0)
240 1.23 lukem
241 1.23 lukem CHANGEVAL(sblock.fs_maxcontig, maxcontig,
242 1.23 lukem "maximum contiguous block count", "");
243 1.23 lukem CHANGEVAL(sblock.fs_rotdelay, rotdelay,
244 1.23 lukem "rotational delay between contiguous blocks", "ms");
245 1.23 lukem CHANGEVAL(sblock.fs_maxbpg, maxbpg,
246 1.23 lukem "maximum blocks per file in a cylinder group", "");
247 1.23 lukem CHANGEVAL(sblock.fs_minfree, minfree,
248 1.23 lukem "minimum percentage of free space", "%");
249 1.22 lukem if (minfree != -1) {
250 1.22 lukem if (minfree >= MINFREE &&
251 1.22 lukem sblock.fs_optim == FS_OPTSPACE)
252 1.22 lukem warnx(OPTWARN, "time", ">=", MINFREE);
253 1.22 lukem if (minfree < MINFREE &&
254 1.22 lukem sblock.fs_optim == FS_OPTTIME)
255 1.22 lukem warnx(OPTWARN, "space", "<", MINFREE);
256 1.22 lukem }
257 1.20 fvdl #ifdef TUNEFS_SOFTDEP
258 1.22 lukem if (softdep == 1) {
259 1.22 lukem sblock.fs_flags |= FS_DOSOFTDEP;
260 1.22 lukem warnx("soft dependencies set");
261 1.22 lukem } else if (softdep == 0) {
262 1.22 lukem sblock.fs_flags &= ~FS_DOSOFTDEP;
263 1.22 lukem warnx("soft dependencies cleared");
264 1.22 lukem }
265 1.20 fvdl #endif
266 1.22 lukem if (optim != -1) {
267 1.22 lukem if (sblock.fs_optim == optim) {
268 1.22 lukem warnx("%s remains unchanged as %s",
269 1.22 lukem "optimization preference",
270 1.22 lukem chg[optim]);
271 1.22 lukem } else {
272 1.22 lukem warnx("%s changes from %s to %s",
273 1.22 lukem "optimization preference",
274 1.22 lukem chg[sblock.fs_optim], chg[optim]);
275 1.22 lukem sblock.fs_optim = optim;
276 1.22 lukem if (sblock.fs_minfree >= MINFREE &&
277 1.22 lukem optim == FS_OPTSPACE)
278 1.22 lukem warnx(OPTWARN, "time", ">=", MINFREE);
279 1.22 lukem if (sblock.fs_minfree < MINFREE &&
280 1.22 lukem optim == FS_OPTTIME)
281 1.22 lukem warnx(OPTWARN, "space", "<", MINFREE);
282 1.22 lukem }
283 1.22 lukem }
284 1.23 lukem CHANGEVAL(sblock.fs_trackskew, trackskew,
285 1.23 lukem "track skew in sectors", "");
286 1.24 lukem CHANGEVAL(sblock.fs_avgfilesize, avgfilesize,
287 1.24 lukem "average file size", "");
288 1.24 lukem CHANGEVAL(sblock.fs_avgfpdir, avgfpdir,
289 1.24 lukem "expected number of files per directory", "");
290 1.1 cgd
291 1.12 lukem if (Nflag) {
292 1.22 lukem fprintf(stdout, "tunefs: current settings of %s\n", special);
293 1.12 lukem fprintf(stdout, "\tmaximum contiguous block count %d\n",
294 1.12 lukem sblock.fs_maxcontig);
295 1.12 lukem fprintf(stdout,
296 1.12 lukem "\trotational delay between contiguous blocks %dms\n",
297 1.12 lukem sblock.fs_rotdelay);
298 1.12 lukem fprintf(stdout,
299 1.12 lukem "\tmaximum blocks per file in a cylinder group %d\n",
300 1.12 lukem sblock.fs_maxbpg);
301 1.12 lukem fprintf(stdout, "\tminimum percentage of free space %d%%\n",
302 1.12 lukem sblock.fs_minfree);
303 1.20 fvdl #ifdef TUNEFS_SOFTDEP
304 1.19 fvdl fprintf(stdout, "\tsoft dependencies: %s\n",
305 1.19 fvdl (sblock.fs_flags & FS_DOSOFTDEP) ? "on" : "off");
306 1.20 fvdl #endif
307 1.12 lukem fprintf(stdout, "\toptimization preference: %s\n",
308 1.12 lukem chg[sblock.fs_optim]);
309 1.24 lukem fprintf(stdout, "\taverage file size: %d\n",
310 1.24 lukem sblock.fs_avgfilesize);
311 1.24 lukem fprintf(stdout,
312 1.24 lukem "\texpected number of files per directory: %d\n",
313 1.24 lukem sblock.fs_avgfpdir);
314 1.12 lukem fprintf(stdout, "\ttrack skew %d sectors\n",
315 1.23 lukem sblock.fs_trackskew);
316 1.12 lukem fprintf(stdout, "tunefs: no changes made\n");
317 1.12 lukem exit(0);
318 1.12 lukem }
319 1.22 lukem
320 1.12 lukem fi = open(special, 1);
321 1.12 lukem if (fi < 0)
322 1.12 lukem err(3, "cannot open %s for writing", special);
323 1.13 bouyer memcpy(buf, (char *)&sblock, SBSIZE);
324 1.13 bouyer if (needswap)
325 1.21 lukem ffs_sb_swap((struct fs*)buf, (struct fs*)buf);
326 1.13 bouyer bwrite((daddr_t)SBOFF / dev_bsize, buf, SBSIZE);
327 1.1 cgd if (Aflag)
328 1.1 cgd for (i = 0; i < sblock.fs_ncg; i++)
329 1.1 cgd bwrite(fsbtodb(&sblock, cgsblock(&sblock, i)),
330 1.13 bouyer buf, SBSIZE);
331 1.1 cgd close(fi);
332 1.1 cgd exit(0);
333 1.6 cgd }
334 1.6 cgd
335 1.22 lukem static int
336 1.22 lukem getnum(const char *num, const char *desc, int min, int max)
337 1.6 cgd {
338 1.22 lukem long n;
339 1.22 lukem char *ep;
340 1.8 mycroft
341 1.22 lukem n = strtol(num, &ep, 10);
342 1.22 lukem if (ep[0] != '\0')
343 1.22 lukem errx(1, "Invalid number `%s' for %s", num, desc);
344 1.22 lukem if ((int) n < min)
345 1.22 lukem errx(1, "%s `%s' too small (minimum is %d)", desc, num, min);
346 1.22 lukem if ((int) n > max)
347 1.22 lukem errx(1, "%s `%s' too large (maximum is %d)", desc, num, max);
348 1.22 lukem return ((int)n);
349 1.22 lukem }
350 1.22 lukem
351 1.22 lukem static void
352 1.22 lukem usage(void)
353 1.22 lukem {
354 1.22 lukem
355 1.22 lukem fprintf(stderr, "Usage: tunefs [-AFN] tuneup-options special-device\n");
356 1.1 cgd fprintf(stderr, "where tuneup-options are:\n");
357 1.23 lukem fprintf(stderr, "\t-a maximum contiguous blocks\n");
358 1.12 lukem fprintf(stderr, "\t-d rotational delay between contiguous blocks\n");
359 1.1 cgd fprintf(stderr, "\t-e maximum blocks per file in a cylinder group\n");
360 1.24 lukem fprintf(stderr, "\t-g average file size\n");
361 1.24 lukem fprintf(stderr, "\t-h expected number of files per directory\n");
362 1.23 lukem fprintf(stderr, "\t-k track skew in sectors\n");
363 1.1 cgd fprintf(stderr, "\t-m minimum percentage of free space\n");
364 1.20 fvdl #ifdef TUNEFS_SOFTDEP
365 1.19 fvdl fprintf(stderr, "\t-n soft dependencies (`enable' or `disable')\n");
366 1.20 fvdl #endif
367 1.23 lukem fprintf(stderr, "\t-o optimization preference (`space' or `time')\n");
368 1.8 mycroft exit(2);
369 1.1 cgd }
370 1.1 cgd
371 1.22 lukem static void
372 1.22 lukem getsb(struct fs *fs, const char *file)
373 1.1 cgd {
374 1.1 cgd
375 1.12 lukem fi = open(file, 0);
376 1.6 cgd if (fi < 0)
377 1.12 lukem err(3, "cannot open %s for reading", file);
378 1.6 cgd if (bread((daddr_t)SBOFF, (char *)fs, SBSIZE))
379 1.8 mycroft err(4, "%s: bad super block", file);
380 1.17 ross if (fs->fs_magic != FS_MAGIC) {
381 1.13 bouyer if (fs->fs_magic == bswap32(FS_MAGIC)) {
382 1.22 lukem warnx("%s: swapping byte order", file);
383 1.13 bouyer needswap = 1;
384 1.21 lukem ffs_sb_swap(fs, fs);
385 1.13 bouyer } else
386 1.13 bouyer err(5, "%s: bad magic number", file);
387 1.17 ross }
388 1.1 cgd dev_bsize = fs->fs_fsize / fsbtodb(fs, 1);
389 1.12 lukem close(fi);
390 1.1 cgd }
391 1.1 cgd
392 1.22 lukem static void
393 1.22 lukem bwrite(daddr_t blk, char *buffer, int size)
394 1.1 cgd {
395 1.8 mycroft
396 1.8 mycroft if (lseek(fi, (off_t)blk * dev_bsize, SEEK_SET) < 0)
397 1.8 mycroft err(6, "FS SEEK");
398 1.22 lukem if (write(fi, buffer, size) != size)
399 1.8 mycroft err(7, "FS WRITE");
400 1.1 cgd }
401 1.1 cgd
402 1.22 lukem static int
403 1.22 lukem bread(daddr_t bno, char *buffer, int cnt)
404 1.1 cgd {
405 1.8 mycroft int i;
406 1.1 cgd
407 1.8 mycroft if (lseek(fi, (off_t)bno * dev_bsize, SEEK_SET) < 0)
408 1.1 cgd return(1);
409 1.22 lukem if ((i = read(fi, buffer, cnt)) != cnt) {
410 1.1 cgd for(i=0; i<sblock.fs_bsize; i++)
411 1.1 cgd buf[i] = 0;
412 1.1 cgd return (1);
413 1.1 cgd }
414 1.1 cgd return (0);
415 1.1 cgd }
416