lfs_vfsops.c revision 1.169 1 /* $NetBSD: lfs_vfsops.c,v 1.169 2005/04/01 21:59:46 perseant Exp $ */
2
3 /*-
4 * Copyright (c) 1999, 2000, 2001, 2002, 2003 The NetBSD Foundation, Inc.
5 * All rights reserved.
6 *
7 * This code is derived from software contributed to The NetBSD Foundation
8 * by Konrad E. Schroder <perseant (at) hhhh.org>.
9 *
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 * 3. All advertising materials mentioning features or use of this software
19 * must display the following acknowledgement:
20 * This product includes software developed by the NetBSD
21 * Foundation, Inc. and its contributors.
22 * 4. Neither the name of The NetBSD Foundation nor the names of its
23 * contributors may be used to endorse or promote products derived
24 * from this software without specific prior written permission.
25 *
26 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
27 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
28 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
29 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
30 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
31 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
32 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
33 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
34 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
35 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
36 * POSSIBILITY OF SUCH DAMAGE.
37 */
38 /*-
39 * Copyright (c) 1989, 1991, 1993, 1994
40 * The Regents of the University of California. All rights reserved.
41 *
42 * Redistribution and use in source and binary forms, with or without
43 * modification, are permitted provided that the following conditions
44 * are met:
45 * 1. Redistributions of source code must retain the above copyright
46 * notice, this list of conditions and the following disclaimer.
47 * 2. Redistributions in binary form must reproduce the above copyright
48 * notice, this list of conditions and the following disclaimer in the
49 * documentation and/or other materials provided with the distribution.
50 * 3. Neither the name of the University nor the names of its contributors
51 * may be used to endorse or promote products derived from this software
52 * without specific prior written permission.
53 *
54 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
55 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
56 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
57 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
58 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
59 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
60 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
61 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
62 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
63 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
64 * SUCH DAMAGE.
65 *
66 * @(#)lfs_vfsops.c 8.20 (Berkeley) 6/10/95
67 */
68
69 #include <sys/cdefs.h>
70 __KERNEL_RCSID(0, "$NetBSD: lfs_vfsops.c,v 1.169 2005/04/01 21:59:46 perseant Exp $");
71
72 #if defined(_KERNEL_OPT)
73 #include "opt_quota.h"
74 #endif
75
76 #include <sys/param.h>
77 #include <sys/systm.h>
78 #include <sys/namei.h>
79 #include <sys/proc.h>
80 #include <sys/kernel.h>
81 #include <sys/vnode.h>
82 #include <sys/mount.h>
83 #include <sys/kthread.h>
84 #include <sys/buf.h>
85 #include <sys/device.h>
86 #include <sys/mbuf.h>
87 #include <sys/file.h>
88 #include <sys/disklabel.h>
89 #include <sys/ioctl.h>
90 #include <sys/errno.h>
91 #include <sys/malloc.h>
92 #include <sys/pool.h>
93 #include <sys/socket.h>
94 #include <sys/syslog.h>
95 #include <uvm/uvm_extern.h>
96 #include <sys/sysctl.h>
97 #include <sys/conf.h>
98
99 #include <miscfs/specfs/specdev.h>
100
101 #include <ufs/ufs/quota.h>
102 #include <ufs/ufs/inode.h>
103 #include <ufs/ufs/ufsmount.h>
104 #include <ufs/ufs/ufs_extern.h>
105
106 #include <uvm/uvm.h>
107 #include <uvm/uvm_stat.h>
108 #include <uvm/uvm_pager.h>
109 #include <uvm/uvm_pdaemon.h>
110
111 #include <ufs/lfs/lfs.h>
112 #include <ufs/lfs/lfs_extern.h>
113
114 #include <miscfs/genfs/genfs.h>
115 #include <miscfs/genfs/genfs_node.h>
116
117 static int lfs_gop_write(struct vnode *, struct vm_page **, int, int);
118 static boolean_t lfs_issequential_hole(const struct ufsmount *,
119 daddr_t, daddr_t);
120
121 static int lfs_mountfs(struct vnode *, struct mount *, struct proc *);
122 static void warn_ifile_size(struct lfs *);
123 static daddr_t check_segsum(struct lfs *, daddr_t, u_int64_t,
124 struct ucred *, int, int *, struct proc *);
125
126 extern const struct vnodeopv_desc lfs_vnodeop_opv_desc;
127 extern const struct vnodeopv_desc lfs_specop_opv_desc;
128 extern const struct vnodeopv_desc lfs_fifoop_opv_desc;
129
130 pid_t lfs_writer_daemon = 0;
131 int lfs_do_flush = 0;
132 int lfs_do_rfw = 0;
133
134 const struct vnodeopv_desc * const lfs_vnodeopv_descs[] = {
135 &lfs_vnodeop_opv_desc,
136 &lfs_specop_opv_desc,
137 &lfs_fifoop_opv_desc,
138 NULL,
139 };
140
141 struct vfsops lfs_vfsops = {
142 MOUNT_LFS,
143 lfs_mount,
144 ufs_start,
145 lfs_unmount,
146 ufs_root,
147 ufs_quotactl,
148 lfs_statvfs,
149 lfs_sync,
150 lfs_vget,
151 lfs_fhtovp,
152 lfs_vptofh,
153 lfs_init,
154 lfs_reinit,
155 lfs_done,
156 NULL,
157 lfs_mountroot,
158 ufs_check_export,
159 (int (*)(struct mount *, struct vnode *, struct timespec *)) eopnotsupp,
160 vfs_stdextattrctl,
161 lfs_vnodeopv_descs,
162 };
163 VFS_ATTACH(lfs_vfsops);
164
165 struct genfs_ops lfs_genfsops = {
166 lfs_gop_size,
167 ufs_gop_alloc,
168 lfs_gop_write,
169 };
170
171 /*
172 * XXX Same structure as FFS inodes? Should we share a common pool?
173 */
174 POOL_INIT(lfs_inode_pool, sizeof(struct inode), 0, 0, 0, "lfsinopl",
175 &pool_allocator_nointr);
176 POOL_INIT(lfs_dinode_pool, sizeof(struct ufs1_dinode), 0, 0, 0, "lfsdinopl",
177 &pool_allocator_nointr);
178 POOL_INIT(lfs_inoext_pool, sizeof(struct lfs_inode_ext), 8, 0, 0, "lfsinoextpl",
179 &pool_allocator_nointr);
180 POOL_INIT(lfs_lbnentry_pool, sizeof(struct lbnentry), 0, 0, 0, "lfslbnpool",
181 &pool_allocator_nointr);
182
183 /*
184 * The writer daemon. UVM keeps track of how many dirty pages we are holding
185 * in lfs_subsys_pages; the daemon flushes the filesystem when this value
186 * crosses the (user-defined) threshhold LFS_MAX_PAGES.
187 */
188 static void
189 lfs_writerd(void *arg)
190 {
191 struct mount *mp, *nmp;
192 struct lfs *fs;
193
194 lfs_writer_daemon = curproc->p_pid;
195
196 simple_lock(&lfs_subsys_lock);
197 for (;;) {
198 ltsleep(&lfs_writer_daemon, PVM | PNORELOCK, "lfswriter", 0,
199 &lfs_subsys_lock);
200
201 /*
202 * Look through the list of LFSs to see if any of them
203 * have requested pageouts.
204 */
205 simple_lock(&mountlist_slock);
206 for (mp = CIRCLEQ_FIRST(&mountlist); mp != (void *)&mountlist;
207 mp = nmp) {
208 if (vfs_busy(mp, LK_NOWAIT, &mountlist_slock)) {
209 nmp = CIRCLEQ_NEXT(mp, mnt_list);
210 continue;
211 }
212 if (strncmp(&mp->mnt_stat.f_fstypename[0], MOUNT_LFS,
213 MFSNAMELEN) == 0) {
214 fs = VFSTOUFS(mp)->um_lfs;
215 simple_lock(&fs->lfs_interlock);
216 if (fs->lfs_pdflush ||
217 !TAILQ_EMPTY(&fs->lfs_pchainhd)) {
218 DLOG((DLOG_FLUSH, "lfs_writerd: pdflush set\n"));
219 fs->lfs_pdflush = 0;
220 lfs_flush_fs(fs, 0);
221 }
222 simple_unlock(&fs->lfs_interlock);
223 }
224
225 simple_lock(&mountlist_slock);
226 nmp = CIRCLEQ_NEXT(mp, mnt_list);
227 vfs_unbusy(mp);
228 }
229 simple_unlock(&mountlist_slock);
230
231 /*
232 * If global state wants a flush, flush everything.
233 */
234 simple_lock(&lfs_subsys_lock);
235 while (lfs_do_flush || locked_queue_count > LFS_MAX_BUFS ||
236 locked_queue_bytes > LFS_MAX_BYTES ||
237 lfs_subsys_pages > LFS_MAX_PAGES) {
238
239 if (lfs_do_flush)
240 DLOG((DLOG_FLUSH, "daemon: lfs_do_flush\n"));
241 if (locked_queue_count > LFS_MAX_BUFS)
242 DLOG((DLOG_FLUSH, "daemon: lqc = %d, max %d\n",
243 locked_queue_count, LFS_MAX_BUFS));
244 if (locked_queue_bytes > LFS_MAX_BYTES)
245 DLOG((DLOG_FLUSH, "daemon: lqb = %ld, max %ld\n",
246 locked_queue_bytes, LFS_MAX_BYTES));
247 if (lfs_subsys_pages > LFS_MAX_PAGES)
248 DLOG((DLOG_FLUSH, "daemon: lssp = %d, max %d\n",
249 lfs_subsys_pages, LFS_MAX_PAGES));
250
251 lfs_flush(NULL, SEGM_WRITERD, 0);
252 lfs_do_flush = 0;
253 }
254 }
255 /* NOTREACHED */
256 }
257
258 /*
259 * Initialize the filesystem, most work done by ufs_init.
260 */
261 void
262 lfs_init()
263 {
264 #ifdef _LKM
265 malloc_type_attach(M_SEGMENT);
266 pool_init(&lfs_inode_pool, sizeof(struct inode), 0, 0, 0,
267 "lfsinopl", &pool_allocator_nointr);
268 pool_init(&lfs_dinode_pool, sizeof(struct ufs1_dinode), 0, 0, 0,
269 "lfsdinopl", &pool_allocator_nointr);
270 pool_init(&lfs_inoext_pool, sizeof(struct lfs_inode_ext), 8, 0, 0,
271 "lfsinoextpl", &pool_allocator_nointr);
272 pool_init(&lfs_lbnentry_pool, sizeof(struct lbnentry), 0, 0, 0,
273 "lfslbnpool", &pool_allocator_nointr);
274 #endif
275 ufs_init();
276
277 #ifdef DEBUG
278 memset(lfs_log, 0, sizeof(lfs_log));
279 #endif
280 simple_lock_init(&lfs_subsys_lock);
281 }
282
283 void
284 lfs_reinit()
285 {
286 ufs_reinit();
287 }
288
289 void
290 lfs_done()
291 {
292 ufs_done();
293 #ifdef _LKM
294 pool_destroy(&lfs_inode_pool);
295 pool_destroy(&lfs_dinode_pool);
296 pool_destroy(&lfs_inoext_pool);
297 malloc_type_detach(M_SEGMENT);
298 #endif
299 }
300
301 /*
302 * Called by main() when ufs is going to be mounted as root.
303 */
304 int
305 lfs_mountroot()
306 {
307 extern struct vnode *rootvp;
308 struct mount *mp;
309 struct proc *p = curproc; /* XXX */
310 int error;
311
312 if (root_device->dv_class != DV_DISK)
313 return (ENODEV);
314
315 if (rootdev == NODEV)
316 return (ENODEV);
317 if ((error = vfs_rootmountalloc(MOUNT_LFS, "root_device", &mp))) {
318 vrele(rootvp);
319 return (error);
320 }
321 if ((error = lfs_mountfs(rootvp, mp, p))) {
322 mp->mnt_op->vfs_refcount--;
323 vfs_unbusy(mp);
324 free(mp, M_MOUNT);
325 return (error);
326 }
327 simple_lock(&mountlist_slock);
328 CIRCLEQ_INSERT_TAIL(&mountlist, mp, mnt_list);
329 simple_unlock(&mountlist_slock);
330 (void)lfs_statvfs(mp, &mp->mnt_stat, p);
331 vfs_unbusy(mp);
332 setrootfstime((time_t)(VFSTOUFS(mp)->um_lfs->lfs_tstamp));
333 return (0);
334 }
335
336 /*
337 * VFS Operations.
338 *
339 * mount system call
340 */
341 int
342 lfs_mount(struct mount *mp, const char *path, void *data, struct nameidata *ndp, struct proc *p)
343 {
344 struct vnode *devvp;
345 struct ufs_args args;
346 struct ufsmount *ump = NULL;
347 struct lfs *fs = NULL; /* LFS */
348 int error, update;
349 mode_t accessmode;
350
351 if (mp->mnt_flag & MNT_GETARGS) {
352 ump = VFSTOUFS(mp);
353 if (ump == NULL)
354 return EIO;
355 args.fspec = NULL;
356 vfs_showexport(mp, &args.export, &ump->um_export);
357 return copyout(&args, data, sizeof(args));
358 }
359 error = copyin(data, &args, sizeof (struct ufs_args));
360 if (error)
361 return (error);
362
363 update = mp->mnt_flag & MNT_UPDATE;
364
365 /* Check arguments */
366 if (args.fspec != NULL) {
367 /*
368 * Look up the name and verify that it's sane.
369 */
370 NDINIT(ndp, LOOKUP, FOLLOW, UIO_USERSPACE, args.fspec, p);
371 if ((error = namei(ndp)) != 0)
372 return (error);
373 devvp = ndp->ni_vp;
374
375 if (!update) {
376 /*
377 * Be sure this is a valid block device
378 */
379 if (devvp->v_type != VBLK)
380 error = ENOTBLK;
381 else if (bdevsw_lookup(devvp->v_rdev) == NULL)
382 error = ENXIO;
383 } else {
384 /*
385 * Be sure we're still naming the same device
386 * used for our initial mount
387 */
388 ump = VFSTOUFS(mp);
389 if (devvp != ump->um_devvp)
390 error = EINVAL;
391 }
392 } else {
393 if (!update) {
394 /* New mounts must have a filename for the device */
395 return (EINVAL);
396 } else {
397 /* Use the extant mount */
398 ump = VFSTOUFS(mp);
399 devvp = ump->um_devvp;
400 vref(devvp);
401 }
402 }
403
404
405 /*
406 * If mount by non-root, then verify that user has necessary
407 * permissions on the device.
408 */
409 if (error == 0 && p->p_ucred->cr_uid != 0) {
410 accessmode = VREAD;
411 if (update ?
412 (mp->mnt_iflag & IMNT_WANTRDWR) != 0 :
413 (mp->mnt_flag & MNT_RDONLY) == 0)
414 accessmode |= VWRITE;
415 vn_lock(devvp, LK_EXCLUSIVE | LK_RETRY);
416 error = VOP_ACCESS(devvp, accessmode, p->p_ucred, p);
417 VOP_UNLOCK(devvp, 0);
418 }
419
420 if (error) {
421 vrele(devvp);
422 return (error);
423 }
424
425 if (!update) {
426 int flags;
427
428 /*
429 * Disallow multiple mounts of the same device.
430 * Disallow mounting of a device that is currently in use
431 * (except for root, which might share swap device for
432 * miniroot).
433 */
434 error = vfs_mountedon(devvp);
435 if (error)
436 goto fail;
437 if (vcount(devvp) > 1 && devvp != rootvp) {
438 error = EBUSY;
439 goto fail;
440 }
441 if (mp->mnt_flag & MNT_RDONLY)
442 flags = FREAD;
443 else
444 flags = FREAD|FWRITE;
445 error = VOP_OPEN(devvp, flags, FSCRED, p);
446 if (error)
447 goto fail;
448 error = lfs_mountfs(devvp, mp, p); /* LFS */
449 if (error) {
450 vn_lock(devvp, LK_EXCLUSIVE | LK_RETRY);
451 (void)VOP_CLOSE(devvp, flags, NOCRED, p);
452 VOP_UNLOCK(devvp, 0);
453 goto fail;
454 }
455
456 ump = VFSTOUFS(mp);
457 fs = ump->um_lfs;
458 } else {
459 /*
460 * Update the mount.
461 */
462
463 /*
464 * The initial mount got a reference on this
465 * device, so drop the one obtained via
466 * namei(), above.
467 */
468 vrele(devvp);
469
470 ump = VFSTOUFS(mp);
471 fs = ump->um_lfs;
472 if (fs->lfs_ronly && (mp->mnt_iflag & IMNT_WANTRDWR)) {
473 /*
474 * Changing from read-only to read/write
475 */
476 fs->lfs_ronly = 0;
477 }
478 if (args.fspec == 0) {
479 /*
480 * Process export requests.
481 */
482 return (vfs_export(mp, &ump->um_export, &args.export));
483 }
484 }
485
486 return set_statvfs_info(path, UIO_USERSPACE, args.fspec,
487 UIO_USERSPACE, mp, p);
488
489 fail:
490 vrele(devvp);
491 return (error);
492 }
493
494 /*
495 * Roll-forward code.
496 */
497
498 /*
499 * Load the appropriate indirect block, and change the appropriate pointer.
500 * Mark the block dirty. Do segment and avail accounting.
501 */
502 static int
503 update_meta(struct lfs *fs, ino_t ino, int version, daddr_t lbn,
504 daddr_t ndaddr, size_t size, struct proc *p)
505 {
506 int error;
507 struct vnode *vp;
508 struct inode *ip;
509 #ifdef DEBUG
510 daddr_t odaddr;
511 struct indir a[NIADDR];
512 int num;
513 int i;
514 #endif /* DEBUG */
515 struct buf *bp;
516 SEGUSE *sup;
517
518 KASSERT(lbn >= 0); /* no indirect blocks */
519
520 if ((error = lfs_rf_valloc(fs, ino, version, p, &vp)) != 0) {
521 DLOG((DLOG_RF, "update_meta: ino %d: lfs_rf_valloc"
522 " returned %d\n", ino, error));
523 return error;
524 }
525
526 if ((error = VOP_BALLOC(vp, (lbn << fs->lfs_bshift), size,
527 NOCRED, 0, &bp)) != 0) {
528 vput(vp);
529 return (error);
530 }
531 /* No need to write, the block is already on disk */
532 if (bp->b_flags & B_DELWRI) {
533 LFS_UNLOCK_BUF(bp);
534 fs->lfs_avail += btofsb(fs, bp->b_bcount);
535 }
536 bp->b_flags |= B_INVAL;
537 brelse(bp);
538
539 /*
540 * Extend the file, if it is not large enough already.
541 * XXX this is not exactly right, we don't know how much of the
542 * XXX last block is actually used. We hope that an inode will
543 * XXX appear later to give the correct size.
544 */
545 ip = VTOI(vp);
546 if (ip->i_size <= (lbn << fs->lfs_bshift)) {
547 u_int64_t newsize;
548
549 if (lbn < NDADDR)
550 newsize = ip->i_ffs1_size = (lbn << fs->lfs_bshift) +
551 (size - fs->lfs_fsize) + 1;
552 else
553 newsize = ip->i_ffs1_size = (lbn << fs->lfs_bshift) + 1;
554
555 if (ip->i_size < newsize) {
556 ip->i_size = newsize;
557 /*
558 * tell vm our new size for the case the inode won't
559 * appear later.
560 */
561 uvm_vnp_setsize(vp, newsize);
562 }
563 }
564
565 lfs_update_single(fs, NULL, vp, lbn, ndaddr, size);
566
567 LFS_SEGENTRY(sup, fs, dtosn(fs, ndaddr), bp);
568 sup->su_nbytes += size;
569 LFS_WRITESEGENTRY(sup, fs, dtosn(fs, ndaddr), bp);
570
571 /* differences here should be due to UNWRITTEN indirect blocks. */
572 KASSERT((lblkno(fs, ip->i_size) > NDADDR &&
573 ip->i_lfs_effnblks == ip->i_ffs1_blocks) ||
574 ip->i_lfs_effnblks >= ip->i_ffs1_blocks);
575
576 #ifdef DEBUG
577 /* Now look again to make sure it worked */
578 ufs_bmaparray(vp, lbn, &odaddr, &a[0], &num, NULL, NULL);
579 for (i = num; i > 0; i--) {
580 if (!a[i].in_exists)
581 panic("update_meta: absent %d lv indirect block", i);
582 }
583 if (dbtofsb(fs, odaddr) != ndaddr)
584 DLOG((DLOG_RF, "update_meta: failed setting ino %d lbn %"
585 PRId64 " to %" PRId64 "\n", ino, lbn, ndaddr));
586 #endif /* DEBUG */
587 vput(vp);
588 return 0;
589 }
590
591 static int
592 update_inoblk(struct lfs *fs, daddr_t offset, struct ucred *cred,
593 struct proc *p)
594 {
595 struct vnode *devvp, *vp;
596 struct inode *ip;
597 struct ufs1_dinode *dip;
598 struct buf *dbp, *ibp;
599 int error;
600 daddr_t daddr;
601 IFILE *ifp;
602 SEGUSE *sup;
603
604 devvp = VTOI(fs->lfs_ivnode)->i_devvp;
605
606 /*
607 * Get the inode, update times and perms.
608 * DO NOT update disk blocks, we do that separately.
609 */
610 error = bread(devvp, fsbtodb(fs, offset), fs->lfs_ibsize, cred, &dbp);
611 if (error) {
612 DLOG((DLOG_RF, "update_inoblk: bread returned %d\n", error));
613 return error;
614 }
615 dip = ((struct ufs1_dinode *)(dbp->b_data)) + INOPB(fs);
616 while (--dip >= (struct ufs1_dinode *)dbp->b_data) {
617 if (dip->di_inumber > LFS_IFILE_INUM) {
618 error = lfs_rf_valloc(fs, dip->di_inumber, dip->di_gen,
619 p, &vp);
620 if (error) {
621 DLOG((DLOG_RF, "update_inoblk: lfs_rf_valloc"
622 " returned %d\n", error));
623 continue;
624 }
625 ip = VTOI(vp);
626 if (dip->di_size != ip->i_size)
627 VOP_TRUNCATE(vp, dip->di_size, 0, NOCRED, p);
628 /* Get mode, link count, size, and times */
629 memcpy(ip->i_din.ffs1_din, dip,
630 offsetof(struct ufs1_dinode, di_db[0]));
631
632 /* Then the rest, except di_blocks */
633 ip->i_flags = ip->i_ffs1_flags = dip->di_flags;
634 ip->i_gen = ip->i_ffs1_gen = dip->di_gen;
635 ip->i_uid = ip->i_ffs1_uid = dip->di_uid;
636 ip->i_gid = ip->i_ffs1_gid = dip->di_gid;
637
638 ip->i_mode = ip->i_ffs1_mode;
639 ip->i_nlink = ip->i_ffs_effnlink = ip->i_ffs1_nlink;
640 ip->i_size = ip->i_ffs1_size;
641
642 LFS_SET_UINO(ip, IN_CHANGE | IN_UPDATE);
643
644 /* Re-initialize to get type right */
645 ufs_vinit(vp->v_mount, lfs_specop_p, lfs_fifoop_p,
646 &vp);
647 vput(vp);
648
649 /* Record change in location */
650 LFS_IENTRY(ifp, fs, dip->di_inumber, ibp);
651 daddr = ifp->if_daddr;
652 ifp->if_daddr = dbtofsb(fs, dbp->b_blkno);
653 error = LFS_BWRITE_LOG(ibp); /* Ifile */
654 /* And do segment accounting */
655 if (dtosn(fs, daddr) != dtosn(fs, dbtofsb(fs, dbp->b_blkno))) {
656 if (daddr > 0) {
657 LFS_SEGENTRY(sup, fs, dtosn(fs, daddr),
658 ibp);
659 sup->su_nbytes -= sizeof (struct ufs1_dinode);
660 LFS_WRITESEGENTRY(sup, fs,
661 dtosn(fs, daddr),
662 ibp);
663 }
664 LFS_SEGENTRY(sup, fs, dtosn(fs, dbtofsb(fs, dbp->b_blkno)),
665 ibp);
666 sup->su_nbytes += sizeof (struct ufs1_dinode);
667 LFS_WRITESEGENTRY(sup, fs,
668 dtosn(fs, dbtofsb(fs, dbp->b_blkno)),
669 ibp);
670 }
671 }
672 }
673 dbp->b_flags |= B_AGE;
674 brelse(dbp);
675
676 return 0;
677 }
678
679 #define CHECK_CKSUM 0x0001 /* Check the checksum to make sure it's valid */
680 #define CHECK_UPDATE 0x0002 /* Update Ifile for new data blocks / inodes */
681
682 static daddr_t
683 check_segsum(struct lfs *fs, daddr_t offset, u_int64_t nextserial,
684 struct ucred *cred, int flags, int *pseg_flags, struct proc *p)
685 {
686 struct vnode *devvp;
687 struct buf *bp, *dbp;
688 int error, nblocks = 0, ninos, i, j; /* XXX: gcc */
689 SEGSUM *ssp;
690 u_long *dp = NULL, *datap = NULL; /* XXX u_int32_t */
691 daddr_t oldoffset;
692 int32_t *iaddr; /* XXX ondisk32 */
693 FINFO *fip;
694 SEGUSE *sup;
695 size_t size;
696
697 devvp = VTOI(fs->lfs_ivnode)->i_devvp;
698 /*
699 * If the segment has a superblock and we're at the top
700 * of the segment, skip the superblock.
701 */
702 if (sntod(fs, dtosn(fs, offset)) == offset) {
703 LFS_SEGENTRY(sup, fs, dtosn(fs, offset), bp);
704 if (sup->su_flags & SEGUSE_SUPERBLOCK)
705 offset += btofsb(fs, LFS_SBPAD);
706 brelse(bp);
707 }
708
709 /* Read in the segment summary */
710 error = bread(devvp, fsbtodb(fs, offset), fs->lfs_sumsize, cred, &bp);
711 if (error)
712 return -1;
713
714 /* Check summary checksum */
715 ssp = (SEGSUM *)bp->b_data;
716 if (flags & CHECK_CKSUM) {
717 if (ssp->ss_sumsum != cksum(&ssp->ss_datasum,
718 fs->lfs_sumsize -
719 sizeof(ssp->ss_sumsum))) {
720 DLOG((DLOG_RF, "Sumsum error at 0x%" PRIx64 "\n", offset));
721 offset = -1;
722 goto err1;
723 }
724 if (ssp->ss_nfinfo == 0 && ssp->ss_ninos == 0) {
725 DLOG((DLOG_RF, "Empty pseg at 0x%" PRIx64 "\n", offset));
726 offset = -1;
727 goto err1;
728 }
729 if (ssp->ss_create < fs->lfs_tstamp) {
730 DLOG((DLOG_RF, "Old data at 0x%" PRIx64 "\n", offset));
731 offset = -1;
732 goto err1;
733 }
734 }
735 if (fs->lfs_version > 1) {
736 if (ssp->ss_serial != nextserial) {
737 DLOG((DLOG_RF, "Unexpected serial number at 0x%" PRIx64
738 "\n", offset));
739 offset = -1;
740 goto err1;
741 }
742 if (ssp->ss_ident != fs->lfs_ident) {
743 DLOG((DLOG_RF, "Incorrect fsid (0x%x vs 0x%x) at 0x%"
744 PRIx64 "\n", ssp->ss_ident, fs->lfs_ident, offset));
745 offset = -1;
746 goto err1;
747 }
748 }
749 if (pseg_flags)
750 *pseg_flags = ssp->ss_flags;
751 oldoffset = offset;
752 offset += btofsb(fs, fs->lfs_sumsize);
753
754 ninos = howmany(ssp->ss_ninos, INOPB(fs));
755 /* XXX ondisk32 */
756 iaddr = (int32_t *)(bp->b_data + fs->lfs_sumsize - sizeof(int32_t));
757 if (flags & CHECK_CKSUM) {
758 /* Count blocks */
759 nblocks = 0;
760 fip = (FINFO *)(bp->b_data + SEGSUM_SIZE(fs));
761 for (i = 0; i < ssp->ss_nfinfo; ++i) {
762 nblocks += fip->fi_nblocks;
763 if (fip->fi_nblocks <= 0)
764 break;
765 /* XXX ondisk32 */
766 fip = (FINFO *)(((char *)fip) + FINFOSIZE +
767 (fip->fi_nblocks * sizeof(int32_t)));
768 }
769 nblocks += ninos;
770 /* Create the sum array */
771 datap = dp = (u_long *)malloc(nblocks * sizeof(u_long),
772 M_SEGMENT, M_WAITOK);
773 }
774
775 /* Handle individual blocks */
776 fip = (FINFO *)(bp->b_data + SEGSUM_SIZE(fs));
777 for (i = 0; i < ssp->ss_nfinfo || ninos; ++i) {
778 /* Inode block? */
779 if (ninos && *iaddr == offset) {
780 if (flags & CHECK_CKSUM) {
781 /* Read in the head and add to the buffer */
782 error = bread(devvp, fsbtodb(fs, offset), fs->lfs_bsize,
783 cred, &dbp);
784 if (error) {
785 offset = -1;
786 goto err2;
787 }
788 (*dp++) = ((u_long *)(dbp->b_data))[0];
789 dbp->b_flags |= B_AGE;
790 brelse(dbp);
791 }
792 if (flags & CHECK_UPDATE) {
793 if ((error = update_inoblk(fs, offset, cred, p))
794 != 0) {
795 offset = -1;
796 goto err2;
797 }
798 }
799 offset += btofsb(fs, fs->lfs_ibsize);
800 --iaddr;
801 --ninos;
802 --i; /* compensate */
803 continue;
804 }
805 size = fs->lfs_bsize;
806 for (j = 0; j < fip->fi_nblocks; ++j) {
807 if (j == fip->fi_nblocks - 1)
808 size = fip->fi_lastlength;
809 if (flags & CHECK_CKSUM) {
810 error = bread(devvp, fsbtodb(fs, offset), size, cred, &dbp);
811 if (error) {
812 offset = -1;
813 goto err2;
814 }
815 (*dp++) = ((u_long *)(dbp->b_data))[0];
816 dbp->b_flags |= B_AGE;
817 brelse(dbp);
818 }
819 /* Account for and update any direct blocks */
820 if ((flags & CHECK_UPDATE) &&
821 fip->fi_ino > LFS_IFILE_INUM &&
822 fip->fi_blocks[j] >= 0) {
823 update_meta(fs, fip->fi_ino, fip->fi_version,
824 fip->fi_blocks[j], offset, size, p);
825 }
826 offset += btofsb(fs, size);
827 }
828 /* XXX ondisk32 */
829 fip = (FINFO *)(((char *)fip) + FINFOSIZE
830 + fip->fi_nblocks * sizeof(int32_t));
831 }
832 /* Checksum the array, compare */
833 if ((flags & CHECK_CKSUM) &&
834 ssp->ss_datasum != cksum(datap, nblocks * sizeof(u_long)))
835 {
836 DLOG((DLOG_RF, "Datasum error at 0x%" PRIx64
837 " (wanted %x got %x)\n",
838 offset, ssp->ss_datasum, cksum(datap, nblocks *
839 sizeof(u_long))));
840 offset = -1;
841 goto err2;
842 }
843
844 /* If we're at the end of the segment, move to the next */
845 if (dtosn(fs, offset + btofsb(fs, fs->lfs_sumsize + fs->lfs_bsize)) !=
846 dtosn(fs, offset)) {
847 if (dtosn(fs, offset) == dtosn(fs, ssp->ss_next)) {
848 offset = -1;
849 goto err2;
850 }
851 offset = ssp->ss_next;
852 DLOG((DLOG_RF, "LFS roll forward: moving to offset 0x%" PRIx64
853 " -> segment %d\n", offset, dtosn(fs,offset)));
854 }
855
856 if (flags & CHECK_UPDATE) {
857 fs->lfs_avail -= (offset - oldoffset);
858 /* Don't clog the buffer queue */
859 simple_lock(&lfs_subsys_lock);
860 if (locked_queue_count > LFS_MAX_BUFS ||
861 locked_queue_bytes > LFS_MAX_BYTES) {
862 lfs_flush(fs, SEGM_CKP, 0);
863 }
864 simple_unlock(&lfs_subsys_lock);
865 }
866
867 err2:
868 if (flags & CHECK_CKSUM)
869 free(datap, M_SEGMENT);
870 err1:
871 bp->b_flags |= B_AGE;
872 brelse(bp);
873
874 /* XXX should we update the serial number even for bad psegs? */
875 if ((flags & CHECK_UPDATE) && offset > 0 && fs->lfs_version > 1)
876 fs->lfs_serial = nextserial;
877 return offset;
878 }
879
880 /*
881 * Common code for mount and mountroot
882 * LFS specific
883 */
884 int
885 lfs_mountfs(struct vnode *devvp, struct mount *mp, struct proc *p)
886 {
887 struct dlfs *tdfs, *dfs, *adfs;
888 struct lfs *fs;
889 struct ufsmount *ump;
890 struct vnode *vp;
891 struct buf *bp, *abp;
892 struct partinfo dpart;
893 dev_t dev;
894 int error, i, ronly, secsize, fsbsize;
895 struct ucred *cred;
896 CLEANERINFO *cip;
897 SEGUSE *sup;
898 int flags, dirty, do_rollforward;
899 daddr_t offset, oldoffset, lastgoodpseg, sb_addr;
900 int sn, curseg;
901
902 cred = p ? p->p_ucred : NOCRED;
903
904 /*
905 * Flush out any old buffers remaining from a previous use.
906 */
907 vn_lock(devvp, LK_EXCLUSIVE | LK_RETRY);
908 error = vinvalbuf(devvp, V_SAVE, cred, p, 0, 0);
909 VOP_UNLOCK(devvp, 0);
910 if (error)
911 return (error);
912
913 ronly = (mp->mnt_flag & MNT_RDONLY) != 0;
914 if (VOP_IOCTL(devvp, DIOCGPART, &dpart, FREAD, cred, p) != 0)
915 secsize = DEV_BSIZE;
916 else
917 secsize = dpart.disklab->d_secsize;
918
919 /* Don't free random space on error. */
920 bp = NULL;
921 abp = NULL;
922 ump = NULL;
923
924 sb_addr = LFS_LABELPAD / secsize;
925 while (1) {
926 /* Read in the superblock. */
927 error = bread(devvp, sb_addr, LFS_SBPAD, cred, &bp);
928 if (error)
929 goto out;
930 dfs = (struct dlfs *)bp->b_data;
931
932 /* Check the basics. */
933 if (dfs->dlfs_magic != LFS_MAGIC || dfs->dlfs_bsize > MAXBSIZE ||
934 dfs->dlfs_version > LFS_VERSION ||
935 dfs->dlfs_bsize < sizeof(struct dlfs)) {
936 DLOG((DLOG_MOUNT, "lfs_mountfs: primary superblock sanity failed\n"));
937 error = EINVAL; /* XXX needs translation */
938 goto out;
939 }
940 if (dfs->dlfs_inodefmt > LFS_MAXINODEFMT) {
941 DLOG((DLOG_MOUNT, "lfs_mountfs: unknown inode format %d\n",
942 dfs->dlfs_inodefmt));
943 error = EINVAL;
944 goto out;
945 }
946
947 if (dfs->dlfs_version == 1)
948 fsbsize = secsize;
949 else {
950 fsbsize = 1 << (dfs->dlfs_bshift - dfs->dlfs_blktodb +
951 dfs->dlfs_fsbtodb);
952 /*
953 * Could be, if the frag size is large enough, that we
954 * don't have the "real" primary superblock. If that's
955 * the case, get the real one, and try again.
956 */
957 if (sb_addr != dfs->dlfs_sboffs[0] <<
958 dfs->dlfs_fsbtodb) {
959 DLOG((DLOG_MOUNT, "lfs_mountfs: sb daddr"
960 " 0x%llx is not right, trying 0x%llx\n",
961 (long long)sb_addr,
962 (long long)(dfs->dlfs_sboffs[0] <<
963 dfs->dlfs_fsbtodb)));
964 sb_addr = dfs->dlfs_sboffs[0] <<
965 dfs->dlfs_fsbtodb;
966 brelse(bp);
967 continue;
968 }
969 }
970 break;
971 }
972
973 /*
974 * Check the second superblock to see which is newer; then mount
975 * using the older of the two. This is necessary to ensure that
976 * the filesystem is valid if it was not unmounted cleanly.
977 */
978
979 if (dfs->dlfs_sboffs[1] &&
980 dfs->dlfs_sboffs[1] - LFS_LABELPAD / fsbsize > LFS_SBPAD / fsbsize)
981 {
982 error = bread(devvp, dfs->dlfs_sboffs[1] * (fsbsize / secsize),
983 LFS_SBPAD, cred, &abp);
984 if (error)
985 goto out;
986 adfs = (struct dlfs *)abp->b_data;
987
988 if (dfs->dlfs_version == 1) {
989 /* 1s resolution comparison */
990 if (adfs->dlfs_tstamp < dfs->dlfs_tstamp)
991 tdfs = adfs;
992 else
993 tdfs = dfs;
994 } else {
995 /* monotonic infinite-resolution comparison */
996 if (adfs->dlfs_serial < dfs->dlfs_serial)
997 tdfs = adfs;
998 else
999 tdfs = dfs;
1000 }
1001
1002 /* Check the basics. */
1003 if (tdfs->dlfs_magic != LFS_MAGIC ||
1004 tdfs->dlfs_bsize > MAXBSIZE ||
1005 tdfs->dlfs_version > LFS_VERSION ||
1006 tdfs->dlfs_bsize < sizeof(struct dlfs)) {
1007 DLOG((DLOG_MOUNT, "lfs_mountfs: alt superblock"
1008 " sanity failed\n"));
1009 error = EINVAL; /* XXX needs translation */
1010 goto out;
1011 }
1012 } else {
1013 DLOG((DLOG_MOUNT, "lfs_mountfs: invalid alt superblock"
1014 " daddr=0x%x\n", dfs->dlfs_sboffs[1]));
1015 error = EINVAL;
1016 goto out;
1017 }
1018
1019 /* Allocate the mount structure, copy the superblock into it. */
1020 fs = malloc(sizeof(struct lfs), M_UFSMNT, M_WAITOK | M_ZERO);
1021 memcpy(&fs->lfs_dlfs, tdfs, sizeof(struct dlfs));
1022
1023 /* Compatibility */
1024 if (fs->lfs_version < 2) {
1025 fs->lfs_sumsize = LFS_V1_SUMMARY_SIZE;
1026 fs->lfs_ibsize = fs->lfs_bsize;
1027 fs->lfs_start = fs->lfs_sboffs[0];
1028 fs->lfs_tstamp = fs->lfs_otstamp;
1029 fs->lfs_fsbtodb = 0;
1030 }
1031
1032 /*
1033 * If we aren't going to be able to write meaningfully to this
1034 * filesystem, and were not mounted readonly, bomb out now.
1035 */
1036 if (fsbtob(fs, LFS_NRESERVE(fs)) > LFS_MAX_BYTES && !ronly) {
1037 DLOG((DLOG_MOUNT, "lfs_mount: to mount this filesystem read/write,"
1038 " we need BUFPAGES >= %lld\n",
1039 (long long)((bufmem_hiwater / bufmem_lowater) *
1040 LFS_INVERSE_MAX_BYTES(
1041 fsbtob(fs, LFS_NRESERVE(fs))) >> PAGE_SHIFT)));
1042 free(fs, M_UFSMNT);
1043 error = EFBIG; /* XXX needs translation */
1044 goto out;
1045 }
1046
1047 /* Before rolling forward, lock so vget will sleep for other procs */
1048 fs->lfs_flags = LFS_NOTYET;
1049 fs->lfs_rfpid = p->p_pid;
1050
1051 ump = malloc(sizeof *ump, M_UFSMNT, M_WAITOK | M_ZERO);
1052 ump->um_lfs = fs;
1053 ump->um_fstype = UFS1;
1054 if (sizeof(struct lfs) < LFS_SBPAD) { /* XXX why? */
1055 bp->b_flags |= B_INVAL;
1056 abp->b_flags |= B_INVAL;
1057 }
1058 brelse(bp);
1059 bp = NULL;
1060 brelse(abp);
1061 abp = NULL;
1062
1063 /* Set up the I/O information */
1064 fs->lfs_devbsize = secsize;
1065 fs->lfs_iocount = 0;
1066 fs->lfs_diropwait = 0;
1067 fs->lfs_activesb = 0;
1068 fs->lfs_uinodes = 0;
1069 fs->lfs_ravail = 0;
1070 fs->lfs_favail = 0;
1071 fs->lfs_sbactive = 0;
1072
1073 /* Set up the ifile and lock aflags */
1074 fs->lfs_doifile = 0;
1075 fs->lfs_writer = 0;
1076 fs->lfs_dirops = 0;
1077 fs->lfs_nadirop = 0;
1078 fs->lfs_seglock = 0;
1079 fs->lfs_pdflush = 0;
1080 fs->lfs_sleepers = 0;
1081 fs->lfs_pages = 0;
1082 simple_lock_init(&fs->lfs_interlock);
1083 lockinit(&fs->lfs_fraglock, PINOD, "lfs_fraglock", 0, 0);
1084
1085 /* Set the file system readonly/modify bits. */
1086 fs->lfs_ronly = ronly;
1087 if (ronly == 0)
1088 fs->lfs_fmod = 1;
1089
1090 /* Initialize the mount structure. */
1091 dev = devvp->v_rdev;
1092 mp->mnt_data = ump;
1093 mp->mnt_stat.f_fsidx.__fsid_val[0] = (long)dev;
1094 mp->mnt_stat.f_fsidx.__fsid_val[1] = makefstype(MOUNT_LFS);
1095 mp->mnt_stat.f_fsid = mp->mnt_stat.f_fsidx.__fsid_val[0];
1096 mp->mnt_stat.f_namemax = MAXNAMLEN;
1097 mp->mnt_stat.f_iosize = fs->lfs_bsize;
1098 mp->mnt_flag |= MNT_LOCAL;
1099 mp->mnt_fs_bshift = fs->lfs_bshift;
1100 ump->um_flags = 0;
1101 ump->um_mountp = mp;
1102 ump->um_dev = dev;
1103 ump->um_devvp = devvp;
1104 ump->um_bptrtodb = fs->lfs_fsbtodb;
1105 ump->um_seqinc = fragstofsb(fs, fs->lfs_frag);
1106 ump->um_nindir = fs->lfs_nindir;
1107 ump->um_lognindir = ffs(fs->lfs_nindir) - 1;
1108 for (i = 0; i < MAXQUOTAS; i++)
1109 ump->um_quotas[i] = NULLVP;
1110 ump->um_maxsymlinklen = fs->lfs_maxsymlinklen;
1111 ump->um_dirblksiz = DIRBLKSIZ;
1112 ump->um_maxfilesize = fs->lfs_maxfilesize;
1113 if (ump->um_maxsymlinklen > 0)
1114 mp->mnt_iflag |= IMNT_DTYPE;
1115 devvp->v_specmountpoint = mp;
1116
1117 /* Set up reserved memory for pageout */
1118 lfs_setup_resblks(fs);
1119 /* Set up vdirop tailq */
1120 TAILQ_INIT(&fs->lfs_dchainhd);
1121 /* and paging tailq */
1122 TAILQ_INIT(&fs->lfs_pchainhd);
1123
1124 /*
1125 * We use the ifile vnode for almost every operation. Instead of
1126 * retrieving it from the hash table each time we retrieve it here,
1127 * artificially increment the reference count and keep a pointer
1128 * to it in the incore copy of the superblock.
1129 */
1130 if ((error = VFS_VGET(mp, LFS_IFILE_INUM, &vp)) != 0) {
1131 DLOG((DLOG_MOUNT, "lfs_mountfs: ifile vget failed, error=%d\n", error));
1132 goto out;
1133 }
1134 fs->lfs_ivnode = vp;
1135 VREF(vp);
1136
1137 /* Set up segment usage flags for the autocleaner. */
1138 fs->lfs_nactive = 0;
1139 fs->lfs_suflags = (u_int32_t **)malloc(2 * sizeof(u_int32_t *),
1140 M_SEGMENT, M_WAITOK);
1141 fs->lfs_suflags[0] = (u_int32_t *)malloc(fs->lfs_nseg * sizeof(u_int32_t),
1142 M_SEGMENT, M_WAITOK);
1143 fs->lfs_suflags[1] = (u_int32_t *)malloc(fs->lfs_nseg * sizeof(u_int32_t),
1144 M_SEGMENT, M_WAITOK);
1145 memset(fs->lfs_suflags[1], 0, fs->lfs_nseg * sizeof(u_int32_t));
1146 for (i = 0; i < fs->lfs_nseg; i++) {
1147 int changed;
1148
1149 LFS_SEGENTRY(sup, fs, i, bp);
1150 changed = 0;
1151 if (!ronly) {
1152 if (sup->su_nbytes == 0 &&
1153 !(sup->su_flags & SEGUSE_EMPTY)) {
1154 sup->su_flags |= SEGUSE_EMPTY;
1155 ++changed;
1156 } else if (!(sup->su_nbytes == 0) &&
1157 (sup->su_flags & SEGUSE_EMPTY)) {
1158 sup->su_flags &= ~SEGUSE_EMPTY;
1159 ++changed;
1160 }
1161 if (sup->su_flags & SEGUSE_ACTIVE) {
1162 sup->su_flags &= ~SEGUSE_ACTIVE;
1163 ++changed;
1164 }
1165 }
1166 fs->lfs_suflags[0][i] = sup->su_flags;
1167 if (changed)
1168 LFS_WRITESEGENTRY(sup, fs, i, bp);
1169 else
1170 brelse(bp);
1171 }
1172
1173 /*
1174 * Roll forward.
1175 *
1176 * We don't roll forward for v1 filesystems, because
1177 * of the danger that the clock was turned back between the last
1178 * checkpoint and crash. This would roll forward garbage.
1179 *
1180 * v2 filesystems don't have this problem because they use a
1181 * monotonically increasing serial number instead of a timestamp.
1182 */
1183 do_rollforward = (!(fs->lfs_pflags & LFS_PF_CLEAN) &&
1184 lfs_do_rfw && fs->lfs_version > 1);
1185 if (do_rollforward) {
1186 u_int64_t nextserial;
1187 /*
1188 * Phase I: Find the address of the last good partial
1189 * segment that was written after the checkpoint. Mark
1190 * the segments in question dirty, so they won't be
1191 * reallocated.
1192 */
1193 lastgoodpseg = oldoffset = offset = fs->lfs_offset;
1194 flags = 0x0;
1195 DLOG((DLOG_RF, "LFS roll forward phase 1: start at offset 0x%"
1196 PRIx64 "\n", offset));
1197 LFS_SEGENTRY(sup, fs, dtosn(fs, offset), bp);
1198 if (!(sup->su_flags & SEGUSE_DIRTY))
1199 --fs->lfs_nclean;
1200 sup->su_flags |= SEGUSE_DIRTY;
1201 LFS_WRITESEGENTRY(sup, fs, dtosn(fs, offset), bp);
1202 nextserial = fs->lfs_serial + 1;
1203 while ((offset = check_segsum(fs, offset, nextserial,
1204 cred, CHECK_CKSUM, &flags, p)) > 0) {
1205 nextserial++;
1206 if (sntod(fs, oldoffset) != sntod(fs, offset)) {
1207 LFS_SEGENTRY(sup, fs, dtosn(fs, oldoffset),
1208 bp);
1209 if (!(sup->su_flags & SEGUSE_DIRTY))
1210 --fs->lfs_nclean;
1211 sup->su_flags |= SEGUSE_DIRTY;
1212 LFS_WRITESEGENTRY(sup, fs, dtosn(fs, oldoffset),
1213 bp);
1214 }
1215
1216 DLOG((DLOG_RF, "LFS roll forward phase 1: offset=0x%"
1217 PRIx64 "\n", offset));
1218 if (flags & SS_DIROP) {
1219 DLOG((DLOG_RF, "lfs_mountfs: dirops at 0x%"
1220 PRIx64 "\n", oldoffset));
1221 if (!(flags & SS_CONT))
1222 DLOG((DLOG_RF, "lfs_mountfs: dirops end "
1223 "at 0x%" PRIx64 "\n", oldoffset));
1224 }
1225 if (!(flags & SS_CONT))
1226 lastgoodpseg = offset;
1227 oldoffset = offset;
1228 }
1229 if (flags & SS_CONT) {
1230 DLOG((DLOG_RF, "LFS roll forward: warning: incomplete "
1231 "dirops discarded\n"));
1232 }
1233 DLOG((DLOG_RF, "LFS roll forward phase 1: completed: "
1234 "lastgoodpseg=0x%" PRIx64 "\n", lastgoodpseg));
1235 oldoffset = fs->lfs_offset;
1236 if (fs->lfs_offset != lastgoodpseg) {
1237 /* Don't overwrite what we're trying to preserve */
1238 offset = fs->lfs_offset;
1239 fs->lfs_offset = lastgoodpseg;
1240 fs->lfs_curseg = sntod(fs, dtosn(fs, fs->lfs_offset));
1241 for (sn = curseg = dtosn(fs, fs->lfs_curseg);;) {
1242 sn = (sn + 1) % fs->lfs_nseg;
1243 if (sn == curseg)
1244 panic("lfs_mountfs: no clean segments");
1245 LFS_SEGENTRY(sup, fs, sn, bp);
1246 dirty = (sup->su_flags & SEGUSE_DIRTY);
1247 brelse(bp);
1248 if (!dirty)
1249 break;
1250 }
1251 fs->lfs_nextseg = sntod(fs, sn);
1252
1253 /*
1254 * Phase II: Roll forward from the first superblock.
1255 */
1256 while (offset != lastgoodpseg) {
1257 DLOG((DLOG_RF, "LFS roll forward phase 2: 0x%"
1258 PRIx64 "\n", offset));
1259 offset = check_segsum(fs, offset,
1260 fs->lfs_serial + 1, cred, CHECK_UPDATE,
1261 NULL, p);
1262 }
1263
1264 /*
1265 * Finish: flush our changes to disk.
1266 */
1267 lfs_segwrite(mp, SEGM_CKP | SEGM_SYNC);
1268 DLOG((DLOG_RF, "lfs_mountfs: roll forward ",
1269 "recovered %lld blocks\n",
1270 (long long)(lastgoodpseg - oldoffset)));
1271 }
1272 DLOG((DLOG_RF, "LFS roll forward complete\n"));
1273 }
1274 /* If writing, sb is not clean; record in case of immediate crash */
1275 if (!fs->lfs_ronly) {
1276 fs->lfs_pflags &= ~LFS_PF_CLEAN;
1277 lfs_writesuper(fs, fs->lfs_sboffs[0]);
1278 lfs_writesuper(fs, fs->lfs_sboffs[1]);
1279 }
1280
1281 /* Allow vget now that roll-forward is complete */
1282 fs->lfs_flags &= ~(LFS_NOTYET);
1283 wakeup(&fs->lfs_flags);
1284
1285 /*
1286 * Initialize the ifile cleaner info with information from
1287 * the superblock.
1288 */
1289 LFS_CLEANERINFO(cip, fs, bp);
1290 cip->clean = fs->lfs_nclean;
1291 cip->dirty = fs->lfs_nseg - fs->lfs_nclean;
1292 cip->avail = fs->lfs_avail;
1293 cip->bfree = fs->lfs_bfree;
1294 (void) LFS_BWRITE_LOG(bp); /* Ifile */
1295
1296 /*
1297 * Mark the current segment as ACTIVE, since we're going to
1298 * be writing to it.
1299 */
1300 LFS_SEGENTRY(sup, fs, dtosn(fs, fs->lfs_offset), bp);
1301 sup->su_flags |= SEGUSE_DIRTY | SEGUSE_ACTIVE;
1302 fs->lfs_nactive++;
1303 LFS_WRITESEGENTRY(sup, fs, dtosn(fs, fs->lfs_offset), bp); /* Ifile */
1304
1305 /* Now that roll-forward is done, unlock the Ifile */
1306 vput(vp);
1307
1308 /* Comment on ifile size if it is too large */
1309 warn_ifile_size(fs);
1310
1311 /* Start the pagedaemon-anticipating daemon */
1312 if (lfs_writer_daemon == 0 &&
1313 kthread_create1(lfs_writerd, NULL, NULL, "lfs_writer") != 0)
1314 panic("fork lfs_writer");
1315
1316 return (0);
1317
1318 out:
1319 if (bp)
1320 brelse(bp);
1321 if (abp)
1322 brelse(abp);
1323 if (ump) {
1324 free(ump->um_lfs, M_UFSMNT);
1325 free(ump, M_UFSMNT);
1326 mp->mnt_data = NULL;
1327 }
1328
1329 return (error);
1330 }
1331
1332 /*
1333 * unmount system call
1334 */
1335 int
1336 lfs_unmount(struct mount *mp, int mntflags, struct proc *p)
1337 {
1338 struct ufsmount *ump;
1339 struct lfs *fs;
1340 int error, flags, ronly;
1341 int s;
1342
1343 flags = 0;
1344 if (mntflags & MNT_FORCE)
1345 flags |= FORCECLOSE;
1346
1347 ump = VFSTOUFS(mp);
1348 fs = ump->um_lfs;
1349
1350 /* wake up the cleaner so it can die */
1351 wakeup(&fs->lfs_nextseg);
1352 wakeup(&lfs_allclean_wakeup);
1353 simple_lock(&fs->lfs_interlock);
1354 while (fs->lfs_sleepers)
1355 ltsleep(&fs->lfs_sleepers, PRIBIO + 1, "lfs_sleepers", 0,
1356 &fs->lfs_interlock);
1357 simple_unlock(&fs->lfs_interlock);
1358
1359 #ifdef QUOTA
1360 if (mp->mnt_flag & MNT_QUOTA) {
1361 int i;
1362 error = vflush(mp, fs->lfs_ivnode, SKIPSYSTEM|flags);
1363 if (error)
1364 return (error);
1365 for (i = 0; i < MAXQUOTAS; i++) {
1366 if (ump->um_quotas[i] == NULLVP)
1367 continue;
1368 quotaoff(p, mp, i);
1369 }
1370 /*
1371 * Here we fall through to vflush again to ensure
1372 * that we have gotten rid of all the system vnodes.
1373 */
1374 }
1375 #endif
1376 if ((error = vflush(mp, fs->lfs_ivnode, flags)) != 0)
1377 return (error);
1378 if ((error = VFS_SYNC(mp, 1, p->p_ucred, p)) != 0)
1379 return (error);
1380 s = splbio();
1381 if (LIST_FIRST(&fs->lfs_ivnode->v_dirtyblkhd))
1382 panic("lfs_unmount: still dirty blocks on ifile vnode");
1383 splx(s);
1384
1385 /* Comment on ifile size if it has become too large */
1386 if (!(fs->lfs_flags & LFS_WARNED))
1387 warn_ifile_size(fs);
1388
1389 /* Explicitly write the superblock, to update serial and pflags */
1390 fs->lfs_pflags |= LFS_PF_CLEAN;
1391 lfs_writesuper(fs, fs->lfs_sboffs[0]);
1392 lfs_writesuper(fs, fs->lfs_sboffs[1]);
1393 simple_lock(&fs->lfs_interlock);
1394 while (fs->lfs_iocount)
1395 ltsleep(&fs->lfs_iocount, PRIBIO + 1, "lfs_umount", 0,
1396 &fs->lfs_interlock);
1397 simple_unlock(&fs->lfs_interlock);
1398
1399 /* Finish with the Ifile, now that we're done with it */
1400 vrele(fs->lfs_ivnode);
1401 vgone(fs->lfs_ivnode);
1402
1403 ronly = !fs->lfs_ronly;
1404 if (ump->um_devvp->v_type != VBAD)
1405 ump->um_devvp->v_specmountpoint = NULL;
1406 vn_lock(ump->um_devvp, LK_EXCLUSIVE | LK_RETRY);
1407 error = VOP_CLOSE(ump->um_devvp,
1408 ronly ? FREAD : FREAD|FWRITE, NOCRED, p);
1409 vput(ump->um_devvp);
1410
1411 /* Free per-mount data structures */
1412 free(fs->lfs_suflags[0], M_SEGMENT);
1413 free(fs->lfs_suflags[1], M_SEGMENT);
1414 free(fs->lfs_suflags, M_SEGMENT);
1415 lfs_free_resblks(fs);
1416 free(fs, M_UFSMNT);
1417 free(ump, M_UFSMNT);
1418
1419 mp->mnt_data = NULL;
1420 mp->mnt_flag &= ~MNT_LOCAL;
1421 return (error);
1422 }
1423
1424 /*
1425 * Get file system statistics.
1426 *
1427 * NB: We don't lock to access the superblock here, because it's not
1428 * really that important if we get it wrong.
1429 */
1430 int
1431 lfs_statvfs(struct mount *mp, struct statvfs *sbp, struct proc *p)
1432 {
1433 struct lfs *fs;
1434 struct ufsmount *ump;
1435
1436 ump = VFSTOUFS(mp);
1437 fs = ump->um_lfs;
1438 if (fs->lfs_magic != LFS_MAGIC)
1439 panic("lfs_statvfs: magic");
1440
1441 sbp->f_bsize = fs->lfs_bsize;
1442 sbp->f_frsize = fs->lfs_fsize;
1443 sbp->f_iosize = fs->lfs_bsize;
1444 sbp->f_blocks = fsbtofrags(fs, LFS_EST_NONMETA(fs));
1445
1446 sbp->f_bfree = fsbtofrags(fs, LFS_EST_BFREE(fs));
1447 KASSERT(sbp->f_bfree <= fs->lfs_dsize);
1448 if (sbp->f_bfree < 0)
1449 sbp->f_bfree = 0;
1450
1451 sbp->f_bresvd = fsbtofrags(fs, LFS_EST_RSVD(fs));
1452 if (sbp->f_bfree > sbp->f_bresvd)
1453 sbp->f_bavail = sbp->f_bfree - sbp->f_bresvd;
1454 else
1455 sbp->f_bavail = 0;
1456
1457 sbp->f_files = fs->lfs_bfree / btofsb(fs, fs->lfs_ibsize) * INOPB(fs);
1458 sbp->f_ffree = sbp->f_files - fs->lfs_nfiles;
1459 sbp->f_favail = sbp->f_ffree;
1460 sbp->f_fresvd = 0;
1461 copy_statvfs_info(sbp, mp);
1462 return (0);
1463 }
1464
1465 /*
1466 * Go through the disk queues to initiate sandbagged IO;
1467 * go through the inodes to write those that have been modified;
1468 * initiate the writing of the super block if it has been modified.
1469 *
1470 * Note: we are always called with the filesystem marked `MPBUSY'.
1471 */
1472 int
1473 lfs_sync(struct mount *mp, int waitfor, struct ucred *cred, struct proc *p)
1474 {
1475 int error;
1476 struct lfs *fs;
1477
1478 fs = VFSTOUFS(mp)->um_lfs;
1479 if (fs->lfs_ronly)
1480 return 0;
1481 lfs_writer_enter(fs, "lfs_dirops");
1482
1483 /* All syncs must be checkpoints until roll-forward is implemented. */
1484 error = lfs_segwrite(mp, SEGM_CKP | (waitfor ? SEGM_SYNC : 0));
1485 lfs_writer_leave(fs);
1486 #ifdef QUOTA
1487 qsync(mp);
1488 #endif
1489 return (error);
1490 }
1491
1492 extern struct lock ufs_hashlock;
1493
1494 /*
1495 * Look up an LFS dinode number to find its incore vnode. If not already
1496 * in core, read it in from the specified device. Return the inode locked.
1497 * Detection and handling of mount points must be done by the calling routine.
1498 */
1499 int
1500 lfs_vget(struct mount *mp, ino_t ino, struct vnode **vpp)
1501 {
1502 struct lfs *fs;
1503 struct ufs1_dinode *dip;
1504 struct inode *ip;
1505 struct buf *bp;
1506 struct ifile *ifp;
1507 struct vnode *vp;
1508 struct ufsmount *ump;
1509 daddr_t daddr;
1510 dev_t dev;
1511 int error, retries;
1512 struct timespec ts;
1513
1514 ump = VFSTOUFS(mp);
1515 dev = ump->um_dev;
1516 fs = ump->um_lfs;
1517
1518 /*
1519 * If the filesystem is not completely mounted yet, suspend
1520 * any access requests (wait for roll-forward to complete).
1521 */
1522 simple_lock(&fs->lfs_interlock);
1523 while ((fs->lfs_flags & LFS_NOTYET) && curproc->p_pid != fs->lfs_rfpid)
1524 ltsleep(&fs->lfs_flags, PRIBIO+1, "lfs_notyet", 0,
1525 &fs->lfs_interlock);
1526 simple_unlock(&fs->lfs_interlock);
1527
1528 if ((*vpp = ufs_ihashget(dev, ino, LK_EXCLUSIVE)) != NULL)
1529 return (0);
1530
1531 if ((error = getnewvnode(VT_LFS, mp, lfs_vnodeop_p, &vp)) != 0) {
1532 *vpp = NULL;
1533 return (error);
1534 }
1535
1536 do {
1537 if ((*vpp = ufs_ihashget(dev, ino, LK_EXCLUSIVE)) != NULL) {
1538 ungetnewvnode(vp);
1539 return (0);
1540 }
1541 } while (lockmgr(&ufs_hashlock, LK_EXCLUSIVE|LK_SLEEPFAIL, 0));
1542
1543 /* Translate the inode number to a disk address. */
1544 if (ino == LFS_IFILE_INUM)
1545 daddr = fs->lfs_idaddr;
1546 else {
1547 /* XXX bounds-check this too */
1548 LFS_IENTRY(ifp, fs, ino, bp);
1549 daddr = ifp->if_daddr;
1550 if (fs->lfs_version > 1) {
1551 ts.tv_sec = ifp->if_atime_sec;
1552 ts.tv_nsec = ifp->if_atime_nsec;
1553 }
1554
1555 brelse(bp);
1556 if (daddr == LFS_UNUSED_DADDR) {
1557 *vpp = NULLVP;
1558 ungetnewvnode(vp);
1559 lockmgr(&ufs_hashlock, LK_RELEASE, 0);
1560 return (ENOENT);
1561 }
1562 }
1563
1564 /* Allocate/init new vnode/inode. */
1565 lfs_vcreate(mp, ino, vp);
1566
1567 /*
1568 * Put it onto its hash chain and lock it so that other requests for
1569 * this inode will block if they arrive while we are sleeping waiting
1570 * for old data structures to be purged or for the contents of the
1571 * disk portion of this inode to be read.
1572 */
1573 ip = VTOI(vp);
1574 ufs_ihashins(ip);
1575 lockmgr(&ufs_hashlock, LK_RELEASE, 0);
1576
1577 /*
1578 * XXX
1579 * This may not need to be here, logically it should go down with
1580 * the i_devvp initialization.
1581 * Ask Kirk.
1582 */
1583 ip->i_lfs = ump->um_lfs;
1584
1585 /* Read in the disk contents for the inode, copy into the inode. */
1586 retries = 0;
1587 again:
1588 error = bread(ump->um_devvp, fsbtodb(fs, daddr),
1589 (fs->lfs_version == 1 ? fs->lfs_bsize : fs->lfs_ibsize),
1590 NOCRED, &bp);
1591 if (error) {
1592 /*
1593 * The inode does not contain anything useful, so it would
1594 * be misleading to leave it on its hash chain. With mode
1595 * still zero, it will be unlinked and returned to the free
1596 * list by vput().
1597 */
1598 vput(vp);
1599 brelse(bp);
1600 *vpp = NULL;
1601 return (error);
1602 }
1603
1604 dip = lfs_ifind(fs, ino, bp);
1605 if (dip == NULL) {
1606 /* Assume write has not completed yet; try again */
1607 bp->b_flags |= B_INVAL;
1608 brelse(bp);
1609 ++retries;
1610 if (retries > LFS_IFIND_RETRIES) {
1611 #ifdef DEBUG
1612 /* If the seglock is held look at the bpp to see
1613 what is there anyway */
1614 simple_lock(&fs->lfs_interlock);
1615 if (fs->lfs_seglock > 0) {
1616 struct buf **bpp;
1617 struct ufs1_dinode *dp;
1618 int i;
1619
1620 for (bpp = fs->lfs_sp->bpp;
1621 bpp != fs->lfs_sp->cbpp; ++bpp) {
1622 if ((*bpp)->b_vp == fs->lfs_ivnode &&
1623 bpp != fs->lfs_sp->bpp) {
1624 /* Inode block */
1625 printf("lfs_vget: block 0x%" PRIx64 ": ",
1626 (*bpp)->b_blkno);
1627 dp = (struct ufs1_dinode *)(*bpp)->b_data;
1628 for (i = 0; i < INOPB(fs); i++)
1629 if (dp[i].di_u.inumber)
1630 printf("%d ", dp[i].di_u.inumber);
1631 printf("\n");
1632 }
1633 }
1634 }
1635 simple_unlock(&fs->lfs_interlock);
1636 #endif /* DEBUG */
1637 panic("lfs_vget: dinode not found");
1638 }
1639 simple_lock(&fs->lfs_interlock);
1640 if (fs->lfs_iocount) {
1641 DLOG((DLOG_VNODE, "lfs_vget: dinode %d not found, retrying...\n", ino));
1642 (void)ltsleep(&fs->lfs_iocount, PRIBIO + 1,
1643 "lfs ifind", 1, &fs->lfs_interlock);
1644 } else
1645 retries = LFS_IFIND_RETRIES;
1646 simple_unlock(&fs->lfs_interlock);
1647 goto again;
1648 }
1649 *ip->i_din.ffs1_din = *dip;
1650 brelse(bp);
1651
1652 if (fs->lfs_version > 1) {
1653 ip->i_ffs1_atime = ts.tv_sec;
1654 ip->i_ffs1_atimensec = ts.tv_nsec;
1655 }
1656
1657 lfs_vinit(mp, &vp);
1658
1659 *vpp = vp;
1660
1661 KASSERT(VOP_ISLOCKED(vp));
1662
1663 return (0);
1664 }
1665
1666 /*
1667 * File handle to vnode
1668 */
1669 int
1670 lfs_fhtovp(struct mount *mp, struct fid *fhp, struct vnode **vpp)
1671 {
1672 struct lfid *lfhp;
1673 struct buf *bp;
1674 IFILE *ifp;
1675 int32_t daddr;
1676 struct lfs *fs;
1677
1678 lfhp = (struct lfid *)fhp;
1679 if (lfhp->lfid_ino < LFS_IFILE_INUM)
1680 return ESTALE;
1681
1682 fs = VFSTOUFS(mp)->um_lfs;
1683 if (lfhp->lfid_ident != fs->lfs_ident)
1684 return ESTALE;
1685
1686 if (lfhp->lfid_ino >
1687 ((VTOI(fs->lfs_ivnode)->i_ffs1_size >> fs->lfs_bshift) -
1688 fs->lfs_cleansz - fs->lfs_segtabsz) * fs->lfs_ifpb)
1689 return ESTALE;
1690
1691 if (ufs_ihashlookup(VFSTOUFS(mp)->um_dev, lfhp->lfid_ino) == NULLVP) {
1692 LFS_IENTRY(ifp, fs, lfhp->lfid_ino, bp);
1693 daddr = ifp->if_daddr;
1694 brelse(bp);
1695 if (daddr == LFS_UNUSED_DADDR)
1696 return ESTALE;
1697 }
1698
1699 return (ufs_fhtovp(mp, &lfhp->lfid_ufid, vpp));
1700 }
1701
1702 /*
1703 * Vnode pointer to File handle
1704 */
1705 /* ARGSUSED */
1706 int
1707 lfs_vptofh(struct vnode *vp, struct fid *fhp)
1708 {
1709 struct inode *ip;
1710 struct lfid *lfhp;
1711
1712 ip = VTOI(vp);
1713 lfhp = (struct lfid *)fhp;
1714 lfhp->lfid_len = sizeof(struct lfid);
1715 lfhp->lfid_ino = ip->i_number;
1716 lfhp->lfid_gen = ip->i_gen;
1717 lfhp->lfid_ident = ip->i_lfs->lfs_ident;
1718 return (0);
1719 }
1720
1721 static int
1722 sysctl_lfs_dostats(SYSCTLFN_ARGS)
1723 {
1724 extern struct lfs_stats lfs_stats;
1725 extern int lfs_dostats;
1726 int error;
1727
1728 error = sysctl_lookup(SYSCTLFN_CALL(rnode));
1729 if (error || newp == NULL)
1730 return (error);
1731
1732 if (lfs_dostats == 0)
1733 memset(&lfs_stats, 0, sizeof(lfs_stats));
1734
1735 return (0);
1736 }
1737
1738 struct shortlong {
1739 char *sname;
1740 char *lname;
1741 };
1742
1743 SYSCTL_SETUP(sysctl_vfs_lfs_setup, "sysctl vfs.lfs subtree setup")
1744 {
1745 int i;
1746 extern int lfs_writeindir, lfs_dostats, lfs_clean_vnhead,
1747 lfs_fs_pagetrip;
1748 #ifdef DEBUG
1749 extern int lfs_debug_log_subsys[DLOG_MAX];
1750 struct shortlong dlog_names[DLOG_MAX] = { /* Must match lfs.h ! */
1751 { "rollforward", "Debug roll-forward code" },
1752 { "alloc", "Debug inode allocation and free list" },
1753 { "avail", "Debug space-available-now accounting" },
1754 { "flush", "Debug flush triggers" },
1755 { "lockedlist", "Debug locked list accounting" },
1756 { "vnode_verbose", "Verbose per-vnode-written debugging" },
1757 { "vnode", "Debug vnode use during segment write" },
1758 { "segment", "Debug segment writing" },
1759 { "seguse", "Debug segment used-bytes accounting" },
1760 { "cleaner", "Debug cleaning routines" },
1761 { "mount", "Debug mount/unmount routines" },
1762 { "pagecache", "Debug UBC interactions" },
1763 { "dirop", "Debug directory-operation accounting" },
1764 { "malloc", "Debug private malloc accounting" },
1765 };
1766 #endif /* DEBUG */
1767 struct shortlong stat_names[] = { /* Must match lfs.h! */
1768 { "segsused", "Number of new segments allocated" },
1769 { "psegwrites", "Number of partial-segment writes" },
1770 { "psyncwrites", "Number of synchronous partial-segment"
1771 " writes" },
1772 { "pcleanwrites", "Number of partial-segment writes by the"
1773 " cleaner" },
1774 { "blocktot", "Number of blocks written" },
1775 { "cleanblocks", "Number of blocks written by the cleaner" },
1776 { "ncheckpoints", "Number of checkpoints made" },
1777 { "nwrites", "Number of whole writes" },
1778 { "nsync_writes", "Number of synchronous writes" },
1779 { "wait_exceeded", "Number of times writer waited for"
1780 " cleaner" },
1781 { "write_exceeded", "Number of times writer invoked flush" },
1782 { "flush_invoked", "Number of times flush was invoked" },
1783 { "vflush_invoked", "Number of time vflush was called" },
1784 { "clean_inlocked", "Number of vnodes skipped for VXLOCK" },
1785 { "clean_vnlocked", "Number of vnodes skipped for vget failure" },
1786 };
1787
1788 sysctl_createv(clog, 0, NULL, NULL,
1789 CTLFLAG_PERMANENT,
1790 CTLTYPE_NODE, "vfs", NULL,
1791 NULL, 0, NULL, 0,
1792 CTL_VFS, CTL_EOL);
1793 sysctl_createv(clog, 0, NULL, NULL,
1794 CTLFLAG_PERMANENT,
1795 CTLTYPE_NODE, "lfs",
1796 SYSCTL_DESCR("Log-structured file system"),
1797 NULL, 0, NULL, 0,
1798 CTL_VFS, 5, CTL_EOL);
1799 /*
1800 * XXX the "5" above could be dynamic, thereby eliminating one
1801 * more instance of the "number to vfs" mapping problem, but
1802 * "5" is the order as taken from sys/mount.h
1803 */
1804
1805 sysctl_createv(clog, 0, NULL, NULL,
1806 CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
1807 CTLTYPE_INT, "flushindir", NULL,
1808 NULL, 0, &lfs_writeindir, 0,
1809 CTL_VFS, 5, LFS_WRITEINDIR, CTL_EOL);
1810 sysctl_createv(clog, 0, NULL, NULL,
1811 CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
1812 CTLTYPE_INT, "clean_vnhead", NULL,
1813 NULL, 0, &lfs_clean_vnhead, 0,
1814 CTL_VFS, 5, LFS_CLEAN_VNHEAD, CTL_EOL);
1815 sysctl_createv(clog, 0, NULL, NULL,
1816 CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
1817 CTLTYPE_INT, "dostats",
1818 SYSCTL_DESCR("Maintain statistics on LFS operations"),
1819 sysctl_lfs_dostats, 0, &lfs_dostats, 0,
1820 CTL_VFS, 5, LFS_DOSTATS, CTL_EOL);
1821 sysctl_createv(clog, 0, NULL, NULL,
1822 CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
1823 CTLTYPE_INT, "pagetrip",
1824 SYSCTL_DESCR("How many dirty pages in fs triggers"
1825 " a flush"),
1826 NULL, 0, &lfs_fs_pagetrip, 0,
1827 CTL_VFS, 5, LFS_FS_PAGETRIP, CTL_EOL);
1828 sysctl_createv(clog, 0, NULL, NULL,
1829 CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
1830 CTLTYPE_INT, "rfw",
1831 SYSCTL_DESCR("Use in-kernel roll-forward on mount"),
1832 NULL, 0, &lfs_do_rfw, 0,
1833 CTL_VFS, 5, LFS_DO_RFW, CTL_EOL);
1834
1835 sysctl_createv(clog, 0, NULL, NULL,
1836 CTLFLAG_PERMANENT,
1837 CTLTYPE_NODE, "stats",
1838 SYSCTL_DESCR("Debugging options"),
1839 NULL, 0, NULL, 0,
1840 CTL_VFS, 5, LFS_STATS, CTL_EOL);
1841 for (i = 0; i < sizeof(struct lfs_stats) / sizeof(u_int); i++) {
1842 sysctl_createv(clog, 0, NULL, NULL,
1843 CTLFLAG_PERMANENT|CTLFLAG_READONLY,
1844 CTLTYPE_INT, stat_names[i].sname,
1845 SYSCTL_DESCR(stat_names[i].lname),
1846 NULL, 0, &(((u_int *)&lfs_stats.segsused)[i]),
1847 0, CTL_VFS, 5, LFS_STATS, i, CTL_EOL);
1848 }
1849
1850 #ifdef DEBUG
1851 sysctl_createv(clog, 0, NULL, NULL,
1852 CTLFLAG_PERMANENT,
1853 CTLTYPE_NODE, "debug",
1854 SYSCTL_DESCR("Debugging options"),
1855 NULL, 0, NULL, 0,
1856 CTL_VFS, 5, LFS_DEBUGLOG, CTL_EOL);
1857 for (i = 0; i < DLOG_MAX; i++) {
1858 sysctl_createv(clog, 0, NULL, NULL,
1859 CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
1860 CTLTYPE_INT, dlog_names[i].sname,
1861 SYSCTL_DESCR(dlog_names[i].lname),
1862 NULL, 0, &(lfs_debug_log_subsys[i]), 0,
1863 CTL_VFS, 5, LFS_DEBUGLOG, i, CTL_EOL);
1864 }
1865 #endif
1866 }
1867
1868 /*
1869 * ufs_bmaparray callback function for writing.
1870 *
1871 * Since blocks will be written to the new segment anyway,
1872 * we don't care about current daddr of them.
1873 */
1874 static boolean_t
1875 lfs_issequential_hole(const struct ufsmount *ump,
1876 daddr_t daddr0, daddr_t daddr1)
1877 {
1878 daddr0 = (daddr_t)((int32_t)daddr0); /* XXX ondisk32 */
1879 daddr1 = (daddr_t)((int32_t)daddr1); /* XXX ondisk32 */
1880
1881 KASSERT(daddr0 == UNWRITTEN ||
1882 (0 <= daddr0 && daddr0 <= LFS_MAX_DADDR));
1883 KASSERT(daddr1 == UNWRITTEN ||
1884 (0 <= daddr1 && daddr1 <= LFS_MAX_DADDR));
1885
1886 /* NOTE: all we want to know here is 'hole or not'. */
1887 /* NOTE: UNASSIGNED is converted to 0 by ufs_bmaparray. */
1888
1889 /*
1890 * treat UNWRITTENs and all resident blocks as 'contiguous'
1891 */
1892 if (daddr0 != 0 && daddr1 != 0)
1893 return TRUE;
1894
1895 /*
1896 * both are in hole?
1897 */
1898 if (daddr0 == 0 && daddr1 == 0)
1899 return TRUE; /* all holes are 'contiguous' for us. */
1900
1901 return FALSE;
1902 }
1903
1904 /*
1905 * lfs_gop_write functions exactly like genfs_gop_write, except that
1906 * (1) it requires the seglock to be held by its caller, and sp->fip
1907 * to be properly initialized (it will return without re-initializing
1908 * sp->fip, and without calling lfs_writeseg).
1909 * (2) it uses the remaining space in the segment, rather than VOP_BMAP,
1910 * to determine how large a block it can write at once (though it does
1911 * still use VOP_BMAP to find holes in the file);
1912 * (3) it calls lfs_gatherblock instead of VOP_STRATEGY on its blocks
1913 * (leaving lfs_writeseg to deal with the cluster blocks, so we might
1914 * now have clusters of clusters, ick.)
1915 */
1916 static int
1917 lfs_gop_write(struct vnode *vp, struct vm_page **pgs, int npages, int flags)
1918 {
1919 int i, s, error, run;
1920 int fs_bshift;
1921 vaddr_t kva;
1922 off_t eof, offset, startoffset;
1923 size_t bytes, iobytes, skipbytes;
1924 daddr_t lbn, blkno;
1925 struct vm_page *pg;
1926 struct buf *mbp, *bp;
1927 struct vnode *devvp = VTOI(vp)->i_devvp;
1928 struct inode *ip = VTOI(vp);
1929 struct lfs *fs = ip->i_lfs;
1930 struct segment *sp = fs->lfs_sp;
1931 UVMHIST_FUNC("lfs_gop_write"); UVMHIST_CALLED(ubchist);
1932
1933 ASSERT_SEGLOCK(fs);
1934
1935 /* The Ifile lives in the buffer cache */
1936 KASSERT(vp != fs->lfs_ivnode);
1937
1938 /*
1939 * Sometimes things slip past the filters in lfs_putpages,
1940 * and the pagedaemon tries to write pages---problem is
1941 * that the pagedaemon never acquires the segment lock.
1942 *
1943 * Alternatively, pages that were clean when we called
1944 * genfs_putpages may have become dirty in the meantime. In this
1945 * case the segment header is not properly set up for blocks
1946 * to be added to it.
1947 *
1948 * Unbusy and unclean the pages, and put them on the ACTIVE
1949 * queue under the hypothesis that they couldn't have got here
1950 * unless they were modified *quite* recently.
1951 *
1952 * XXXUBC that last statement is an oversimplification of course.
1953 */
1954 if (!LFS_SEGLOCK_HELD(fs) ||
1955 (ip->i_lfs_iflags & LFSI_NO_GOP_WRITE) ||
1956 (pgs[0]->offset & fs->lfs_bmask) != 0) {
1957 goto tryagain;
1958 }
1959
1960 UVMHIST_LOG(ubchist, "vp %p pgs %p npages %d flags 0x%x",
1961 vp, pgs, npages, flags);
1962
1963 GOP_SIZE(vp, vp->v_size, &eof, GOP_SIZE_WRITE);
1964
1965 if (vp->v_type == VREG)
1966 fs_bshift = vp->v_mount->mnt_fs_bshift;
1967 else
1968 fs_bshift = DEV_BSHIFT;
1969 error = 0;
1970 pg = pgs[0];
1971 startoffset = pg->offset;
1972 bytes = MIN(npages << PAGE_SHIFT, eof - startoffset);
1973 skipbytes = 0;
1974
1975 /* KASSERT(bytes != 0); */
1976 if (bytes == 0)
1977 DLOG((DLOG_PAGE, "lfs_gop_write: ino %d bytes == 0 offset %"
1978 PRId64 "\n", VTOI(vp)->i_number, pgs[0]->offset));
1979
1980 /* Swap PG_DELWRI for PG_PAGEOUT */
1981 for (i = 0; i < npages; i++)
1982 if (pgs[i]->flags & PG_DELWRI) {
1983 KASSERT(!(pgs[i]->flags & PG_PAGEOUT));
1984 pgs[i]->flags &= ~PG_DELWRI;
1985 pgs[i]->flags |= PG_PAGEOUT;
1986 uvmexp.paging++;
1987 uvm_lock_pageq();
1988 uvm_pageunwire(pgs[i]);
1989 uvm_unlock_pageq();
1990 }
1991
1992 /*
1993 * Check to make sure we're starting on a block boundary.
1994 * We'll check later to make sure we always write entire
1995 * blocks (or fragments).
1996 */
1997 if (startoffset & fs->lfs_bmask)
1998 printf("%" PRId64 " & %" PRId64 " = %" PRId64 "\n",
1999 startoffset, fs->lfs_bmask,
2000 startoffset & fs->lfs_bmask);
2001 KASSERT((startoffset & fs->lfs_bmask) == 0);
2002 if (bytes & fs->lfs_ffmask) {
2003 printf("lfs_gop_write: asked to write %ld bytes\n", (long)bytes);
2004 panic("lfs_gop_write: non-integer blocks");
2005 }
2006
2007 /*
2008 * XXX We can deadlock here on pager_map with UVMPAGER_MAPIN_WAITOK.
2009 */
2010 kva = uvm_pagermapin(pgs, npages,
2011 UVMPAGER_MAPIN_WRITE | UVMPAGER_MAPIN_WAITOK);
2012
2013 s = splbio();
2014 simple_lock(&global_v_numoutput_slock);
2015 vp->v_numoutput += 2; /* one for biodone, one for aiodone */
2016 simple_unlock(&global_v_numoutput_slock);
2017 mbp = pool_get(&bufpool, PR_WAITOK);
2018 splx(s);
2019
2020 memset(mbp, 0, sizeof(*bp));
2021 BUF_INIT(mbp);
2022 UVMHIST_LOG(ubchist, "vp %p mbp %p num now %d bytes 0x%x",
2023 vp, mbp, vp->v_numoutput, bytes);
2024 mbp->b_bufsize = npages << PAGE_SHIFT;
2025 mbp->b_data = (void *)kva;
2026 mbp->b_resid = mbp->b_bcount = bytes;
2027 mbp->b_flags = B_BUSY|B_WRITE|B_AGE|B_CALL;
2028 mbp->b_iodone = uvm_aio_biodone;
2029 mbp->b_vp = vp;
2030
2031 bp = NULL;
2032 for (offset = startoffset;
2033 bytes > 0;
2034 offset += iobytes, bytes -= iobytes) {
2035 lbn = offset >> fs_bshift;
2036 error = ufs_bmaparray(vp, lbn, &blkno, NULL, NULL, &run,
2037 lfs_issequential_hole);
2038 if (error) {
2039 UVMHIST_LOG(ubchist, "ufs_bmaparray() -> %d",
2040 error,0,0,0);
2041 skipbytes += bytes;
2042 bytes = 0;
2043 break;
2044 }
2045
2046 iobytes = MIN((((off_t)lbn + 1 + run) << fs_bshift) - offset,
2047 bytes);
2048 if (blkno == (daddr_t)-1) {
2049 skipbytes += iobytes;
2050 continue;
2051 }
2052
2053 /*
2054 * Discover how much we can really pack into this buffer.
2055 */
2056 /* If no room in the current segment, finish it up */
2057 if (sp->sum_bytes_left < sizeof(int32_t) ||
2058 sp->seg_bytes_left < (1 << fs->lfs_bshift)) {
2059 int version;
2060
2061 lfs_updatemeta(sp);
2062
2063 version = sp->fip->fi_version;
2064 (void) lfs_writeseg(fs, sp);
2065
2066 sp->fip->fi_version = version;
2067 sp->fip->fi_ino = ip->i_number;
2068 /* Add the current file to the segment summary. */
2069 ++((SEGSUM *)(sp->segsum))->ss_nfinfo;
2070 sp->sum_bytes_left -= FINFOSIZE;
2071 }
2072 /* Check both for space in segment and space in segsum */
2073 iobytes = MIN(iobytes, (sp->seg_bytes_left >> fs_bshift)
2074 << fs_bshift);
2075 iobytes = MIN(iobytes, (sp->sum_bytes_left / sizeof(int32_t))
2076 << fs_bshift);
2077 KASSERT(iobytes > 0);
2078
2079 /* if it's really one i/o, don't make a second buf */
2080 if (offset == startoffset && iobytes == bytes) {
2081 bp = mbp;
2082 /* correct overcount if there is no second buffer */
2083 s = splbio();
2084 simple_lock(&global_v_numoutput_slock);
2085 --vp->v_numoutput;
2086 simple_unlock(&global_v_numoutput_slock);
2087 splx(s);
2088 } else {
2089 s = splbio();
2090 bp = pool_get(&bufpool, PR_WAITOK);
2091 UVMHIST_LOG(ubchist, "vp %p bp %p num now %d",
2092 vp, bp, vp->v_numoutput, 0);
2093 splx(s);
2094 memset(bp, 0, sizeof(*bp));
2095 BUF_INIT(bp);
2096 bp->b_data = (char *)kva +
2097 (vaddr_t)(offset - pg->offset);
2098 bp->b_resid = bp->b_bcount = iobytes;
2099 bp->b_flags = B_BUSY|B_WRITE|B_CALL;
2100 bp->b_iodone = uvm_aio_biodone1;
2101 }
2102
2103 /* XXX This is silly ... is this necessary? */
2104 bp->b_vp = NULL;
2105 s = splbio();
2106 bgetvp(vp, bp);
2107 splx(s);
2108
2109 bp->b_lblkno = lblkno(fs, offset);
2110 bp->b_private = mbp;
2111 if (devvp->v_type == VBLK) {
2112 bp->b_dev = devvp->v_rdev;
2113 }
2114 VOP_BWRITE(bp);
2115 while (lfs_gatherblock(sp, bp, NULL))
2116 continue;
2117 }
2118
2119 if (skipbytes) {
2120 UVMHIST_LOG(ubchist, "skipbytes %d", skipbytes, 0,0,0);
2121 s = splbio();
2122 if (error) {
2123 mbp->b_flags |= B_ERROR;
2124 mbp->b_error = error;
2125 }
2126 mbp->b_resid -= skipbytes;
2127 if (mbp->b_resid == 0) {
2128 biodone(mbp);
2129 }
2130 splx(s);
2131 }
2132 UVMHIST_LOG(ubchist, "returning 0", 0,0,0,0);
2133 return (0);
2134
2135 tryagain:
2136 /*
2137 * We can't write the pages, for whatever reason.
2138 * Clean up after ourselves, and make the caller try again.
2139 */
2140 simple_lock(&vp->v_interlock);
2141
2142 /* Tell why we're here, if we know */
2143 if (ip->i_lfs_iflags & LFSI_NO_GOP_WRITE)
2144 DLOG((DLOG_PAGE, "lfs_gop_write: clean pages dirtied\n"));
2145 else if ((pgs[0]->offset & fs->lfs_bmask) != 0)
2146 DLOG((DLOG_PAGE, "lfs_gop_write: not on block boundary\n"));
2147 else
2148 DLOG((DLOG_PAGE, "lfs_gop_write: seglock not held\n"));
2149
2150 uvm_lock_pageq();
2151 for (i = 0; i < npages; i++) {
2152 pg = pgs[i];
2153
2154 if (pg->flags & PG_PAGEOUT)
2155 uvmexp.paging--;
2156 if (pg->flags & PG_DELWRI) {
2157 uvm_pageunwire(pg);
2158 }
2159 uvm_pageactivate(pg);
2160 pg->flags &= ~(PG_CLEAN|PG_DELWRI|PG_PAGEOUT|PG_RELEASED);
2161 DLOG((DLOG_PAGE, "pg[%d]->flags = %x\n", i, pg->flags));
2162 DLOG((DLOG_PAGE, "pg[%d]->pqflags = %x\n", i, pg->pqflags));
2163 DLOG((DLOG_PAGE, "pg[%d]->uanon = %p\n", i, pg->uanon));
2164 DLOG((DLOG_PAGE, "pg[%d]->uobject = %p\n", i, pg->uobject));
2165 DLOG((DLOG_PAGE, "pg[%d]->wire_count = %d\n", i,
2166 pg->wire_count));
2167 DLOG((DLOG_PAGE, "pg[%d]->loan_count = %d\n", i,
2168 pg->loan_count));
2169 }
2170 /* uvm_pageunbusy takes care of PG_BUSY, PG_WANTED */
2171 uvm_page_unbusy(pgs, npages);
2172 uvm_unlock_pageq();
2173 simple_unlock(&vp->v_interlock);
2174 return EAGAIN;
2175 }
2176
2177 /*
2178 * finish vnode/inode initialization.
2179 * used by lfs_vget and lfs_fastvget.
2180 */
2181 void
2182 lfs_vinit(struct mount *mp, struct vnode **vpp)
2183 {
2184 struct vnode *vp = *vpp;
2185 struct inode *ip = VTOI(vp);
2186 struct ufsmount *ump = VFSTOUFS(mp);
2187 int i;
2188
2189 ip->i_mode = ip->i_ffs1_mode;
2190 ip->i_ffs_effnlink = ip->i_nlink = ip->i_ffs1_nlink;
2191 ip->i_lfs_osize = ip->i_size = ip->i_ffs1_size;
2192 ip->i_flags = ip->i_ffs1_flags;
2193 ip->i_gen = ip->i_ffs1_gen;
2194 ip->i_uid = ip->i_ffs1_uid;
2195 ip->i_gid = ip->i_ffs1_gid;
2196
2197 ip->i_lfs_effnblks = ip->i_ffs1_blocks;
2198
2199 /*
2200 * Initialize the vnode from the inode, check for aliases. In all
2201 * cases re-init ip, the underlying vnode/inode may have changed.
2202 */
2203 ufs_vinit(mp, lfs_specop_p, lfs_fifoop_p, &vp);
2204 ip = VTOI(vp);
2205
2206 memset(ip->i_lfs_fragsize, 0, NDADDR * sizeof(*ip->i_lfs_fragsize));
2207 if (vp->v_type != VLNK || ip->i_size >= ip->i_ump->um_maxsymlinklen) {
2208 struct lfs *fs = ump->um_lfs;
2209 #ifdef DEBUG
2210 for (i = (ip->i_size + fs->lfs_bsize - 1) >> fs->lfs_bshift;
2211 i < NDADDR; i++) {
2212 if ((vp->v_type == VBLK || vp->v_type == VCHR) &&
2213 i == 0)
2214 continue;
2215 if (ip->i_ffs1_db[i] != 0) {
2216 inconsistent:
2217 lfs_dump_dinode(ip->i_din.ffs1_din);
2218 panic("inconsistent inode");
2219 }
2220 }
2221 for ( ; i < NDADDR + NIADDR; i++) {
2222 if (ip->i_ffs1_ib[i - NDADDR] != 0) {
2223 goto inconsistent;
2224 }
2225 }
2226 #endif /* DEBUG */
2227 for (i = 0; i < NDADDR; i++)
2228 if (ip->i_ffs1_db[i] != 0)
2229 ip->i_lfs_fragsize[i] = blksize(fs, ip, i);
2230 }
2231
2232 #ifdef DIAGNOSTIC
2233 if (vp->v_type == VNON) {
2234 # ifdef DEBUG
2235 lfs_dump_dinode(ip->i_din.ffs1_din);
2236 # endif
2237 panic("lfs_vinit: ino %d is type VNON! (ifmt=%o)\n",
2238 ip->i_number, (ip->i_mode & IFMT) >> 12);
2239 }
2240 #endif /* DIAGNOSTIC */
2241
2242 /*
2243 * Finish inode initialization now that aliasing has been resolved.
2244 */
2245
2246 ip->i_devvp = ump->um_devvp;
2247 VREF(ip->i_devvp);
2248 genfs_node_init(vp, &lfs_genfsops);
2249 uvm_vnp_setsize(vp, ip->i_size);
2250
2251 *vpp = vp;
2252 }
2253
2254 /*
2255 * Warn if the inode portion of the Ifile is too large to be contained
2256 * in the buffer cache, according to LFS_MAX_BUFS / LFS_MAX_BYTES.
2257 * XXX the estimates don't take multiple LFSs into account.
2258 */
2259 static void
2260 warn_ifile_size(struct lfs *fs)
2261 {
2262 KASSERT(LFS_MAX_BUFS > 0);
2263 KASSERT(LFS_MAX_BYTES > 0);
2264 if (((fs->lfs_ivnode->v_size >> fs->lfs_bshift) - fs->lfs_segtabsz) >
2265 LFS_MAX_BUFS) {
2266 simple_lock(&fs->lfs_interlock);
2267 fs->lfs_flags |= LFS_WARNED;
2268 simple_unlock(&fs->lfs_interlock);
2269 log(LOG_WARNING, "lfs_mountfs: inode part of ifile of length %"
2270 PRId64 " cannot fit in %d buffers\n",
2271 fs->lfs_ivnode->v_size -
2272 (fs->lfs_segtabsz << fs->lfs_bshift),
2273 LFS_MAX_BUFS);
2274 log(LOG_WARNING, "lfs_mountfs: please consider increasing NBUF"
2275 " to at least %" PRId64 "\n",
2276 LFS_INVERSE_MAX_BUFS((fs->lfs_ivnode->v_size >>
2277 fs->lfs_bshift) -
2278 fs->lfs_segtabsz));
2279 } else if ((fs->lfs_ivnode->v_size >> fs->lfs_bshift) > LFS_MAX_BUFS) {
2280 /* Same thing but LOG_NOTICE */
2281 simple_lock(&fs->lfs_interlock);
2282 fs->lfs_flags |= LFS_WARNED;
2283 simple_unlock(&fs->lfs_interlock);
2284 log(LOG_NOTICE, "lfs_mountfs: entire ifile of length %"
2285 PRId64 " cannot fit in %d buffers\n",
2286 fs->lfs_ivnode->v_size, LFS_MAX_BUFS);
2287 log(LOG_NOTICE, "lfs_mountfs: please consider increasing NBUF"
2288 " to at least %" PRId64 "\n",
2289 LFS_INVERSE_MAX_BUFS(fs->lfs_ivnode->v_size >>
2290 fs->lfs_bshift));
2291 }
2292
2293 if (fs->lfs_ivnode->v_size - (fs->lfs_segtabsz << fs->lfs_bshift) >
2294 LFS_MAX_BYTES) {
2295 simple_lock(&fs->lfs_interlock);
2296 fs->lfs_flags |= LFS_WARNED;
2297 simple_unlock(&fs->lfs_interlock);
2298 log(LOG_WARNING, "lfs_mountfs: inode part of ifile of length %"
2299 PRId64 " cannot fit in %lu bytes\n",
2300 fs->lfs_ivnode->v_size - (fs->lfs_segtabsz <<
2301 fs->lfs_bshift),
2302 LFS_MAX_BYTES);
2303 log(LOG_WARNING, "lfs_mountfs: please consider increasing"
2304 " BUFPAGES to at least %" PRId64 "\n",
2305 LFS_INVERSE_MAX_BYTES(fs->lfs_ivnode->v_size -
2306 (fs->lfs_segtabsz <<
2307 fs->lfs_bshift)) >>
2308 PAGE_SHIFT);
2309 } else if(fs->lfs_ivnode->v_size > LFS_MAX_BYTES) {
2310 simple_lock(&fs->lfs_interlock);
2311 fs->lfs_flags |= LFS_WARNED;
2312 simple_unlock(&fs->lfs_interlock);
2313 log(LOG_NOTICE, "lfs_mountfs: entire ifile of length %" PRId64
2314 " cannot fit in %lu buffer bytes\n",
2315 fs->lfs_ivnode->v_size, LFS_MAX_BYTES);
2316 log(LOG_NOTICE, "lfs_mountfs: please consider increasing"
2317 " BUFPAGES to at least %" PRId64 "\n",
2318 LFS_INVERSE_MAX_BYTES(fs->lfs_ivnode->v_size -
2319 (fs->lfs_segtabsz <<
2320 fs->lfs_bshift)) >>
2321 PAGE_SHIFT);
2322 }
2323 }
2324