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