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