1 /*- 2 * SPDX-License-Identifier: BSD-3-Clause 3 * 4 * Copyright (c) 2002 Networks Associates Technology, Inc. 5 * All rights reserved. 6 * 7 * This software was developed for the FreeBSD Project by Marshall 8 * Kirk McKusick and Network Associates Laboratories, the Security 9 * Research Division of Network Associates, Inc. under DARPA/SPAWAR 10 * contract N66001-01-C-8035 ("CBOSS"), as part of the DARPA CHATS 11 * research program. 12 * 13 * Copyright (c) 1983, 1989, 1993, 1994 14 * The Regents of the University of California. All rights reserved. 15 * 16 * Redistribution and use in source and binary forms, with or without 17 * modification, are permitted provided that the following conditions 18 * are met: 19 * 1. Redistributions of source code must retain the above copyright 20 * notice, this list of conditions and the following disclaimer. 21 * 2. Redistributions in binary form must reproduce the above copyright 22 * notice, this list of conditions and the following disclaimer in the 23 * documentation and/or other materials provided with the distribution. 24 * 3. Neither the name of the University nor the names of its contributors 25 * may be used to endorse or promote products derived from this software 26 * without specific prior written permission. 27 * 28 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 29 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 30 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 31 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 32 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 33 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 34 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 35 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 36 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 37 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 38 * SUCH DAMAGE. 39 */ 40 41 /* 42 * newfs: friendly front end to mkfs 43 */ 44 #include <sys/param.h> 45 #include <sys/stat.h> 46 #include <sys/disk.h> 47 #include <sys/disklabel.h> 48 #include <sys/file.h> 49 #include <sys/mount.h> 50 51 #include <ufs/ufs/dir.h> 52 #include <ufs/ufs/dinode.h> 53 #include <ufs/ffs/fs.h> 54 #include <ufs/ufs/extattr.h> 55 #include <ufs/ufs/quota.h> 56 #include <ufs/ufs/ufsmount.h> 57 58 #include <ctype.h> 59 #include <err.h> 60 #include <errno.h> 61 #include <inttypes.h> 62 #include <paths.h> 63 #include <stdarg.h> 64 #include <stdio.h> 65 #include <stdlib.h> 66 #include <string.h> 67 #include <syslog.h> 68 #include <unistd.h> 69 70 #include <libutil.h> 71 72 #include "newfs.h" 73 74 int Eflag; /* Erase previous disk contents */ 75 int Lflag; /* add a volume label */ 76 int Nflag; /* run without writing file system */ 77 int Oflag = 2; /* file system format (1 => UFS1, 2 => UFS2) */ 78 int Rflag; /* regression test */ 79 int Uflag = -1; /* enable soft updates for file system */ 80 int jflag; /* enable soft updates journaling for filesys */ 81 int Xflag = 0; /* exit in middle of newfs for testing */ 82 int Jflag; /* enable gjournal for file system */ 83 int lflag; /* enable multilabel for file system */ 84 int nflag; /* do not create .snap directory */ 85 int tflag; /* enable TRIM */ 86 intmax_t fssize; /* file system size */ 87 off_t mediasize; /* device size */ 88 int sectorsize; /* bytes/sector */ 89 int realsectorsize; /* bytes/sector in hardware */ 90 int fsize = 0; /* fragment size */ 91 int bsize = 0; /* block size */ 92 int maxbsize = 0; /* maximum clustering */ 93 int maxblkspercg = MAXBLKSPERCG; /* maximum blocks per cylinder group */ 94 int minfree = MINFREE; /* free space threshold */ 95 int metaspace; /* space held for metadata blocks */ 96 int opt = DEFAULTOPT; /* optimization preference (space or time) */ 97 int density; /* number of bytes per inode */ 98 int maxcontig = 0; /* max contiguous blocks to allocate */ 99 int maxbpg; /* maximum blocks per file in a cyl group */ 100 int avgfilesize = AVFILESIZ;/* expected average file size */ 101 int avgfilesperdir = AFPDIR;/* expected number of files per directory */ 102 u_char *volumelabel = NULL; /* volume label for filesystem */ 103 struct uufsd disk; /* libufs disk structure */ 104 105 static char device[MAXPATHLEN]; 106 static u_char bootarea[BBSIZE]; 107 static int is_file; /* work on a file, not a device */ 108 static char *disktype; 109 110 static void getfssize(intmax_t *, const char *p, intmax_t, intmax_t); 111 static struct disklabel *getdisklabel(void); 112 static void usage(void) __dead2; 113 static int expand_number_int(const char *buf, int *num); 114 115 ufs2_daddr_t part_ofs; /* partition offset in blocks, used with files */ 116 117 int 118 main(int argc, char *argv[]) 119 { 120 struct partition *pp; 121 struct disklabel *lp; 122 struct stat st; 123 char *cp, *special; 124 intmax_t reserved; 125 int ch, rval; 126 size_t i; 127 char part_name; /* partition name, default to full disk */ 128 129 part_name = 'c'; 130 reserved = 0; 131 while ((ch = getopt(argc, argv, 132 "EJL:NO:RS:T:UXa:b:c:d:e:f:g:h:i:jk:lm:no:p:r:s:tu")) != -1) 133 switch (ch) { 134 case 'E': 135 Eflag = 1; 136 break; 137 case 'J': 138 Jflag = 1; 139 break; 140 case 'L': 141 volumelabel = optarg; 142 for (i = 0; isalnum(volumelabel[i]) || 143 volumelabel[i] == '_' || volumelabel[i] == '-'; 144 i++) 145 continue; 146 if (volumelabel[i] != '\0') { 147 errx(1, "bad volume label. Valid characters " 148 "are alphanumerics, dashes, and underscores."); 149 } 150 if (strlen(volumelabel) >= MAXVOLLEN) { 151 errx(1, "bad volume label. Length is longer than %d.", 152 MAXVOLLEN); 153 } 154 Lflag = 1; 155 break; 156 case 'N': 157 Nflag = 1; 158 break; 159 case 'O': 160 if ((Oflag = atoi(optarg)) < 1 || Oflag > 2) 161 errx(1, "%s: bad file system format value", 162 optarg); 163 break; 164 case 'R': 165 Rflag = 1; 166 break; 167 case 'S': 168 rval = expand_number_int(optarg, §orsize); 169 if (rval < 0 || sectorsize <= 0) 170 errx(1, "%s: bad sector size", optarg); 171 break; 172 case 'T': 173 disktype = optarg; 174 break; 175 case 'j': 176 jflag = 1; 177 /* fall through to enable soft updates */ 178 /* FALLTHROUGH */ 179 case 'U': 180 Uflag = 1; 181 break; 182 case 'u': 183 Uflag = 0; 184 break; 185 case 'X': 186 Xflag++; 187 break; 188 case 'a': 189 rval = expand_number_int(optarg, &maxcontig); 190 if (rval < 0 || maxcontig <= 0) 191 errx(1, "%s: bad maximum contiguous blocks", 192 optarg); 193 break; 194 case 'b': 195 rval = expand_number_int(optarg, &bsize); 196 if (rval < 0) 197 errx(1, "%s: bad block size", 198 optarg); 199 if (bsize < MINBSIZE) 200 errx(1, "%s: block size too small, min is %d", 201 optarg, MINBSIZE); 202 if (bsize > MAXBSIZE) 203 errx(1, "%s: block size too large, max is %d", 204 optarg, MAXBSIZE); 205 break; 206 case 'c': 207 rval = expand_number_int(optarg, &maxblkspercg); 208 if (rval < 0 || maxblkspercg <= 0) 209 errx(1, "%s: bad blocks per cylinder group", 210 optarg); 211 break; 212 case 'd': 213 rval = expand_number_int(optarg, &maxbsize); 214 if (rval < 0 || maxbsize < MINBSIZE) 215 errx(1, "%s: bad extent block size", optarg); 216 break; 217 case 'e': 218 rval = expand_number_int(optarg, &maxbpg); 219 if (rval < 0 || maxbpg <= 0) 220 errx(1, "%s: bad blocks per file in a cylinder group", 221 optarg); 222 break; 223 case 'f': 224 rval = expand_number_int(optarg, &fsize); 225 if (rval < 0 || fsize <= 0) 226 errx(1, "%s: bad fragment size", optarg); 227 break; 228 case 'g': 229 rval = expand_number_int(optarg, &avgfilesize); 230 if (rval < 0 || avgfilesize <= 0) 231 errx(1, "%s: bad average file size", optarg); 232 break; 233 case 'h': 234 rval = expand_number_int(optarg, &avgfilesperdir); 235 if (rval < 0 || avgfilesperdir <= 0) 236 errx(1, "%s: bad average files per dir", optarg); 237 break; 238 case 'i': 239 rval = expand_number_int(optarg, &density); 240 if (rval < 0 || density <= 0) 241 errx(1, "%s: bad bytes per inode", optarg); 242 break; 243 case 'l': 244 lflag = 1; 245 break; 246 case 'k': 247 if ((metaspace = atoi(optarg)) < 0) 248 errx(1, "%s: bad metadata space %%", optarg); 249 if (metaspace == 0) 250 /* force to stay zero in mkfs */ 251 metaspace = -1; 252 break; 253 case 'm': 254 if ((minfree = atoi(optarg)) < 0 || minfree > 99) 255 errx(1, "%s: bad free space %%", optarg); 256 break; 257 case 'n': 258 nflag = 1; 259 break; 260 case 'o': 261 if (strcmp(optarg, "space") == 0) 262 opt = FS_OPTSPACE; 263 else if (strcmp(optarg, "time") == 0) 264 opt = FS_OPTTIME; 265 else 266 errx(1, 267 "%s: unknown optimization preference: use `space' or `time'", 268 optarg); 269 break; 270 case 'r': 271 errno = 0; 272 reserved = strtoimax(optarg, &cp, 0); 273 if (errno != 0 || cp == optarg || 274 *cp != '\0' || reserved < 0) 275 errx(1, "%s: bad reserved size", optarg); 276 break; 277 case 'p': 278 is_file = 1; 279 part_name = optarg[0]; 280 break; 281 282 case 's': 283 errno = 0; 284 fssize = strtoimax(optarg, &cp, 0); 285 if (errno != 0 || cp == optarg || 286 *cp != '\0' || fssize < 0) 287 errx(1, "%s: bad file system size", optarg); 288 break; 289 case 't': 290 tflag = 1; 291 break; 292 case '?': 293 default: 294 usage(); 295 } 296 argc -= optind; 297 argv += optind; 298 299 if (argc != 1) 300 usage(); 301 302 special = argv[0]; 303 if (!special[0]) 304 err(1, "empty file/special name"); 305 cp = strrchr(special, '/'); 306 if (cp == NULL) { 307 /* 308 * No path prefix; try prefixing _PATH_DEV. 309 */ 310 snprintf(device, sizeof(device), "%s%s", _PATH_DEV, special); 311 special = device; 312 } 313 314 if (is_file) { 315 /* bypass ufs_disk_fillout_blank */ 316 bzero( &disk, sizeof(disk)); 317 disk.d_bsize = 1; 318 disk.d_name = special; 319 disk.d_fd = open(special, O_RDONLY); 320 if (disk.d_fd < 0 || 321 (!Nflag && ufs_disk_write(&disk) == -1)) 322 errx(1, "%s: ", special); 323 } else if (ufs_disk_fillout_blank(&disk, special) == -1 || 324 (!Nflag && ufs_disk_write(&disk) == -1)) { 325 if (disk.d_error != NULL) 326 errx(1, "%s: %s", special, disk.d_error); 327 else 328 err(1, "%s", special); 329 } 330 if (fstat(disk.d_fd, &st) < 0) 331 err(1, "%s", special); 332 if ((st.st_mode & S_IFMT) != S_IFCHR) { 333 is_file = 1; /* assume it is a file */ 334 if (sectorsize == 0) 335 sectorsize = 512; 336 mediasize = st.st_size; 337 /* set fssize from the partition */ 338 } else { 339 if (sectorsize == 0) 340 if (ioctl(disk.d_fd, DIOCGSECTORSIZE, §orsize) == -1) 341 sectorsize = 0; /* back out on error for safety */ 342 if (sectorsize && ioctl(disk.d_fd, DIOCGMEDIASIZE, &mediasize) != -1) 343 getfssize(&fssize, special, mediasize / sectorsize, reserved); 344 } 345 pp = NULL; 346 lp = getdisklabel(); 347 /* 348 * set filesystem size from file size when a bsdlabel isn't present 349 */ 350 if (lp == NULL && is_file) 351 fssize = mediasize / sectorsize; 352 if (lp != NULL) { 353 if (!is_file) /* already set for files */ 354 part_name = special[strlen(special) - 1]; 355 if ((part_name < 'a' || part_name - 'a' >= MAXPARTITIONS) && 356 !isdigit(part_name)) 357 errx(1, "%s: can't figure out file system partition", 358 special); 359 cp = &part_name; 360 if (isdigit(*cp)) 361 pp = &lp->d_partitions[RAW_PART]; 362 else 363 pp = &lp->d_partitions[*cp - 'a']; 364 if (pp->p_size == 0) 365 errx(1, "%s: `%c' partition is unavailable", 366 special, *cp); 367 if (pp->p_fstype == FS_BOOT) 368 errx(1, "%s: `%c' partition overlaps boot program", 369 special, *cp); 370 getfssize(&fssize, special, pp->p_size, reserved); 371 if (sectorsize == 0) 372 sectorsize = lp->d_secsize; 373 if (fsize == 0) 374 fsize = pp->p_fsize; 375 if (bsize == 0) 376 bsize = pp->p_frag * pp->p_fsize; 377 if (is_file) 378 part_ofs = pp->p_offset; 379 } 380 if (sectorsize <= 0) 381 errx(1, "%s: no default sector size", special); 382 if (fsize <= 0) 383 fsize = MAX(DFL_FRAGSIZE, sectorsize); 384 if (bsize <= 0) 385 bsize = MIN(DFL_BLKSIZE, 8 * fsize); 386 if (minfree < MINFREE && opt != FS_OPTSPACE) { 387 fprintf(stderr, "Warning: changing optimization to space "); 388 fprintf(stderr, "because minfree is less than %d%%\n", MINFREE); 389 opt = FS_OPTSPACE; 390 } 391 /* Use soft updates by default for UFS2 and above */ 392 if (Uflag < 0) 393 Uflag = Oflag > 1; 394 realsectorsize = sectorsize; 395 if (sectorsize != DEV_BSIZE) { /* XXX */ 396 int secperblk = sectorsize / DEV_BSIZE; 397 398 sectorsize = DEV_BSIZE; 399 fssize *= secperblk; 400 if (pp != NULL) 401 pp->p_size *= secperblk; 402 } 403 mkfs(pp, special); 404 ufs_disk_close(&disk); 405 if (!jflag) 406 exit(0); 407 if (execlp("tunefs", "newfs", "-j", "enable", special, NULL) < 0) 408 err(1, "Cannot enable soft updates journaling, tunefs"); 409 /* NOT REACHED */ 410 } 411 412 void 413 getfssize(intmax_t *fsz, const char *s, intmax_t disksize, intmax_t reserved) 414 { 415 intmax_t available; 416 417 available = disksize - reserved; 418 if (available <= 0) 419 errx(1, "%s: reserved not less than device size %jd", 420 s, disksize); 421 if (*fsz == 0) 422 *fsz = available; 423 else if (*fsz > available) 424 errx(1, "%s: maximum file system size is %jd", 425 s, available); 426 } 427 428 struct disklabel * 429 getdisklabel(void) 430 { 431 static struct disklabel lab; 432 struct disklabel *lp; 433 434 if (is_file) { 435 if (read(disk.d_fd, bootarea, BBSIZE) != BBSIZE) 436 err(4, "cannot read bootarea"); 437 if (bsd_disklabel_le_dec( 438 bootarea + (0 /* labeloffset */ + 439 1 /* labelsoffset */ * sectorsize), 440 &lab, MAXPARTITIONS)) 441 return (NULL); 442 443 lp = &lab; 444 return &lab; 445 } 446 447 if (disktype) { 448 lp = getdiskbyname(disktype); 449 if (lp != NULL) 450 return (lp); 451 } 452 return (NULL); 453 } 454 455 static void 456 usage(void) 457 { 458 fprintf(stderr, 459 "usage: %s [ -fsoptions ] special-device%s\n", 460 getprogname(), 461 " [device-type]"); 462 fprintf(stderr, "where fsoptions are:\n"); 463 fprintf(stderr, "\t-E Erase previous disk content\n"); 464 fprintf(stderr, "\t-J Enable journaling via gjournal\n"); 465 fprintf(stderr, "\t-L volume label to add to superblock\n"); 466 fprintf(stderr, 467 "\t-N do not create file system, just print out parameters\n"); 468 fprintf(stderr, "\t-O file system format: 1 => UFS1, 2 => UFS2\n"); 469 fprintf(stderr, "\t-R regression test, suppress random factors\n"); 470 fprintf(stderr, "\t-S sector size\n"); 471 fprintf(stderr, "\t-T disktype\n"); 472 fprintf(stderr, "\t-U enable soft updates\n"); 473 fprintf(stderr, "\t-a maximum contiguous blocks\n"); 474 fprintf(stderr, "\t-b block size\n"); 475 fprintf(stderr, "\t-c blocks per cylinders group\n"); 476 fprintf(stderr, "\t-d maximum extent size\n"); 477 fprintf(stderr, "\t-e maximum blocks per file in a cylinder group\n"); 478 fprintf(stderr, "\t-f frag size\n"); 479 fprintf(stderr, "\t-g average file size\n"); 480 fprintf(stderr, "\t-h average files per directory\n"); 481 fprintf(stderr, "\t-i number of bytes per inode\n"); 482 fprintf(stderr, "\t-j enable soft updates journaling\n"); 483 fprintf(stderr, "\t-k space to hold for metadata blocks\n"); 484 fprintf(stderr, "\t-l enable multilabel MAC\n"); 485 fprintf(stderr, "\t-n do not create .snap directory\n"); 486 fprintf(stderr, "\t-m minimum free space %%\n"); 487 fprintf(stderr, "\t-o optimization preference (`space' or `time')\n"); 488 fprintf(stderr, "\t-p partition name (a..h)\n"); 489 fprintf(stderr, "\t-r reserved sectors at the end of device\n"); 490 fprintf(stderr, "\t-s file system size (sectors)\n"); 491 fprintf(stderr, "\t-t enable TRIM\n"); 492 exit(1); 493 } 494 495 static int 496 expand_number_int(const char *buf, int *num) 497 { 498 int64_t num64; 499 int rval; 500 501 rval = expand_number(buf, &num64); 502 if (rval < 0) 503 return (rval); 504 if (num64 > INT_MAX || num64 < INT_MIN) { 505 errno = ERANGE; 506 return (-1); 507 } 508 *num = (int)num64; 509 return (0); 510 } 511