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