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