lfs_vfsops.c revision 1.343 1 /* $NetBSD: lfs_vfsops.c,v 1.343 2015/09/01 06:10:16 dholland 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.343 2015/09/01 06:10:16 dholland 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 #include <sys/syscallvar.h>
96 #include <sys/syscall.h>
97 #include <sys/syscallargs.h>
98
99 #include <miscfs/specfs/specdev.h>
100
101 #include <ufs/lfs/ulfs_quotacommon.h>
102 #include <ufs/lfs/ulfs_inode.h>
103 #include <ufs/lfs/ulfsmount.h>
104 #include <ufs/lfs/ulfs_bswap.h>
105 #include <ufs/lfs/ulfs_extern.h>
106
107 #include <uvm/uvm.h>
108 #include <uvm/uvm_stat.h>
109 #include <uvm/uvm_pager.h>
110 #include <uvm/uvm_pdaemon.h>
111
112 #include <ufs/lfs/lfs.h>
113 #include <ufs/lfs/lfs_accessors.h>
114 #include <ufs/lfs/lfs_kernel.h>
115 #include <ufs/lfs/lfs_extern.h>
116
117 #include <miscfs/genfs/genfs.h>
118 #include <miscfs/genfs/genfs_node.h>
119
120 MODULE(MODULE_CLASS_VFS, lfs, NULL);
121
122 static int lfs_gop_write(struct vnode *, struct vm_page **, int, int);
123 static int lfs_mountfs(struct vnode *, struct mount *, struct lwp *);
124
125 static struct sysctllog *lfs_sysctl_log;
126
127 extern const struct vnodeopv_desc lfs_vnodeop_opv_desc;
128 extern const struct vnodeopv_desc lfs_specop_opv_desc;
129 extern const struct vnodeopv_desc lfs_fifoop_opv_desc;
130
131 pid_t lfs_writer_daemon = 0;
132 lwpid_t lfs_writer_lid = 0;
133 int lfs_do_flush = 0;
134 #ifdef LFS_KERNEL_RFW
135 int lfs_do_rfw = 0;
136 #endif
137
138 const struct vnodeopv_desc * const lfs_vnodeopv_descs[] = {
139 &lfs_vnodeop_opv_desc,
140 &lfs_specop_opv_desc,
141 &lfs_fifoop_opv_desc,
142 NULL,
143 };
144
145 struct vfsops lfs_vfsops = {
146 .vfs_name = MOUNT_LFS,
147 .vfs_min_mount_data = sizeof (struct ulfs_args),
148 .vfs_mount = lfs_mount,
149 .vfs_start = ulfs_start,
150 .vfs_unmount = lfs_unmount,
151 .vfs_root = ulfs_root,
152 .vfs_quotactl = ulfs_quotactl,
153 .vfs_statvfs = lfs_statvfs,
154 .vfs_sync = lfs_sync,
155 .vfs_vget = lfs_vget,
156 .vfs_loadvnode = lfs_loadvnode,
157 .vfs_newvnode = lfs_newvnode,
158 .vfs_fhtovp = lfs_fhtovp,
159 .vfs_vptofh = lfs_vptofh,
160 .vfs_init = lfs_init,
161 .vfs_reinit = lfs_reinit,
162 .vfs_done = lfs_done,
163 .vfs_mountroot = lfs_mountroot,
164 .vfs_snapshot = (void *)eopnotsupp,
165 .vfs_extattrctl = lfs_extattrctl,
166 .vfs_suspendctl = (void *)eopnotsupp,
167 .vfs_renamelock_enter = genfs_renamelock_enter,
168 .vfs_renamelock_exit = genfs_renamelock_exit,
169 .vfs_fsync = (void *)eopnotsupp,
170 .vfs_opv_descs = lfs_vnodeopv_descs
171 };
172
173 const struct genfs_ops lfs_genfsops = {
174 .gop_size = lfs_gop_size,
175 .gop_alloc = ulfs_gop_alloc,
176 .gop_write = lfs_gop_write,
177 .gop_markupdate = ulfs_gop_markupdate,
178 };
179
180 struct shortlong {
181 const char *sname;
182 const char *lname;
183 };
184
185 static int
186 sysctl_lfs_dostats(SYSCTLFN_ARGS)
187 {
188 extern struct lfs_stats lfs_stats;
189 extern int lfs_dostats;
190 int error;
191
192 error = sysctl_lookup(SYSCTLFN_CALL(rnode));
193 if (error || newp == NULL)
194 return (error);
195
196 if (lfs_dostats == 0)
197 memset(&lfs_stats, 0, sizeof(lfs_stats));
198
199 return (0);
200 }
201
202 static void
203 lfs_sysctl_setup(struct sysctllog **clog)
204 {
205 int i;
206 extern int lfs_writeindir, lfs_dostats, lfs_clean_vnhead,
207 lfs_fs_pagetrip, lfs_ignore_lazy_sync;
208 #ifdef DEBUG
209 extern int lfs_debug_log_subsys[DLOG_MAX];
210 struct shortlong dlog_names[DLOG_MAX] = { /* Must match lfs.h ! */
211 { "rollforward", "Debug roll-forward code" },
212 { "alloc", "Debug inode allocation and free list" },
213 { "avail", "Debug space-available-now accounting" },
214 { "flush", "Debug flush triggers" },
215 { "lockedlist", "Debug locked list accounting" },
216 { "vnode_verbose", "Verbose per-vnode-written debugging" },
217 { "vnode", "Debug vnode use during segment write" },
218 { "segment", "Debug segment writing" },
219 { "seguse", "Debug segment used-bytes accounting" },
220 { "cleaner", "Debug cleaning routines" },
221 { "mount", "Debug mount/unmount routines" },
222 { "pagecache", "Debug UBC interactions" },
223 { "dirop", "Debug directory-operation accounting" },
224 { "malloc", "Debug private malloc accounting" },
225 };
226 #endif /* DEBUG */
227 struct shortlong stat_names[] = { /* Must match lfs.h! */
228 { "segsused", "Number of new segments allocated" },
229 { "psegwrites", "Number of partial-segment writes" },
230 { "psyncwrites", "Number of synchronous partial-segment"
231 " writes" },
232 { "pcleanwrites", "Number of partial-segment writes by the"
233 " cleaner" },
234 { "blocktot", "Number of blocks written" },
235 { "cleanblocks", "Number of blocks written by the cleaner" },
236 { "ncheckpoints", "Number of checkpoints made" },
237 { "nwrites", "Number of whole writes" },
238 { "nsync_writes", "Number of synchronous writes" },
239 { "wait_exceeded", "Number of times writer waited for"
240 " cleaner" },
241 { "write_exceeded", "Number of times writer invoked flush" },
242 { "flush_invoked", "Number of times flush was invoked" },
243 { "vflush_invoked", "Number of time vflush was called" },
244 { "clean_inlocked", "Number of vnodes skipped for being dead" },
245 { "clean_vnlocked", "Number of vnodes skipped for vget failure" },
246 { "segs_reclaimed", "Number of segments reclaimed" },
247 };
248
249 sysctl_createv(clog, 0, NULL, NULL,
250 CTLFLAG_PERMANENT,
251 CTLTYPE_NODE, "lfs",
252 SYSCTL_DESCR("Log-structured file system"),
253 NULL, 0, NULL, 0,
254 CTL_VFS, 5, CTL_EOL);
255 /*
256 * XXX the "5" above could be dynamic, thereby eliminating one
257 * more instance of the "number to vfs" mapping problem, but
258 * "5" is the order as taken from sys/mount.h
259 */
260
261 sysctl_createv(clog, 0, NULL, NULL,
262 CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
263 CTLTYPE_INT, "flushindir", NULL,
264 NULL, 0, &lfs_writeindir, 0,
265 CTL_VFS, 5, LFS_WRITEINDIR, CTL_EOL);
266 sysctl_createv(clog, 0, NULL, NULL,
267 CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
268 CTLTYPE_INT, "clean_vnhead", NULL,
269 NULL, 0, &lfs_clean_vnhead, 0,
270 CTL_VFS, 5, LFS_CLEAN_VNHEAD, CTL_EOL);
271 sysctl_createv(clog, 0, NULL, NULL,
272 CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
273 CTLTYPE_INT, "dostats",
274 SYSCTL_DESCR("Maintain statistics on LFS operations"),
275 sysctl_lfs_dostats, 0, &lfs_dostats, 0,
276 CTL_VFS, 5, LFS_DOSTATS, CTL_EOL);
277 sysctl_createv(clog, 0, NULL, NULL,
278 CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
279 CTLTYPE_INT, "pagetrip",
280 SYSCTL_DESCR("How many dirty pages in fs triggers"
281 " a flush"),
282 NULL, 0, &lfs_fs_pagetrip, 0,
283 CTL_VFS, 5, LFS_FS_PAGETRIP, CTL_EOL);
284 sysctl_createv(clog, 0, NULL, NULL,
285 CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
286 CTLTYPE_INT, "ignore_lazy_sync",
287 SYSCTL_DESCR("Lazy Sync is ignored entirely"),
288 NULL, 0, &lfs_ignore_lazy_sync, 0,
289 CTL_VFS, 5, LFS_IGNORE_LAZY_SYNC, CTL_EOL);
290 #ifdef LFS_KERNEL_RFW
291 sysctl_createv(clog, 0, NULL, NULL,
292 CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
293 CTLTYPE_INT, "rfw",
294 SYSCTL_DESCR("Use in-kernel roll-forward on mount"),
295 NULL, 0, &lfs_do_rfw, 0,
296 CTL_VFS, 5, LFS_DO_RFW, CTL_EOL);
297 #endif
298
299 sysctl_createv(clog, 0, NULL, NULL,
300 CTLFLAG_PERMANENT,
301 CTLTYPE_NODE, "stats",
302 SYSCTL_DESCR("Debugging options"),
303 NULL, 0, NULL, 0,
304 CTL_VFS, 5, LFS_STATS, CTL_EOL);
305 for (i = 0; i < sizeof(struct lfs_stats) / sizeof(u_int); i++) {
306 sysctl_createv(clog, 0, NULL, NULL,
307 CTLFLAG_PERMANENT|CTLFLAG_READONLY,
308 CTLTYPE_INT, stat_names[i].sname,
309 SYSCTL_DESCR(stat_names[i].lname),
310 NULL, 0, &(((u_int *)&lfs_stats.segsused)[i]),
311 0, CTL_VFS, 5, LFS_STATS, i, CTL_EOL);
312 }
313
314 #ifdef DEBUG
315 sysctl_createv(clog, 0, NULL, NULL,
316 CTLFLAG_PERMANENT,
317 CTLTYPE_NODE, "debug",
318 SYSCTL_DESCR("Debugging options"),
319 NULL, 0, NULL, 0,
320 CTL_VFS, 5, LFS_DEBUGLOG, CTL_EOL);
321 for (i = 0; i < DLOG_MAX; i++) {
322 sysctl_createv(clog, 0, NULL, NULL,
323 CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
324 CTLTYPE_INT, dlog_names[i].sname,
325 SYSCTL_DESCR(dlog_names[i].lname),
326 NULL, 0, &(lfs_debug_log_subsys[i]), 0,
327 CTL_VFS, 5, LFS_DEBUGLOG, i, CTL_EOL);
328 }
329 #endif
330 }
331
332 /* old cleaner syscall interface. see VOP_FCNTL() */
333 static const struct syscall_package lfs_syscalls[] = {
334 { SYS_lfs_bmapv, 0, (sy_call_t *)sys_lfs_bmapv },
335 { SYS_lfs_markv, 0, (sy_call_t *)sys_lfs_markv },
336 { SYS___lfs_segwait50, 0, (sy_call_t *)sys___lfs_segwait50 },
337 { SYS_lfs_segclean, 0, (sy_call_t *)sys_lfs_segclean },
338 { 0, 0, NULL },
339 };
340
341 static int
342 lfs_modcmd(modcmd_t cmd, void *arg)
343 {
344 int error;
345
346 switch (cmd) {
347 case MODULE_CMD_INIT:
348 error = syscall_establish(NULL, lfs_syscalls);
349 if (error)
350 return error;
351 error = vfs_attach(&lfs_vfsops);
352 if (error != 0) {
353 syscall_disestablish(NULL, lfs_syscalls);
354 break;
355 }
356 lfs_sysctl_setup(&lfs_sysctl_log);
357 break;
358 case MODULE_CMD_FINI:
359 error = vfs_detach(&lfs_vfsops);
360 if (error != 0)
361 break;
362 syscall_disestablish(NULL, lfs_syscalls);
363 sysctl_teardown(&lfs_sysctl_log);
364 break;
365 default:
366 error = ENOTTY;
367 break;
368 }
369
370 return (error);
371 }
372
373 /*
374 * XXX Same structure as FFS inodes? Should we share a common pool?
375 */
376 struct pool lfs_inode_pool;
377 struct pool lfs_dinode_pool;
378 struct pool lfs_inoext_pool;
379 struct pool lfs_lbnentry_pool;
380
381 /*
382 * The writer daemon. UVM keeps track of how many dirty pages we are holding
383 * in lfs_subsys_pages; the daemon flushes the filesystem when this value
384 * crosses the (user-defined) threshhold LFS_MAX_PAGES.
385 */
386 static void
387 lfs_writerd(void *arg)
388 {
389 struct mount *mp, *nmp;
390 struct lfs *fs;
391 struct vfsops *vfs = NULL;
392 int fsflags;
393 int skipc;
394 int lfsc;
395 int wrote_something = 0;
396
397 mutex_enter(&lfs_lock);
398 lfs_writer_daemon = curproc->p_pid;
399 lfs_writer_lid = curlwp->l_lid;
400 mutex_exit(&lfs_lock);
401
402 /* Take an extra reference to the LFS vfsops. */
403 vfs = vfs_getopsbyname(MOUNT_LFS);
404
405 mutex_enter(&lfs_lock);
406 for (;;) {
407 KASSERT(mutex_owned(&lfs_lock));
408 if (wrote_something == 0)
409 mtsleep(&lfs_writer_daemon, PVM, "lfswriter", hz/10 + 1,
410 &lfs_lock);
411
412 KASSERT(mutex_owned(&lfs_lock));
413 wrote_something = 0;
414
415 /*
416 * If global state wants a flush, flush everything.
417 */
418 if (lfs_do_flush || locked_queue_count > LFS_MAX_BUFS ||
419 locked_queue_bytes > LFS_MAX_BYTES ||
420 lfs_subsys_pages > LFS_MAX_PAGES) {
421
422 if (lfs_do_flush) {
423 DLOG((DLOG_FLUSH, "lfs_writerd: lfs_do_flush\n"));
424 }
425 if (locked_queue_count > LFS_MAX_BUFS) {
426 DLOG((DLOG_FLUSH, "lfs_writerd: lqc = %d, max %d\n",
427 locked_queue_count, LFS_MAX_BUFS));
428 }
429 if (locked_queue_bytes > LFS_MAX_BYTES) {
430 DLOG((DLOG_FLUSH, "lfs_writerd: lqb = %ld, max %ld\n",
431 locked_queue_bytes, LFS_MAX_BYTES));
432 }
433 if (lfs_subsys_pages > LFS_MAX_PAGES) {
434 DLOG((DLOG_FLUSH, "lfs_writerd: lssp = %d, max %d\n",
435 lfs_subsys_pages, LFS_MAX_PAGES));
436 }
437
438 lfs_flush(NULL, SEGM_WRITERD, 0);
439 lfs_do_flush = 0;
440 KASSERT(mutex_owned(&lfs_lock));
441 continue;
442 }
443 KASSERT(mutex_owned(&lfs_lock));
444 mutex_exit(&lfs_lock);
445
446 /*
447 * Look through the list of LFSs to see if any of them
448 * have requested pageouts.
449 */
450 mutex_enter(&mountlist_lock);
451 lfsc = 0;
452 skipc = 0;
453 for (mp = TAILQ_FIRST(&mountlist); mp != NULL; mp = nmp) {
454 if (vfs_busy(mp, &nmp)) {
455 ++skipc;
456 continue;
457 }
458 KASSERT(!mutex_owned(&lfs_lock));
459 if (strncmp(mp->mnt_stat.f_fstypename, MOUNT_LFS,
460 sizeof(mp->mnt_stat.f_fstypename)) == 0) {
461 ++lfsc;
462 fs = VFSTOULFS(mp)->um_lfs;
463 daddr_t ooffset = 0;
464 fsflags = SEGM_SINGLE;
465
466 mutex_enter(&lfs_lock);
467 ooffset = lfs_sb_getoffset(fs);
468
469 if (lfs_sb_getnextseg(fs) < lfs_sb_getcurseg(fs) && fs->lfs_nowrap) {
470 /* Don't try to write if we're suspended */
471 mutex_exit(&lfs_lock);
472 vfs_unbusy(mp, false, &nmp);
473 continue;
474 }
475 if (LFS_STARVED_FOR_SEGS(fs)) {
476 mutex_exit(&lfs_lock);
477
478 DLOG((DLOG_FLUSH, "lfs_writerd: need cleaning before writing possible\n"));
479 lfs_wakeup_cleaner(fs);
480 vfs_unbusy(mp, false, &nmp);
481 continue;
482 }
483
484 if ((fs->lfs_dirvcount > LFS_MAX_FSDIROP(fs) ||
485 lfs_dirvcount > LFS_MAX_DIROP) &&
486 fs->lfs_dirops == 0) {
487 fsflags &= ~SEGM_SINGLE;
488 fsflags |= SEGM_CKP;
489 DLOG((DLOG_FLUSH, "lfs_writerd: checkpoint\n"));
490 lfs_flush_fs(fs, fsflags);
491 } else if (fs->lfs_pdflush) {
492 DLOG((DLOG_FLUSH, "lfs_writerd: pdflush set\n"));
493 lfs_flush_fs(fs, fsflags);
494 } else if (!TAILQ_EMPTY(&fs->lfs_pchainhd)) {
495 DLOG((DLOG_FLUSH, "lfs_writerd: pchain non-empty\n"));
496 mutex_exit(&lfs_lock);
497 lfs_writer_enter(fs, "wrdirop");
498 lfs_flush_pchain(fs);
499 lfs_writer_leave(fs);
500 mutex_enter(&lfs_lock);
501 }
502 if (lfs_sb_getoffset(fs) != ooffset)
503 ++wrote_something;
504 mutex_exit(&lfs_lock);
505 }
506 KASSERT(!mutex_owned(&lfs_lock));
507 vfs_unbusy(mp, false, &nmp);
508 }
509 if (lfsc + skipc == 0) {
510 mutex_enter(&lfs_lock);
511 lfs_writer_daemon = 0;
512 lfs_writer_lid = 0;
513 mutex_exit(&lfs_lock);
514 mutex_exit(&mountlist_lock);
515 break;
516 }
517 mutex_exit(&mountlist_lock);
518
519 mutex_enter(&lfs_lock);
520 }
521 KASSERT(!mutex_owned(&lfs_lock));
522 KASSERT(!mutex_owned(&mountlist_lock));
523
524 /* Give up our extra reference so the module can be unloaded. */
525 mutex_enter(&vfs_list_lock);
526 if (vfs != NULL)
527 vfs->vfs_refcount--;
528 mutex_exit(&vfs_list_lock);
529
530 /* Done! */
531 kthread_exit(0);
532 }
533
534 /*
535 * Initialize the filesystem, most work done by ulfs_init.
536 */
537 void
538 lfs_init(void)
539 {
540
541 /*
542 * XXX: should we use separate pools for 32-bit and 64-bit
543 * dinodes?
544 */
545 malloc_type_attach(M_SEGMENT);
546 pool_init(&lfs_inode_pool, sizeof(struct inode), 0, 0, 0,
547 "lfsinopl", &pool_allocator_nointr, IPL_NONE);
548 pool_init(&lfs_dinode_pool, sizeof(union lfs_dinode), 0, 0, 0,
549 "lfsdinopl", &pool_allocator_nointr, IPL_NONE);
550 pool_init(&lfs_inoext_pool, sizeof(struct lfs_inode_ext), 8, 0, 0,
551 "lfsinoextpl", &pool_allocator_nointr, IPL_NONE);
552 pool_init(&lfs_lbnentry_pool, sizeof(struct lbnentry), 0, 0, 0,
553 "lfslbnpool", &pool_allocator_nointr, IPL_NONE);
554 ulfs_init();
555
556 #ifdef DEBUG
557 memset(lfs_log, 0, sizeof(lfs_log));
558 #endif
559 mutex_init(&lfs_lock, MUTEX_DEFAULT, IPL_NONE);
560 cv_init(&locked_queue_cv, "lfsbuf");
561 cv_init(&lfs_writing_cv, "lfsflush");
562 }
563
564 void
565 lfs_reinit(void)
566 {
567 ulfs_reinit();
568 }
569
570 void
571 lfs_done(void)
572 {
573 ulfs_done();
574 mutex_destroy(&lfs_lock);
575 cv_destroy(&locked_queue_cv);
576 cv_destroy(&lfs_writing_cv);
577 pool_destroy(&lfs_inode_pool);
578 pool_destroy(&lfs_dinode_pool);
579 pool_destroy(&lfs_inoext_pool);
580 pool_destroy(&lfs_lbnentry_pool);
581 malloc_type_detach(M_SEGMENT);
582 }
583
584 /*
585 * Called by main() when ulfs is going to be mounted as root.
586 */
587 int
588 lfs_mountroot(void)
589 {
590 extern struct vnode *rootvp;
591 struct lfs *fs = NULL; /* LFS */
592 struct mount *mp;
593 struct lwp *l = curlwp;
594 struct ulfsmount *ump;
595 int error;
596
597 if (device_class(root_device) != DV_DISK)
598 return (ENODEV);
599
600 if (rootdev == NODEV)
601 return (ENODEV);
602 if ((error = vfs_rootmountalloc(MOUNT_LFS, "root_device", &mp))) {
603 vrele(rootvp);
604 return (error);
605 }
606 if ((error = lfs_mountfs(rootvp, mp, l))) {
607 vfs_unbusy(mp, false, NULL);
608 vfs_destroy(mp);
609 return (error);
610 }
611 mountlist_append(mp);
612 ump = VFSTOULFS(mp);
613 fs = ump->um_lfs;
614 lfs_sb_setfsmnt(fs, mp->mnt_stat.f_mntonname);
615 (void)lfs_statvfs(mp, &mp->mnt_stat);
616 vfs_unbusy(mp, false, NULL);
617 setrootfstime((time_t)lfs_sb_gettstamp(VFSTOULFS(mp)->um_lfs));
618 return (0);
619 }
620
621 /*
622 * VFS Operations.
623 *
624 * mount system call
625 */
626 int
627 lfs_mount(struct mount *mp, const char *path, void *data, size_t *data_len)
628 {
629 struct lwp *l = curlwp;
630 struct vnode *devvp;
631 struct ulfs_args *args = data;
632 struct ulfsmount *ump = NULL;
633 struct lfs *fs = NULL; /* LFS */
634 int error = 0, update;
635 mode_t accessmode;
636
637 if (args == NULL)
638 return EINVAL;
639 if (*data_len < sizeof *args)
640 return EINVAL;
641
642 if (mp->mnt_flag & MNT_GETARGS) {
643 ump = VFSTOULFS(mp);
644 if (ump == NULL)
645 return EIO;
646 args->fspec = NULL;
647 *data_len = sizeof *args;
648 return 0;
649 }
650
651 update = mp->mnt_flag & MNT_UPDATE;
652
653 /* Check arguments */
654 if (args->fspec != NULL) {
655 /*
656 * Look up the name and verify that it's sane.
657 */
658 error = namei_simple_user(args->fspec,
659 NSM_FOLLOW_NOEMULROOT, &devvp);
660 if (error != 0)
661 return (error);
662
663 if (!update) {
664 /*
665 * Be sure this is a valid block device
666 */
667 if (devvp->v_type != VBLK)
668 error = ENOTBLK;
669 else if (bdevsw_lookup(devvp->v_rdev) == NULL)
670 error = ENXIO;
671 } else {
672 /*
673 * Be sure we're still naming the same device
674 * used for our initial mount
675 */
676 ump = VFSTOULFS(mp);
677 if (devvp != ump->um_devvp) {
678 if (devvp->v_rdev != ump->um_devvp->v_rdev)
679 error = EINVAL;
680 else {
681 vrele(devvp);
682 devvp = ump->um_devvp;
683 vref(devvp);
684 }
685 }
686 }
687 } else {
688 if (!update) {
689 /* New mounts must have a filename for the device */
690 return (EINVAL);
691 } else {
692 /* Use the extant mount */
693 ump = VFSTOULFS(mp);
694 devvp = ump->um_devvp;
695 vref(devvp);
696 }
697 }
698
699
700 /*
701 * If mount by non-root, then verify that user has necessary
702 * permissions on the device.
703 */
704 if (error == 0) {
705 accessmode = VREAD;
706 if (update ?
707 (mp->mnt_iflag & IMNT_WANTRDWR) != 0 :
708 (mp->mnt_flag & MNT_RDONLY) == 0)
709 accessmode |= VWRITE;
710 vn_lock(devvp, LK_EXCLUSIVE | LK_RETRY);
711 error = kauth_authorize_system(l->l_cred, KAUTH_SYSTEM_MOUNT,
712 KAUTH_REQ_SYSTEM_MOUNT_DEVICE, mp, devvp,
713 KAUTH_ARG(accessmode));
714 VOP_UNLOCK(devvp);
715 }
716
717 if (error) {
718 vrele(devvp);
719 return (error);
720 }
721
722 if (!update) {
723 int flags;
724
725 if (mp->mnt_flag & MNT_RDONLY)
726 flags = FREAD;
727 else
728 flags = FREAD|FWRITE;
729 vn_lock(devvp, LK_EXCLUSIVE | LK_RETRY);
730 error = VOP_OPEN(devvp, flags, FSCRED);
731 VOP_UNLOCK(devvp);
732 if (error)
733 goto fail;
734 error = lfs_mountfs(devvp, mp, l); /* LFS */
735 if (error) {
736 vn_lock(devvp, LK_EXCLUSIVE | LK_RETRY);
737 (void)VOP_CLOSE(devvp, flags, NOCRED);
738 VOP_UNLOCK(devvp);
739 goto fail;
740 }
741
742 ump = VFSTOULFS(mp);
743 fs = ump->um_lfs;
744 } else {
745 /*
746 * Update the mount.
747 */
748
749 /*
750 * The initial mount got a reference on this
751 * device, so drop the one obtained via
752 * namei(), above.
753 */
754 vrele(devvp);
755
756 ump = VFSTOULFS(mp);
757 fs = ump->um_lfs;
758
759 if (fs->lfs_ronly == 0 && (mp->mnt_flag & MNT_RDONLY)) {
760 /*
761 * Changing from read/write to read-only.
762 * XXX: shouldn't we sync here? or does vfs do that?
763 */
764 #ifdef LFS_QUOTA2
765 /* XXX: quotas should remain on when readonly */
766 if (fs->lfs_use_quota2) {
767 error = lfsquota2_umount(mp, 0);
768 if (error) {
769 return error;
770 }
771 }
772 #endif
773 }
774
775 if (fs->lfs_ronly && (mp->mnt_iflag & IMNT_WANTRDWR)) {
776 /*
777 * Changing from read-only to read/write.
778 * Note in the superblocks that we're writing.
779 */
780
781 /* XXX: quotas should have been on even if readonly */
782 if (fs->lfs_use_quota2) {
783 #ifdef LFS_QUOTA2
784 error = lfs_quota2_mount(mp);
785 #else
786 uprintf("%s: no kernel support for this "
787 "filesystem's quotas\n",
788 mp->mnt_stat.f_mntonname);
789 if (mp->mnt_flag & MNT_FORCE) {
790 uprintf("%s: mounting anyway; "
791 "fsck afterwards\n",
792 mp->mnt_stat.f_mntonname);
793 } else {
794 error = EINVAL;
795 }
796 #endif
797 if (error) {
798 return error;
799 }
800 }
801
802 fs->lfs_ronly = 0;
803 if (lfs_sb_getpflags(fs) & LFS_PF_CLEAN) {
804 lfs_sb_setpflags(fs, lfs_sb_getpflags(fs) & ~LFS_PF_CLEAN);
805 lfs_writesuper(fs, lfs_sb_getsboff(fs, 0));
806 lfs_writesuper(fs, lfs_sb_getsboff(fs, 1));
807 }
808 }
809 if (args->fspec == NULL)
810 return EINVAL;
811 }
812
813 error = set_statvfs_info(path, UIO_USERSPACE, args->fspec,
814 UIO_USERSPACE, mp->mnt_op->vfs_name, mp, l);
815 if (error == 0)
816 lfs_sb_setfsmnt(fs, mp->mnt_stat.f_mntonname);
817 return error;
818
819 fail:
820 vrele(devvp);
821 return (error);
822 }
823
824
825 /*
826 * Common code for mount and mountroot
827 * LFS specific
828 */
829 int
830 lfs_mountfs(struct vnode *devvp, struct mount *mp, struct lwp *l)
831 {
832 struct dlfs *tdfs, *dfs, *adfs;
833 struct lfs *fs;
834 struct ulfsmount *ump;
835 struct vnode *vp;
836 struct buf *bp, *abp;
837 dev_t dev;
838 int error, i, ronly, fsbsize;
839 kauth_cred_t cred;
840 CLEANERINFO *cip;
841 SEGUSE *sup;
842 daddr_t sb_addr;
843
844 cred = l ? l->l_cred : NOCRED;
845
846 /*
847 * Flush out any old buffers remaining from a previous use.
848 */
849 vn_lock(devvp, LK_EXCLUSIVE | LK_RETRY);
850 error = vinvalbuf(devvp, V_SAVE, cred, l, 0, 0);
851 VOP_UNLOCK(devvp);
852 if (error)
853 return (error);
854
855 ronly = (mp->mnt_flag & MNT_RDONLY) != 0;
856
857 /* Don't free random space on error. */
858 bp = NULL;
859 abp = NULL;
860 ump = NULL;
861
862 sb_addr = LFS_LABELPAD / DEV_BSIZE;
863 while (1) {
864 /* Read in the superblock. */
865 error = bread(devvp, sb_addr, LFS_SBPAD, 0, &bp);
866 if (error)
867 goto out;
868 dfs = (struct dlfs *)bp->b_data;
869
870 /* Check the basics. */
871 if (dfs->dlfs_magic != LFS_MAGIC || dfs->dlfs_bsize > MAXBSIZE ||
872 dfs->dlfs_version > LFS_VERSION ||
873 dfs->dlfs_bsize < sizeof(struct dlfs)) {
874 DLOG((DLOG_MOUNT, "lfs_mountfs: primary superblock sanity failed\n"));
875 error = EINVAL; /* XXX needs translation */
876 goto out;
877 }
878 if (dfs->dlfs_inodefmt > LFS_MAXINODEFMT) {
879 DLOG((DLOG_MOUNT, "lfs_mountfs: unknown inode format %d\n",
880 dfs->dlfs_inodefmt));
881 error = EINVAL;
882 goto out;
883 }
884
885 if (dfs->dlfs_version == 1)
886 fsbsize = DEV_BSIZE;
887 else {
888 fsbsize = 1 << dfs->dlfs_ffshift;
889 /*
890 * Could be, if the frag size is large enough, that we
891 * don't have the "real" primary superblock. If that's
892 * the case, get the real one, and try again.
893 */
894 if (sb_addr != (dfs->dlfs_sboffs[0] << (dfs->dlfs_ffshift - DEV_BSHIFT))) {
895 DLOG((DLOG_MOUNT, "lfs_mountfs: sb daddr"
896 " 0x%llx is not right, trying 0x%llx\n",
897 (long long)sb_addr,
898 (long long)(dfs->dlfs_sboffs[0] << (dfs->dlfs_ffshift - DEV_BSHIFT))));
899 sb_addr = dfs->dlfs_sboffs[0] << (dfs->dlfs_ffshift - DEV_BSHIFT);
900 brelse(bp, 0);
901 continue;
902 }
903 }
904 break;
905 }
906
907 /*
908 * Check the second superblock to see which is newer; then mount
909 * using the older of the two. This is necessary to ensure that
910 * the filesystem is valid if it was not unmounted cleanly.
911 */
912
913 if (dfs->dlfs_sboffs[1] &&
914 dfs->dlfs_sboffs[1] - LFS_LABELPAD / fsbsize > LFS_SBPAD / fsbsize)
915 {
916 error = bread(devvp, dfs->dlfs_sboffs[1] * (fsbsize / DEV_BSIZE),
917 LFS_SBPAD, 0, &abp);
918 if (error)
919 goto out;
920 adfs = (struct dlfs *)abp->b_data;
921
922 if (dfs->dlfs_version == 1) {
923 /* 1s resolution comparison */
924 if (adfs->dlfs_tstamp < dfs->dlfs_tstamp)
925 tdfs = adfs;
926 else
927 tdfs = dfs;
928 } else {
929 /* monotonic infinite-resolution comparison */
930 if (adfs->dlfs_serial < dfs->dlfs_serial)
931 tdfs = adfs;
932 else
933 tdfs = dfs;
934 }
935
936 /* Check the basics. */
937 if (tdfs->dlfs_magic != LFS_MAGIC ||
938 tdfs->dlfs_bsize > MAXBSIZE ||
939 tdfs->dlfs_version > LFS_VERSION ||
940 tdfs->dlfs_bsize < sizeof(struct dlfs)) {
941 DLOG((DLOG_MOUNT, "lfs_mountfs: alt superblock"
942 " sanity failed\n"));
943 error = EINVAL; /* XXX needs translation */
944 goto out;
945 }
946 } else {
947 DLOG((DLOG_MOUNT, "lfs_mountfs: invalid alt superblock"
948 " daddr=0x%x\n", dfs->dlfs_sboffs[1]));
949 error = EINVAL;
950 goto out;
951 }
952
953 /* Allocate the mount structure, copy the superblock into it. */
954 fs = kmem_zalloc(sizeof(struct lfs), KM_SLEEP);
955 memcpy(&fs->lfs_dlfs_u.u_32, tdfs, sizeof(struct dlfs));
956 fs->lfs_is64 = false; /* XXX notyet */
957 fs->lfs_dobyteswap = false; /* XXX notyet */
958
959 /* Compatibility */
960 if (lfs_sb_getversion(fs) < 2) {
961 lfs_sb_setsumsize(fs, LFS_V1_SUMMARY_SIZE);
962 lfs_sb_setibsize(fs, lfs_sb_getbsize(fs));
963 lfs_sb_sets0addr(fs, lfs_sb_getsboff(fs, 0));
964 lfs_sb_settstamp(fs, lfs_sb_getotstamp(fs));
965 lfs_sb_setfsbtodb(fs, 0);
966 }
967 if (lfs_sb_getresvseg(fs) == 0)
968 lfs_sb_setresvseg(fs, MIN(lfs_sb_getminfreeseg(fs) - 1, \
969 MAX(MIN_RESV_SEGS, lfs_sb_getminfreeseg(fs) / 2 + 1)));
970
971 /*
972 * If we aren't going to be able to write meaningfully to this
973 * filesystem, and were not mounted readonly, bomb out now.
974 */
975 if (lfs_fsbtob(fs, LFS_NRESERVE(fs)) > LFS_MAX_BYTES && !ronly) {
976 DLOG((DLOG_MOUNT, "lfs_mount: to mount this filesystem read/write,"
977 " we need BUFPAGES >= %lld\n",
978 (long long)((bufmem_hiwater / bufmem_lowater) *
979 LFS_INVERSE_MAX_BYTES(
980 lfs_fsbtob(fs, LFS_NRESERVE(fs))) >> PAGE_SHIFT)));
981 kmem_free(fs, sizeof(struct lfs));
982 error = EFBIG; /* XXX needs translation */
983 goto out;
984 }
985
986 /* Before rolling forward, lock so vget will sleep for other procs */
987 if (l != NULL) {
988 fs->lfs_flags = LFS_NOTYET;
989 fs->lfs_rfpid = l->l_proc->p_pid;
990 }
991
992 ump = kmem_zalloc(sizeof(*ump), KM_SLEEP);
993 ump->um_lfs = fs;
994 ump->um_fstype = ULFS1;
995 /* ump->um_cleaner_thread = NULL; */
996 if (sizeof(struct lfs) < LFS_SBPAD) { /* XXX why? */
997 brelse(bp, BC_INVAL);
998 brelse(abp, BC_INVAL);
999 } else {
1000 brelse(bp, 0);
1001 brelse(abp, 0);
1002 }
1003 bp = NULL;
1004 abp = NULL;
1005
1006
1007 /* Set up the I/O information */
1008 fs->lfs_devbsize = DEV_BSIZE;
1009 fs->lfs_iocount = 0;
1010 fs->lfs_diropwait = 0;
1011 fs->lfs_activesb = 0;
1012 lfs_sb_setuinodes(fs, 0);
1013 fs->lfs_ravail = 0;
1014 fs->lfs_favail = 0;
1015 fs->lfs_sbactive = 0;
1016
1017 /* Set up the ifile and lock aflags */
1018 fs->lfs_doifile = 0;
1019 fs->lfs_writer = 0;
1020 fs->lfs_dirops = 0;
1021 fs->lfs_nadirop = 0;
1022 fs->lfs_seglock = 0;
1023 fs->lfs_pdflush = 0;
1024 fs->lfs_sleepers = 0;
1025 fs->lfs_pages = 0;
1026 rw_init(&fs->lfs_fraglock);
1027 rw_init(&fs->lfs_iflock);
1028 cv_init(&fs->lfs_stopcv, "lfsstop");
1029
1030 /* Set the file system readonly/modify bits. */
1031 fs->lfs_ronly = ronly;
1032 if (ronly == 0)
1033 fs->lfs_fmod = 1;
1034
1035 /* ulfs-level information */
1036 fs->um_flags = 0;
1037 fs->um_bptrtodb = lfs_sb_getffshift(fs) - DEV_BSHIFT;
1038 fs->um_seqinc = lfs_sb_getfrag(fs);
1039 fs->um_nindir = lfs_sb_getnindir(fs);
1040 fs->um_lognindir = ffs(lfs_sb_getnindir(fs)) - 1;
1041 fs->um_maxsymlinklen = lfs_sb_getmaxsymlinklen(fs);
1042 fs->um_dirblksiz = LFS_DIRBLKSIZ;
1043 fs->um_maxfilesize = lfs_sb_getmaxfilesize(fs);
1044
1045 /* quota stuff */
1046 /* XXX: these need to come from the on-disk superblock to be used */
1047 fs->lfs_use_quota2 = 0;
1048 fs->lfs_quota_magic = 0;
1049 fs->lfs_quota_flags = 0;
1050 fs->lfs_quotaino[0] = 0;
1051 fs->lfs_quotaino[1] = 0;
1052
1053 /* Initialize the mount structure. */
1054 dev = devvp->v_rdev;
1055 mp->mnt_data = ump;
1056 mp->mnt_stat.f_fsidx.__fsid_val[0] = (long)dev;
1057 mp->mnt_stat.f_fsidx.__fsid_val[1] = makefstype(MOUNT_LFS);
1058 mp->mnt_stat.f_fsid = mp->mnt_stat.f_fsidx.__fsid_val[0];
1059 mp->mnt_stat.f_namemax = LFS_MAXNAMLEN;
1060 mp->mnt_stat.f_iosize = lfs_sb_getbsize(fs);
1061 mp->mnt_flag |= MNT_LOCAL;
1062 mp->mnt_fs_bshift = lfs_sb_getbshift(fs);
1063 if (fs->um_maxsymlinklen > 0)
1064 mp->mnt_iflag |= IMNT_DTYPE;
1065
1066 ump->um_mountp = mp;
1067 ump->um_dev = dev;
1068 ump->um_devvp = devvp;
1069 for (i = 0; i < ULFS_MAXQUOTAS; i++)
1070 ump->um_quotas[i] = NULLVP;
1071 spec_node_setmountedfs(devvp, mp);
1072
1073 /* Set up reserved memory for pageout */
1074 lfs_setup_resblks(fs);
1075 /* Set up vdirop tailq */
1076 TAILQ_INIT(&fs->lfs_dchainhd);
1077 /* and paging tailq */
1078 TAILQ_INIT(&fs->lfs_pchainhd);
1079 /* and delayed segment accounting for truncation list */
1080 LIST_INIT(&fs->lfs_segdhd);
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 DLOG((DLOG_MOUNT, "lfs_mountfs: ifile vget failed, error=%d\n", error));
1090 goto out;
1091 }
1092 fs->lfs_ivnode = vp;
1093 vref(vp);
1094
1095 /* Set up inode bitmap and order free list */
1096 lfs_order_freelist(fs);
1097
1098 /* Set up segment usage flags for the autocleaner. */
1099 fs->lfs_nactive = 0;
1100 fs->lfs_suflags = malloc(2 * sizeof(u_int32_t *),
1101 M_SEGMENT, M_WAITOK);
1102 fs->lfs_suflags[0] = malloc(lfs_sb_getnseg(fs) * sizeof(u_int32_t),
1103 M_SEGMENT, M_WAITOK);
1104 fs->lfs_suflags[1] = malloc(lfs_sb_getnseg(fs) * sizeof(u_int32_t),
1105 M_SEGMENT, M_WAITOK);
1106 memset(fs->lfs_suflags[1], 0, lfs_sb_getnseg(fs) * sizeof(u_int32_t));
1107 for (i = 0; i < lfs_sb_getnseg(fs); i++) {
1108 int changed;
1109
1110 LFS_SEGENTRY(sup, fs, i, bp);
1111 changed = 0;
1112 if (!ronly) {
1113 if (sup->su_nbytes == 0 &&
1114 !(sup->su_flags & SEGUSE_EMPTY)) {
1115 sup->su_flags |= SEGUSE_EMPTY;
1116 ++changed;
1117 } else if (!(sup->su_nbytes == 0) &&
1118 (sup->su_flags & SEGUSE_EMPTY)) {
1119 sup->su_flags &= ~SEGUSE_EMPTY;
1120 ++changed;
1121 }
1122 if (sup->su_flags & (SEGUSE_ACTIVE|SEGUSE_INVAL)) {
1123 sup->su_flags &= ~(SEGUSE_ACTIVE|SEGUSE_INVAL);
1124 ++changed;
1125 }
1126 }
1127 fs->lfs_suflags[0][i] = sup->su_flags;
1128 if (changed)
1129 LFS_WRITESEGENTRY(sup, fs, i, bp);
1130 else
1131 brelse(bp, 0);
1132 }
1133
1134 /*
1135 * XXX: if the fs has quotas, quotas should be on even if
1136 * readonly. Otherwise you can't query the quota info!
1137 * However, that's not how the quota2 code got written and I
1138 * don't know if it'll behave itself if enabled while
1139 * readonly, so for now use the same enable logic as ffs.
1140 *
1141 * XXX: also, if you use the -f behavior allowed here (and
1142 * equivalently above for remount) it will corrupt the fs. It
1143 * ought not to allow that. It should allow mounting readonly
1144 * if there are quotas and the kernel doesn't have the quota
1145 * code, but only readonly.
1146 *
1147 * XXX: and if you use the -f behavior allowed here it will
1148 * likely crash at unmount time (or remount time) because we
1149 * think quotas are active.
1150 *
1151 * Although none of this applies until there's a way to set
1152 * lfs_use_quota2 and have quotas in the fs at all.
1153 */
1154 if (!ronly && fs->lfs_use_quota2) {
1155 #ifdef LFS_QUOTA2
1156 error = lfs_quota2_mount(mp);
1157 #else
1158 uprintf("%s: no kernel support for this filesystem's quotas\n",
1159 mp->mnt_stat.f_mntonname);
1160 if (mp->mnt_flag & MNT_FORCE) {
1161 uprintf("%s: mounting anyway; fsck afterwards\n",
1162 mp->mnt_stat.f_mntonname);
1163 } else {
1164 error = EINVAL;
1165 }
1166 #endif
1167 if (error) {
1168 /* XXX XXX must clean up the stuff immediately above */
1169 printf("lfs_mountfs: sorry, leaking some memory\n");
1170 goto out;
1171 }
1172 }
1173
1174 #ifdef LFS_EXTATTR
1175 /*
1176 * Initialize file-backed extended attributes for ULFS1 file
1177 * systems.
1178 *
1179 * XXX: why is this limited to ULFS1?
1180 */
1181 if (ump->um_fstype == ULFS1) {
1182 ulfs_extattr_uepm_init(&ump->um_extattr);
1183 }
1184 #endif
1185
1186 #ifdef LFS_KERNEL_RFW
1187 lfs_roll_forward(fs, mp, l);
1188 #endif
1189
1190 /* If writing, sb is not clean; record in case of immediate crash */
1191 if (!fs->lfs_ronly) {
1192 lfs_sb_setpflags(fs, lfs_sb_getpflags(fs) & ~LFS_PF_CLEAN);
1193 lfs_writesuper(fs, lfs_sb_getsboff(fs, 0));
1194 lfs_writesuper(fs, lfs_sb_getsboff(fs, 1));
1195 }
1196
1197 /* Allow vget now that roll-forward is complete */
1198 fs->lfs_flags &= ~(LFS_NOTYET);
1199 wakeup(&fs->lfs_flags);
1200
1201 /*
1202 * Initialize the ifile cleaner info with information from
1203 * the superblock.
1204 */
1205 LFS_CLEANERINFO(cip, fs, bp);
1206 lfs_ci_setclean(fs, cip, lfs_sb_getnclean(fs));
1207 lfs_ci_setdirty(fs, cip, lfs_sb_getnseg(fs) - lfs_sb_getnclean(fs));
1208 lfs_ci_setavail(fs, cip, lfs_sb_getavail(fs));
1209 lfs_ci_setbfree(fs, cip, lfs_sb_getbfree(fs));
1210 (void) LFS_BWRITE_LOG(bp); /* Ifile */
1211
1212 /*
1213 * Mark the current segment as ACTIVE, since we're going to
1214 * be writing to it.
1215 */
1216 LFS_SEGENTRY(sup, fs, lfs_dtosn(fs, lfs_sb_getoffset(fs)), bp);
1217 sup->su_flags |= SEGUSE_DIRTY | SEGUSE_ACTIVE;
1218 fs->lfs_nactive++;
1219 LFS_WRITESEGENTRY(sup, fs, lfs_dtosn(fs, lfs_sb_getoffset(fs)), bp); /* Ifile */
1220
1221 /* Now that roll-forward is done, unlock the Ifile */
1222 vput(vp);
1223
1224 /* Start the pagedaemon-anticipating daemon */
1225 mutex_enter(&lfs_lock);
1226 if (lfs_writer_daemon == 0 && lfs_writer_lid == 0 &&
1227 kthread_create(PRI_BIO, 0, NULL,
1228 lfs_writerd, NULL, NULL, "lfs_writer") != 0)
1229 panic("fork lfs_writer");
1230 mutex_exit(&lfs_lock);
1231
1232 printf("WARNING: the log-structured file system is experimental\n"
1233 "WARNING: it may cause system crashes and/or corrupt data\n");
1234
1235 return (0);
1236
1237 out:
1238 if (bp)
1239 brelse(bp, 0);
1240 if (abp)
1241 brelse(abp, 0);
1242 if (ump) {
1243 kmem_free(ump->um_lfs, sizeof(struct lfs));
1244 kmem_free(ump, sizeof(*ump));
1245 mp->mnt_data = NULL;
1246 }
1247
1248 return (error);
1249 }
1250
1251 /*
1252 * unmount system call
1253 */
1254 int
1255 lfs_unmount(struct mount *mp, int mntflags)
1256 {
1257 struct lwp *l = curlwp;
1258 struct ulfsmount *ump;
1259 struct lfs *fs;
1260 int error, flags, ronly;
1261 vnode_t *vp;
1262
1263 flags = 0;
1264 if (mntflags & MNT_FORCE)
1265 flags |= FORCECLOSE;
1266
1267 ump = VFSTOULFS(mp);
1268 fs = ump->um_lfs;
1269
1270 /* Two checkpoints */
1271 lfs_segwrite(mp, SEGM_CKP | SEGM_SYNC);
1272 lfs_segwrite(mp, SEGM_CKP | SEGM_SYNC);
1273
1274 /* wake up the cleaner so it can die */
1275 /* XXX: shouldn't this be *after* the error cases below? */
1276 lfs_wakeup_cleaner(fs);
1277 mutex_enter(&lfs_lock);
1278 while (fs->lfs_sleepers)
1279 mtsleep(&fs->lfs_sleepers, PRIBIO + 1, "lfs_sleepers", 0,
1280 &lfs_lock);
1281 mutex_exit(&lfs_lock);
1282
1283 #ifdef LFS_EXTATTR
1284 if (ump->um_fstype == ULFS1) {
1285 if (ump->um_extattr.uepm_flags & ULFS_EXTATTR_UEPM_STARTED) {
1286 ulfs_extattr_stop(mp, curlwp);
1287 }
1288 if (ump->um_extattr.uepm_flags & ULFS_EXTATTR_UEPM_INITIALIZED) {
1289 ulfs_extattr_uepm_destroy(&ump->um_extattr);
1290 }
1291 }
1292 #endif
1293 #ifdef LFS_QUOTA
1294 if ((error = lfsquota1_umount(mp, flags)) != 0)
1295 return (error);
1296 #endif
1297 #ifdef LFS_QUOTA2
1298 if ((error = lfsquota2_umount(mp, flags)) != 0)
1299 return (error);
1300 #endif
1301 if ((error = vflush(mp, fs->lfs_ivnode, flags)) != 0)
1302 return (error);
1303 if ((error = VFS_SYNC(mp, 1, l->l_cred)) != 0)
1304 return (error);
1305 vp = fs->lfs_ivnode;
1306 mutex_enter(vp->v_interlock);
1307 if (LIST_FIRST(&vp->v_dirtyblkhd))
1308 panic("lfs_unmount: still dirty blocks on ifile vnode");
1309 mutex_exit(vp->v_interlock);
1310
1311 /* Explicitly write the superblock, to update serial and pflags */
1312 lfs_sb_setpflags(fs, lfs_sb_getpflags(fs) | LFS_PF_CLEAN);
1313 lfs_writesuper(fs, lfs_sb_getsboff(fs, 0));
1314 lfs_writesuper(fs, lfs_sb_getsboff(fs, 1));
1315 mutex_enter(&lfs_lock);
1316 while (fs->lfs_iocount)
1317 mtsleep(&fs->lfs_iocount, PRIBIO + 1, "lfs_umount", 0,
1318 &lfs_lock);
1319 mutex_exit(&lfs_lock);
1320
1321 /* Finish with the Ifile, now that we're done with it */
1322 vgone(fs->lfs_ivnode);
1323
1324 ronly = !fs->lfs_ronly;
1325 if (ump->um_devvp->v_type != VBAD)
1326 spec_node_setmountedfs(ump->um_devvp, NULL);
1327 vn_lock(ump->um_devvp, LK_EXCLUSIVE | LK_RETRY);
1328 error = VOP_CLOSE(ump->um_devvp,
1329 ronly ? FREAD : FREAD|FWRITE, NOCRED);
1330 vput(ump->um_devvp);
1331
1332 /* Complain about page leakage */
1333 if (fs->lfs_pages > 0)
1334 printf("lfs_unmount: still claim %d pages (%d in subsystem)\n",
1335 fs->lfs_pages, lfs_subsys_pages);
1336
1337 /* Free per-mount data structures */
1338 free(fs->lfs_ino_bitmap, M_SEGMENT);
1339 free(fs->lfs_suflags[0], M_SEGMENT);
1340 free(fs->lfs_suflags[1], M_SEGMENT);
1341 free(fs->lfs_suflags, M_SEGMENT);
1342 lfs_free_resblks(fs);
1343 cv_destroy(&fs->lfs_stopcv);
1344 rw_destroy(&fs->lfs_fraglock);
1345 rw_destroy(&fs->lfs_iflock);
1346
1347 kmem_free(fs, sizeof(struct lfs));
1348 kmem_free(ump, sizeof(*ump));
1349
1350 mp->mnt_data = NULL;
1351 mp->mnt_flag &= ~MNT_LOCAL;
1352 return (error);
1353 }
1354
1355 /*
1356 * Get file system statistics.
1357 *
1358 * NB: We don't lock to access the superblock here, because it's not
1359 * really that important if we get it wrong.
1360 */
1361 int
1362 lfs_statvfs(struct mount *mp, struct statvfs *sbp)
1363 {
1364 struct lfs *fs;
1365 struct ulfsmount *ump;
1366
1367 ump = VFSTOULFS(mp);
1368 fs = ump->um_lfs;
1369
1370 sbp->f_bsize = lfs_sb_getbsize(fs);
1371 sbp->f_frsize = lfs_sb_getfsize(fs);
1372 sbp->f_iosize = lfs_sb_getbsize(fs);
1373 sbp->f_blocks = LFS_EST_NONMETA(fs) - VTOI(fs->lfs_ivnode)->i_lfs_effnblks;
1374
1375 sbp->f_bfree = LFS_EST_BFREE(fs);
1376 /*
1377 * XXX this should be lfs_sb_getsize (measured in frags)
1378 * rather than dsize (measured in diskblocks). However,
1379 * getsize needs a format version check (for version 1 it
1380 * needs to be blockstofrags'd) so for the moment I'm going to
1381 * leave this... it won't fire wrongly as frags are at least
1382 * as big as diskblocks.
1383 */
1384 KASSERT(sbp->f_bfree <= lfs_sb_getdsize(fs));
1385 #if 0
1386 if (sbp->f_bfree < 0)
1387 sbp->f_bfree = 0;
1388 #endif
1389
1390 sbp->f_bresvd = LFS_EST_RSVD(fs);
1391 if (sbp->f_bfree > sbp->f_bresvd)
1392 sbp->f_bavail = sbp->f_bfree - sbp->f_bresvd;
1393 else
1394 sbp->f_bavail = 0;
1395
1396 /* XXX: huh? - dholland 20150728 */
1397 sbp->f_files = lfs_sb_getbfree(fs) / lfs_btofsb(fs, lfs_sb_getibsize(fs))
1398 * LFS_INOPB(fs);
1399 sbp->f_ffree = sbp->f_files - lfs_sb_getnfiles(fs);
1400 sbp->f_favail = sbp->f_ffree;
1401 sbp->f_fresvd = 0;
1402 copy_statvfs_info(sbp, mp);
1403 return (0);
1404 }
1405
1406 /*
1407 * Go through the disk queues to initiate sandbagged IO;
1408 * go through the inodes to write those that have been modified;
1409 * initiate the writing of the super block if it has been modified.
1410 *
1411 * Note: we are always called with the filesystem marked `MPBUSY'.
1412 */
1413 int
1414 lfs_sync(struct mount *mp, int waitfor, kauth_cred_t cred)
1415 {
1416 int error;
1417 struct lfs *fs;
1418
1419 fs = VFSTOULFS(mp)->um_lfs;
1420 if (fs->lfs_ronly)
1421 return 0;
1422
1423 /* Snapshots should not hose the syncer */
1424 /*
1425 * XXX Sync can block here anyway, since we don't have a very
1426 * XXX good idea of how much data is pending. If it's more
1427 * XXX than a segment and lfs_nextseg is close to the end of
1428 * XXX the log, we'll likely block.
1429 */
1430 mutex_enter(&lfs_lock);
1431 if (fs->lfs_nowrap && lfs_sb_getnextseg(fs) < lfs_sb_getcurseg(fs)) {
1432 mutex_exit(&lfs_lock);
1433 return 0;
1434 }
1435 mutex_exit(&lfs_lock);
1436
1437 lfs_writer_enter(fs, "lfs_dirops");
1438
1439 /* All syncs must be checkpoints until roll-forward is implemented. */
1440 DLOG((DLOG_FLUSH, "lfs_sync at 0x%jx\n",
1441 (uintmax_t)lfs_sb_getoffset(fs)));
1442 error = lfs_segwrite(mp, SEGM_CKP | (waitfor ? SEGM_SYNC : 0));
1443 lfs_writer_leave(fs);
1444 #ifdef LFS_QUOTA
1445 lfs_qsync(mp);
1446 #endif
1447 return (error);
1448 }
1449
1450 /*
1451 * Look up an LFS dinode number to find its incore vnode. If not already
1452 * in core, read it in from the specified device. Return the inode locked.
1453 * Detection and handling of mount points must be done by the calling routine.
1454 */
1455 int
1456 lfs_vget(struct mount *mp, ino_t ino, struct vnode **vpp)
1457 {
1458 int error;
1459
1460 error = vcache_get(mp, &ino, sizeof(ino), vpp);
1461 if (error)
1462 return error;
1463 error = vn_lock(*vpp, LK_EXCLUSIVE);
1464 if (error) {
1465 vrele(*vpp);
1466 *vpp = NULL;
1467 return error;
1468 }
1469
1470 return 0;
1471 }
1472
1473 /*
1474 * Create a new vnode/inode pair and initialize what fields we can.
1475 */
1476 static void
1477 lfs_init_vnode(struct ulfsmount *ump, ino_t ino, struct vnode *vp)
1478 {
1479 struct lfs *fs = ump->um_lfs;
1480 struct inode *ip;
1481 union lfs_dinode *dp;
1482
1483 ASSERT_NO_SEGLOCK(ump->um_lfs);
1484
1485 /* Initialize the inode. */
1486 ip = pool_get(&lfs_inode_pool, PR_WAITOK);
1487 memset(ip, 0, sizeof(*ip));
1488 dp = pool_get(&lfs_dinode_pool, PR_WAITOK);
1489 memset(dp, 0, sizeof(*dp));
1490 ip->inode_ext.lfs = pool_get(&lfs_inoext_pool, PR_WAITOK);
1491 memset(ip->inode_ext.lfs, 0, sizeof(*ip->inode_ext.lfs));
1492 ip->i_din = dp;
1493 ip->i_ump = ump;
1494 ip->i_vnode = vp;
1495 ip->i_dev = ump->um_dev;
1496 lfs_dino_setinumber(fs, dp, ino);
1497 ip->i_number = ino;
1498 ip->i_lfs = ump->um_lfs;
1499 ip->i_lfs_effnblks = 0;
1500 SPLAY_INIT(&ip->i_lfs_lbtree);
1501 ip->i_lfs_nbtree = 0;
1502 LIST_INIT(&ip->i_lfs_segdhd);
1503
1504 vp->v_tag = VT_LFS;
1505 vp->v_op = lfs_vnodeop_p;
1506 vp->v_data = ip;
1507 }
1508
1509 /*
1510 * Undo lfs_init_vnode().
1511 */
1512 static void
1513 lfs_deinit_vnode(struct ulfsmount *ump, struct vnode *vp)
1514 {
1515 struct inode *ip = VTOI(vp);
1516
1517 pool_put(&lfs_inoext_pool, ip->inode_ext.lfs);
1518 pool_put(&lfs_dinode_pool, ip->i_din);
1519 pool_put(&lfs_inode_pool, ip);
1520 vp->v_data = NULL;
1521 }
1522
1523 /*
1524 * Read an inode from disk and initialize this vnode / inode pair.
1525 * Caller assures no other thread will try to load this inode.
1526 */
1527 int
1528 lfs_loadvnode(struct mount *mp, struct vnode *vp,
1529 const void *key, size_t key_len, const void **new_key)
1530 {
1531 struct lfs *fs;
1532 union lfs_dinode *dip;
1533 struct inode *ip;
1534 struct buf *bp;
1535 IFILE *ifp;
1536 struct ulfsmount *ump;
1537 ino_t ino;
1538 daddr_t daddr;
1539 int error, retries;
1540 struct timespec ts;
1541
1542 KASSERT(key_len == sizeof(ino));
1543 memcpy(&ino, key, key_len);
1544
1545 memset(&ts, 0, sizeof ts); /* XXX gcc */
1546
1547 ump = VFSTOULFS(mp);
1548 fs = ump->um_lfs;
1549
1550 /*
1551 * If the filesystem is not completely mounted yet, suspend
1552 * any access requests (wait for roll-forward to complete).
1553 */
1554 mutex_enter(&lfs_lock);
1555 while ((fs->lfs_flags & LFS_NOTYET) && curproc->p_pid != fs->lfs_rfpid)
1556 mtsleep(&fs->lfs_flags, PRIBIO+1, "lfs_notyet", 0,
1557 &lfs_lock);
1558 mutex_exit(&lfs_lock);
1559
1560 /* Translate the inode number to a disk address. */
1561 if (ino == LFS_IFILE_INUM)
1562 daddr = lfs_sb_getidaddr(fs);
1563 else {
1564 /* XXX bounds-check this too */
1565 LFS_IENTRY(ifp, fs, ino, bp);
1566 daddr = lfs_if_getdaddr(fs, ifp);
1567 if (lfs_sb_getversion(fs) > 1) {
1568 ts.tv_sec = lfs_if_getatime_sec(fs, ifp);
1569 ts.tv_nsec = lfs_if_getatime_nsec(fs, ifp);
1570 }
1571
1572 brelse(bp, 0);
1573 if (daddr == LFS_UNUSED_DADDR)
1574 return (ENOENT);
1575 }
1576
1577 /* Allocate/init new vnode/inode. */
1578 lfs_init_vnode(ump, ino, vp);
1579 ip = VTOI(vp);
1580
1581 /* If the cleaner supplied the inode, use it. */
1582 if (curlwp == ump->um_cleaner_thread && ump->um_cleaner_hint != NULL &&
1583 ump->um_cleaner_hint->bi_lbn == LFS_UNUSED_LBN) {
1584 dip = ump->um_cleaner_hint->bi_bp;
1585 if (fs->lfs_is64) {
1586 error = copyin(dip, &ip->i_din->u_64,
1587 sizeof(struct lfs64_dinode));
1588 } else {
1589 error = copyin(dip, &ip->i_din->u_32,
1590 sizeof(struct lfs32_dinode));
1591 }
1592 if (error) {
1593 lfs_deinit_vnode(ump, vp);
1594 return error;
1595 }
1596 KASSERT(ip->i_number == ino);
1597 goto out;
1598 }
1599
1600 /* Read in the disk contents for the inode, copy into the inode. */
1601 retries = 0;
1602 again:
1603 error = bread(ump->um_devvp, LFS_FSBTODB(fs, daddr),
1604 (lfs_sb_getversion(fs) == 1 ? lfs_sb_getbsize(fs) : lfs_sb_getibsize(fs)),
1605 0, &bp);
1606 if (error) {
1607 lfs_deinit_vnode(ump, vp);
1608 return error;
1609 }
1610
1611 dip = lfs_ifind(fs, ino, bp);
1612 if (dip == NULL) {
1613 /* Assume write has not completed yet; try again */
1614 brelse(bp, BC_INVAL);
1615 ++retries;
1616 if (retries <= LFS_IFIND_RETRIES) {
1617 mutex_enter(&lfs_lock);
1618 if (fs->lfs_iocount) {
1619 DLOG((DLOG_VNODE,
1620 "%s: dinode %d not found, retrying...\n",
1621 __func__, ino));
1622 (void)mtsleep(&fs->lfs_iocount, PRIBIO + 1,
1623 "lfs ifind", 1, &lfs_lock);
1624 } else
1625 retries = LFS_IFIND_RETRIES;
1626 mutex_exit(&lfs_lock);
1627 goto again;
1628 }
1629 #ifdef DEBUG
1630 /* If the seglock is held look at the bpp to see
1631 what is there anyway */
1632 mutex_enter(&lfs_lock);
1633 if (fs->lfs_seglock > 0) {
1634 struct buf **bpp;
1635 union lfs_dinode *dp;
1636 int i;
1637
1638 for (bpp = fs->lfs_sp->bpp;
1639 bpp != fs->lfs_sp->cbpp; ++bpp) {
1640 if ((*bpp)->b_vp == fs->lfs_ivnode &&
1641 bpp != fs->lfs_sp->bpp) {
1642 /* Inode block */
1643 printf("%s: block 0x%" PRIx64 ": ",
1644 __func__, (*bpp)->b_blkno);
1645 for (i = 0; i < LFS_INOPB(fs); i++) {
1646 dp = DINO_IN_BLOCK(fs,
1647 (*bpp)->b_data, i);
1648 if (lfs_dino_getinumber(fs, dp))
1649 printf("%ju ",
1650 (uintmax_t)lfs_dino_getinumber(fs, dp));
1651 }
1652 printf("\n");
1653 }
1654 }
1655 }
1656 mutex_exit(&lfs_lock);
1657 #endif /* DEBUG */
1658 panic("lfs_loadvnode: dinode not found");
1659 }
1660 lfs_copy_dinode(fs, ip->i_din, dip);
1661 brelse(bp, 0);
1662
1663 out:
1664 if (lfs_sb_getversion(fs) > 1) {
1665 lfs_dino_setatime(fs, ip->i_din, ts.tv_sec);
1666 lfs_dino_setatimensec(fs, ip->i_din, ts.tv_nsec);
1667 }
1668
1669 lfs_vinit(mp, &vp);
1670
1671 *new_key = &ip->i_number;
1672 return 0;
1673 }
1674
1675 /*
1676 * Create a new inode and initialize this vnode / inode pair.
1677 */
1678 int
1679 lfs_newvnode(struct mount *mp, struct vnode *dvp, struct vnode *vp,
1680 struct vattr *vap, kauth_cred_t cred,
1681 size_t *key_len, const void **new_key)
1682 {
1683 ino_t ino;
1684 struct inode *ip;
1685 struct ulfsmount *ump;
1686 struct lfs *fs;
1687 int error, mode, gen;
1688
1689 KASSERT(dvp != NULL || vap->va_fileid > 0);
1690 KASSERT(dvp != NULL && dvp->v_mount == mp);
1691 KASSERT(vap->va_type != VNON);
1692
1693 *key_len = sizeof(ino);
1694 ump = VFSTOULFS(mp);
1695 fs = ump->um_lfs;
1696 mode = MAKEIMODE(vap->va_type, vap->va_mode);
1697
1698 /*
1699 * Allocate fresh inode. With "dvp == NULL" take the inode number
1700 * and version from "vap".
1701 */
1702 if (dvp == NULL) {
1703 ino = vap->va_fileid;
1704 gen = vap->va_gen;
1705 error = lfs_valloc_fixed(fs, ino, gen);
1706 } else {
1707 error = lfs_valloc(dvp, mode, cred, &ino, &gen);
1708 }
1709 if (error)
1710 return error;
1711
1712 /* Attach inode to vnode. */
1713 lfs_init_vnode(ump, ino, vp);
1714 ip = VTOI(vp);
1715
1716 mutex_enter(&lfs_lock);
1717 LFS_SET_UINO(ip, IN_CHANGE);
1718 mutex_exit(&lfs_lock);
1719
1720 /* Note no blocks yet */
1721 ip->i_lfs_hiblk = -1;
1722
1723 /* Set a new generation number for this inode. */
1724 ip->i_gen = gen;
1725 lfs_dino_setgen(fs, ip->i_din, gen);
1726
1727 memset(ip->i_lfs_fragsize, 0,
1728 ULFS_NDADDR * sizeof(*ip->i_lfs_fragsize));
1729
1730 /* Set uid / gid. */
1731 if (cred == NOCRED || cred == FSCRED) {
1732 ip->i_gid = 0;
1733 ip->i_uid = 0;
1734 } else {
1735 ip->i_gid = VTOI(dvp)->i_gid;
1736 ip->i_uid = kauth_cred_geteuid(cred);
1737 }
1738 DIP_ASSIGN(ip, gid, ip->i_gid);
1739 DIP_ASSIGN(ip, uid, ip->i_uid);
1740
1741 #if defined(LFS_QUOTA) || defined(LFS_QUOTA2)
1742 error = lfs_chkiq(ip, 1, cred, 0);
1743 if (error) {
1744 lfs_vfree(dvp, ino, mode);
1745 lfs_deinit_vnode(ump, vp);
1746
1747 return error;
1748 }
1749 #endif
1750
1751 /* Set type and finalize. */
1752 ip->i_flags = 0;
1753 DIP_ASSIGN(ip, flags, 0);
1754 ip->i_mode = mode;
1755 DIP_ASSIGN(ip, mode, mode);
1756 if (vap->va_rdev != VNOVAL) {
1757 /*
1758 * Want to be able to use this to make badblock
1759 * inodes, so don't truncate the dev number.
1760 */
1761 // XXX clean this up
1762 if (ump->um_fstype == ULFS1)
1763 ip->i_din->u_32.di_rdev = ulfs_rw32(vap->va_rdev,
1764 ULFS_MPNEEDSWAP(fs));
1765 else
1766 ip->i_din->u_64.di_rdev = ulfs_rw64(vap->va_rdev,
1767 ULFS_MPNEEDSWAP(fs));
1768 }
1769 lfs_vinit(mp, &vp);
1770
1771 *new_key = &ip->i_number;
1772 return 0;
1773 }
1774
1775 /*
1776 * File handle to vnode
1777 */
1778 int
1779 lfs_fhtovp(struct mount *mp, struct fid *fhp, struct vnode **vpp)
1780 {
1781 struct lfid lfh;
1782 struct lfs *fs;
1783
1784 if (fhp->fid_len != sizeof(struct lfid))
1785 return EINVAL;
1786
1787 memcpy(&lfh, fhp, sizeof(lfh));
1788 if (lfh.lfid_ino < LFS_IFILE_INUM)
1789 return ESTALE;
1790
1791 fs = VFSTOULFS(mp)->um_lfs;
1792 if (lfh.lfid_ident != lfs_sb_getident(fs))
1793 return ESTALE;
1794
1795 if (lfh.lfid_ino >
1796 ((lfs_dino_getsize(fs, VTOI(fs->lfs_ivnode)->i_din) >> lfs_sb_getbshift(fs)) -
1797 lfs_sb_getcleansz(fs) - lfs_sb_getsegtabsz(fs)) * lfs_sb_getifpb(fs))
1798 return ESTALE;
1799
1800 return (ulfs_fhtovp(mp, &lfh.lfid_ufid, vpp));
1801 }
1802
1803 /*
1804 * Vnode pointer to File handle
1805 */
1806 /* ARGSUSED */
1807 int
1808 lfs_vptofh(struct vnode *vp, struct fid *fhp, size_t *fh_size)
1809 {
1810 struct inode *ip;
1811 struct lfid lfh;
1812
1813 if (*fh_size < sizeof(struct lfid)) {
1814 *fh_size = sizeof(struct lfid);
1815 return E2BIG;
1816 }
1817 *fh_size = sizeof(struct lfid);
1818 ip = VTOI(vp);
1819 memset(&lfh, 0, sizeof(lfh));
1820 lfh.lfid_len = sizeof(struct lfid);
1821 lfh.lfid_ino = ip->i_number;
1822 lfh.lfid_gen = ip->i_gen;
1823 lfh.lfid_ident = lfs_sb_getident(ip->i_lfs);
1824 memcpy(fhp, &lfh, sizeof(lfh));
1825 return (0);
1826 }
1827
1828 /*
1829 * ulfs_bmaparray callback function for writing.
1830 *
1831 * Since blocks will be written to the new segment anyway,
1832 * we don't care about current daddr of them.
1833 */
1834 static bool
1835 lfs_issequential_hole(const struct lfs *fs,
1836 daddr_t daddr0, daddr_t daddr1)
1837 {
1838 (void)fs; /* not used */
1839
1840 daddr0 = (daddr_t)((int32_t)daddr0); /* XXX ondisk32 */
1841 daddr1 = (daddr_t)((int32_t)daddr1); /* XXX ondisk32 */
1842
1843 KASSERT(daddr0 == UNWRITTEN ||
1844 (0 <= daddr0 && daddr0 <= LFS_MAX_DADDR(fs)));
1845 KASSERT(daddr1 == UNWRITTEN ||
1846 (0 <= daddr1 && daddr1 <= LFS_MAX_DADDR(fs)));
1847
1848 /* NOTE: all we want to know here is 'hole or not'. */
1849 /* NOTE: UNASSIGNED is converted to 0 by ulfs_bmaparray. */
1850
1851 /*
1852 * treat UNWRITTENs and all resident blocks as 'contiguous'
1853 */
1854 if (daddr0 != 0 && daddr1 != 0)
1855 return true;
1856
1857 /*
1858 * both are in hole?
1859 */
1860 if (daddr0 == 0 && daddr1 == 0)
1861 return true; /* all holes are 'contiguous' for us. */
1862
1863 return false;
1864 }
1865
1866 /*
1867 * lfs_gop_write functions exactly like genfs_gop_write, except that
1868 * (1) it requires the seglock to be held by its caller, and sp->fip
1869 * to be properly initialized (it will return without re-initializing
1870 * sp->fip, and without calling lfs_writeseg).
1871 * (2) it uses the remaining space in the segment, rather than VOP_BMAP,
1872 * to determine how large a block it can write at once (though it does
1873 * still use VOP_BMAP to find holes in the file);
1874 * (3) it calls lfs_gatherblock instead of VOP_STRATEGY on its blocks
1875 * (leaving lfs_writeseg to deal with the cluster blocks, so we might
1876 * now have clusters of clusters, ick.)
1877 */
1878 static int
1879 lfs_gop_write(struct vnode *vp, struct vm_page **pgs, int npages,
1880 int flags)
1881 {
1882 int i, error, run, haveeof = 0;
1883 int fs_bshift;
1884 vaddr_t kva;
1885 off_t eof, offset, startoffset = 0;
1886 size_t bytes, iobytes, skipbytes;
1887 bool async = (flags & PGO_SYNCIO) == 0;
1888 daddr_t lbn, blkno;
1889 struct vm_page *pg;
1890 struct buf *mbp, *bp;
1891 struct vnode *devvp = VTOI(vp)->i_devvp;
1892 struct inode *ip = VTOI(vp);
1893 struct lfs *fs = ip->i_lfs;
1894 struct segment *sp = fs->lfs_sp;
1895 SEGSUM *ssp;
1896 UVMHIST_FUNC("lfs_gop_write"); UVMHIST_CALLED(ubchist);
1897 const char * failreason = NULL;
1898
1899 ASSERT_SEGLOCK(fs);
1900
1901 /* The Ifile lives in the buffer cache */
1902 KASSERT(vp != fs->lfs_ivnode);
1903
1904 /*
1905 * We don't want to fill the disk before the cleaner has a chance
1906 * to make room for us. If we're in danger of doing that, fail
1907 * with EAGAIN. The caller will have to notice this, unlock
1908 * so the cleaner can run, relock and try again.
1909 *
1910 * We must write everything, however, if our vnode is being
1911 * reclaimed.
1912 */
1913 mutex_enter(vp->v_interlock);
1914 if (LFS_STARVED_FOR_SEGS(fs) && vdead_check(vp, VDEAD_NOWAIT) == 0) {
1915 mutex_exit(vp->v_interlock);
1916 failreason = "Starved for segs and not flushing vp";
1917 goto tryagain;
1918 }
1919 mutex_exit(vp->v_interlock);
1920
1921 /*
1922 * Sometimes things slip past the filters in lfs_putpages,
1923 * and the pagedaemon tries to write pages---problem is
1924 * that the pagedaemon never acquires the segment lock.
1925 *
1926 * Alternatively, pages that were clean when we called
1927 * genfs_putpages may have become dirty in the meantime. In this
1928 * case the segment header is not properly set up for blocks
1929 * to be added to it.
1930 *
1931 * Unbusy and unclean the pages, and put them on the ACTIVE
1932 * queue under the hypothesis that they couldn't have got here
1933 * unless they were modified *quite* recently.
1934 *
1935 * XXXUBC that last statement is an oversimplification of course.
1936 */
1937 if (!LFS_SEGLOCK_HELD(fs)) {
1938 failreason = "Seglock not held";
1939 goto tryagain;
1940 }
1941 if (ip->i_lfs_iflags & LFSI_NO_GOP_WRITE) {
1942 failreason = "Inode with no_gop_write";
1943 goto tryagain;
1944 }
1945 if ((pgs[0]->offset & lfs_sb_getbmask(fs)) != 0) {
1946 failreason = "Bad page offset";
1947 goto tryagain;
1948 }
1949
1950 UVMHIST_LOG(ubchist, "vp %p pgs %p npages %d flags 0x%x",
1951 vp, pgs, npages, flags);
1952
1953 GOP_SIZE(vp, vp->v_size, &eof, 0);
1954 haveeof = 1;
1955
1956 if (vp->v_type == VREG)
1957 fs_bshift = vp->v_mount->mnt_fs_bshift;
1958 else
1959 fs_bshift = DEV_BSHIFT;
1960 error = 0;
1961 pg = pgs[0];
1962 startoffset = pg->offset;
1963 KASSERT(eof >= 0);
1964
1965 if (startoffset >= eof) {
1966 failreason = "Offset beyond EOF";
1967 goto tryagain;
1968 } else
1969 bytes = MIN(npages << PAGE_SHIFT, eof - startoffset);
1970 skipbytes = 0;
1971
1972 KASSERT(bytes != 0);
1973
1974 /* Swap PG_DELWRI for PG_PAGEOUT */
1975 for (i = 0; i < npages; i++) {
1976 if (pgs[i]->flags & PG_DELWRI) {
1977 KASSERT(!(pgs[i]->flags & PG_PAGEOUT));
1978 pgs[i]->flags &= ~PG_DELWRI;
1979 pgs[i]->flags |= PG_PAGEOUT;
1980 uvm_pageout_start(1);
1981 mutex_enter(vp->v_interlock);
1982 mutex_enter(&uvm_pageqlock);
1983 uvm_pageunwire(pgs[i]);
1984 mutex_exit(&uvm_pageqlock);
1985 mutex_exit(vp->v_interlock);
1986 }
1987 }
1988
1989 /*
1990 * Check to make sure we're starting on a block boundary.
1991 * We'll check later to make sure we always write entire
1992 * blocks (or fragments).
1993 */
1994 if (startoffset & lfs_sb_getbmask(fs))
1995 printf("%" PRId64 " & %" PRIu64 " = %" PRId64 "\n",
1996 startoffset, lfs_sb_getbmask(fs),
1997 startoffset & lfs_sb_getbmask(fs));
1998 KASSERT((startoffset & lfs_sb_getbmask(fs)) == 0);
1999 if (bytes & lfs_sb_getffmask(fs)) {
2000 printf("lfs_gop_write: asked to write %ld bytes\n", (long)bytes);
2001 panic("lfs_gop_write: non-integer blocks");
2002 }
2003
2004 /*
2005 * We could deadlock here on pager_map with UVMPAGER_MAPIN_WAITOK.
2006 * If we would, write what we have and try again. If we don't
2007 * have anything to write, we'll have to sleep.
2008 */
2009 ssp = (SEGSUM *)sp->segsum;
2010 if ((kva = uvm_pagermapin(pgs, npages, UVMPAGER_MAPIN_WRITE |
2011 (lfs_ss_getnfinfo(fs, ssp) < 1 ?
2012 UVMPAGER_MAPIN_WAITOK : 0))) == 0x0) {
2013 DLOG((DLOG_PAGE, "lfs_gop_write: forcing write\n"));
2014 #if 0
2015 " with nfinfo=%d at offset 0x%jx\n",
2016 (int)lfs_ss_getnfinfo(fs, ssp),
2017 (uintmax_t)lfs_sb_getoffset(fs)));
2018 #endif
2019 lfs_updatemeta(sp);
2020 lfs_release_finfo(fs);
2021 (void) lfs_writeseg(fs, sp);
2022
2023 lfs_acquire_finfo(fs, ip->i_number, ip->i_gen);
2024
2025 /*
2026 * Having given up all of the pager_map we were holding,
2027 * we can now wait for aiodoned to reclaim it for us
2028 * without fear of deadlock.
2029 */
2030 kva = uvm_pagermapin(pgs, npages, UVMPAGER_MAPIN_WRITE |
2031 UVMPAGER_MAPIN_WAITOK);
2032 }
2033
2034 mbp = getiobuf(NULL, true);
2035 UVMHIST_LOG(ubchist, "vp %p mbp %p num now %d bytes 0x%x",
2036 vp, mbp, vp->v_numoutput, bytes);
2037 mbp->b_bufsize = npages << PAGE_SHIFT;
2038 mbp->b_data = (void *)kva;
2039 mbp->b_resid = mbp->b_bcount = bytes;
2040 mbp->b_cflags = BC_BUSY|BC_AGE;
2041 mbp->b_iodone = uvm_aio_biodone;
2042
2043 bp = NULL;
2044 for (offset = startoffset;
2045 bytes > 0;
2046 offset += iobytes, bytes -= iobytes) {
2047 lbn = offset >> fs_bshift;
2048 error = ulfs_bmaparray(vp, lbn, &blkno, NULL, NULL, &run,
2049 lfs_issequential_hole);
2050 if (error) {
2051 UVMHIST_LOG(ubchist, "ulfs_bmaparray() -> %d",
2052 error,0,0,0);
2053 skipbytes += bytes;
2054 bytes = 0;
2055 break;
2056 }
2057
2058 iobytes = MIN((((off_t)lbn + 1 + run) << fs_bshift) - offset,
2059 bytes);
2060 if (blkno == (daddr_t)-1) {
2061 skipbytes += iobytes;
2062 continue;
2063 }
2064
2065 /*
2066 * Discover how much we can really pack into this buffer.
2067 */
2068 /* If no room in the current segment, finish it up */
2069 if (sp->sum_bytes_left < sizeof(int32_t) ||
2070 sp->seg_bytes_left < (1 << lfs_sb_getbshift(fs))) {
2071 int vers;
2072
2073 lfs_updatemeta(sp);
2074 vers = lfs_fi_getversion(fs, sp->fip);
2075 lfs_release_finfo(fs);
2076 (void) lfs_writeseg(fs, sp);
2077
2078 lfs_acquire_finfo(fs, ip->i_number, vers);
2079 }
2080 /* Check both for space in segment and space in segsum */
2081 iobytes = MIN(iobytes, (sp->seg_bytes_left >> fs_bshift)
2082 << fs_bshift);
2083 iobytes = MIN(iobytes, (sp->sum_bytes_left / sizeof(int32_t))
2084 << fs_bshift);
2085 KASSERT(iobytes > 0);
2086
2087 /* if it's really one i/o, don't make a second buf */
2088 if (offset == startoffset && iobytes == bytes) {
2089 bp = mbp;
2090 /*
2091 * All the LFS output is done by the segwriter. It
2092 * will increment numoutput by one for all the bufs it
2093 * recieves. However this buffer needs one extra to
2094 * account for aiodone.
2095 */
2096 mutex_enter(vp->v_interlock);
2097 vp->v_numoutput++;
2098 mutex_exit(vp->v_interlock);
2099 } else {
2100 bp = getiobuf(NULL, true);
2101 UVMHIST_LOG(ubchist, "vp %p bp %p num now %d",
2102 vp, bp, vp->v_numoutput, 0);
2103 nestiobuf_setup(mbp, bp, offset - pg->offset, iobytes);
2104 /*
2105 * LFS doesn't like async I/O here, dies with
2106 * an assert in lfs_bwrite(). Is that assert
2107 * valid? I retained non-async behaviour when
2108 * converted this to use nestiobuf --pooka
2109 */
2110 bp->b_flags &= ~B_ASYNC;
2111 }
2112
2113 /* XXX This is silly ... is this necessary? */
2114 mutex_enter(&bufcache_lock);
2115 mutex_enter(vp->v_interlock);
2116 bgetvp(vp, bp);
2117 mutex_exit(vp->v_interlock);
2118 mutex_exit(&bufcache_lock);
2119
2120 bp->b_lblkno = lfs_lblkno(fs, offset);
2121 bp->b_private = mbp;
2122 if (devvp->v_type == VBLK) {
2123 bp->b_dev = devvp->v_rdev;
2124 }
2125 VOP_BWRITE(bp->b_vp, bp);
2126 while (lfs_gatherblock(sp, bp, NULL))
2127 continue;
2128 }
2129
2130 nestiobuf_done(mbp, skipbytes, error);
2131 if (skipbytes) {
2132 UVMHIST_LOG(ubchist, "skipbytes %d", skipbytes, 0,0,0);
2133 }
2134 UVMHIST_LOG(ubchist, "returning 0", 0,0,0,0);
2135
2136 if (!async) {
2137 /* Start a segment write. */
2138 UVMHIST_LOG(ubchist, "flushing", 0,0,0,0);
2139 mutex_enter(&lfs_lock);
2140 lfs_flush(fs, 0, 1);
2141 mutex_exit(&lfs_lock);
2142 }
2143
2144 if ((sp->seg_flags & SEGM_SINGLE) && lfs_sb_getcurseg(fs) != fs->lfs_startseg)
2145 return EAGAIN;
2146
2147 return (0);
2148
2149 tryagain:
2150 /*
2151 * We can't write the pages, for whatever reason.
2152 * Clean up after ourselves, and make the caller try again.
2153 */
2154 mutex_enter(vp->v_interlock);
2155
2156 /* Tell why we're here, if we know */
2157 if (failreason != NULL) {
2158 DLOG((DLOG_PAGE, "lfs_gop_write: %s\n", failreason));
2159 }
2160 if (haveeof && startoffset >= eof) {
2161 DLOG((DLOG_PAGE, "lfs_gop_write: ino %d start 0x%" PRIx64
2162 " eof 0x%" PRIx64 " npages=%d\n", VTOI(vp)->i_number,
2163 pgs[0]->offset, eof, npages));
2164 }
2165
2166 mutex_enter(&uvm_pageqlock);
2167 for (i = 0; i < npages; i++) {
2168 pg = pgs[i];
2169
2170 if (pg->flags & PG_PAGEOUT)
2171 uvm_pageout_done(1);
2172 if (pg->flags & PG_DELWRI) {
2173 uvm_pageunwire(pg);
2174 }
2175 uvm_pageactivate(pg);
2176 pg->flags &= ~(PG_CLEAN|PG_DELWRI|PG_PAGEOUT|PG_RELEASED);
2177 DLOG((DLOG_PAGE, "pg[%d] = %p (vp %p off %" PRIx64 ")\n", i, pg,
2178 vp, pg->offset));
2179 DLOG((DLOG_PAGE, "pg[%d]->flags = %x\n", i, pg->flags));
2180 DLOG((DLOG_PAGE, "pg[%d]->pqflags = %x\n", i, pg->pqflags));
2181 DLOG((DLOG_PAGE, "pg[%d]->uanon = %p\n", i, pg->uanon));
2182 DLOG((DLOG_PAGE, "pg[%d]->uobject = %p\n", i, pg->uobject));
2183 DLOG((DLOG_PAGE, "pg[%d]->wire_count = %d\n", i,
2184 pg->wire_count));
2185 DLOG((DLOG_PAGE, "pg[%d]->loan_count = %d\n", i,
2186 pg->loan_count));
2187 }
2188 /* uvm_pageunbusy takes care of PG_BUSY, PG_WANTED */
2189 uvm_page_unbusy(pgs, npages);
2190 mutex_exit(&uvm_pageqlock);
2191 mutex_exit(vp->v_interlock);
2192 return EAGAIN;
2193 }
2194
2195 /*
2196 * finish vnode/inode initialization.
2197 * used by lfs_vget.
2198 */
2199 void
2200 lfs_vinit(struct mount *mp, struct vnode **vpp)
2201 {
2202 struct vnode *vp = *vpp;
2203 struct inode *ip = VTOI(vp);
2204 struct ulfsmount *ump = VFSTOULFS(mp);
2205 struct lfs *fs = ump->um_lfs;
2206 int i;
2207
2208 ip->i_mode = lfs_dino_getmode(fs, ip->i_din);
2209 ip->i_nlink = lfs_dino_getnlink(fs, ip->i_din);
2210 ip->i_lfs_osize = ip->i_size = lfs_dino_getsize(fs, ip->i_din);
2211 ip->i_flags = lfs_dino_getflags(fs, ip->i_din);
2212 ip->i_gen = lfs_dino_getgen(fs, ip->i_din);
2213 ip->i_uid = lfs_dino_getuid(fs, ip->i_din);
2214 ip->i_gid = lfs_dino_getgid(fs, ip->i_din);
2215
2216 ip->i_lfs_effnblks = lfs_dino_getblocks(fs, ip->i_din);
2217 ip->i_lfs_odnlink = lfs_dino_getnlink(fs, ip->i_din);
2218
2219 /*
2220 * Initialize the vnode from the inode, check for aliases. In all
2221 * cases re-init ip, the underlying vnode/inode may have changed.
2222 */
2223 ulfs_vinit(mp, lfs_specop_p, lfs_fifoop_p, &vp);
2224 ip = VTOI(vp);
2225
2226 memset(ip->i_lfs_fragsize, 0, ULFS_NDADDR * sizeof(*ip->i_lfs_fragsize));
2227 if (vp->v_type != VLNK || ip->i_size >= ip->i_lfs->um_maxsymlinklen) {
2228 #ifdef DEBUG
2229 for (i = (ip->i_size + lfs_sb_getbsize(fs) - 1) >> lfs_sb_getbshift(fs);
2230 i < ULFS_NDADDR; i++) {
2231 if ((vp->v_type == VBLK || vp->v_type == VCHR) &&
2232 i == 0)
2233 continue;
2234 if (lfs_dino_getdb(fs, ip->i_din, i) != 0) {
2235 lfs_dump_dinode(fs, ip->i_din);
2236 panic("inconsistent inode (direct)");
2237 }
2238 }
2239 for ( ; i < ULFS_NDADDR + ULFS_NIADDR; i++) {
2240 if (lfs_dino_getib(fs, ip->i_din, i - ULFS_NDADDR) != 0) {
2241 lfs_dump_dinode(fs, ip->i_din);
2242 panic("inconsistent inode (indirect)");
2243 }
2244 }
2245 #endif /* DEBUG */
2246 for (i = 0; i < ULFS_NDADDR; i++)
2247 if (lfs_dino_getdb(fs, ip->i_din, i) != 0)
2248 ip->i_lfs_fragsize[i] = lfs_blksize(fs, ip, i);
2249 }
2250
2251 #ifdef DIAGNOSTIC
2252 if (vp->v_type == VNON) {
2253 # ifdef DEBUG
2254 lfs_dump_dinode(fs, ip->i_din);
2255 # endif
2256 panic("lfs_vinit: ino %llu is type VNON! (ifmt=%o)\n",
2257 (unsigned long long)ip->i_number,
2258 (ip->i_mode & LFS_IFMT) >> 12);
2259 }
2260 #endif /* DIAGNOSTIC */
2261
2262 /*
2263 * Finish inode initialization now that aliasing has been resolved.
2264 */
2265
2266 ip->i_devvp = ump->um_devvp;
2267 vref(ip->i_devvp);
2268 #if defined(LFS_QUOTA) || defined(LFS_QUOTA2)
2269 ulfsquota_init(ip);
2270 #endif
2271 genfs_node_init(vp, &lfs_genfsops);
2272 uvm_vnp_setsize(vp, ip->i_size);
2273
2274 /* Initialize hiblk from file size */
2275 ip->i_lfs_hiblk = lfs_lblkno(ip->i_lfs, ip->i_size + lfs_sb_getbsize(ip->i_lfs) - 1) - 1;
2276
2277 *vpp = vp;
2278 }
2279
2280 /*
2281 * Resize the filesystem to contain the specified number of segments.
2282 */
2283 int
2284 lfs_resize_fs(struct lfs *fs, int newnsegs)
2285 {
2286 SEGUSE *sup;
2287 CLEANERINFO *cip;
2288 struct buf *bp, *obp;
2289 daddr_t olast, nlast, ilast, noff, start, end;
2290 struct vnode *ivp;
2291 struct inode *ip;
2292 int error, badnews, inc, oldnsegs;
2293 int sbbytes, csbbytes, gain, cgain;
2294 int i;
2295
2296 /* Only support v2 and up */
2297 if (lfs_sb_getversion(fs) < 2)
2298 return EOPNOTSUPP;
2299
2300 /* If we're doing nothing, do it fast */
2301 oldnsegs = lfs_sb_getnseg(fs);
2302 if (newnsegs == oldnsegs)
2303 return 0;
2304
2305 /* We always have to have two superblocks */
2306 if (newnsegs <= lfs_dtosn(fs, lfs_sb_getsboff(fs, 1)))
2307 /* XXX this error code is rather nonsense */
2308 return EFBIG;
2309
2310 ivp = fs->lfs_ivnode;
2311 ip = VTOI(ivp);
2312 error = 0;
2313
2314 /* Take the segment lock so no one else calls lfs_newseg() */
2315 lfs_seglock(fs, SEGM_PROT);
2316
2317 /*
2318 * Make sure the segments we're going to be losing, if any,
2319 * are in fact empty. We hold the seglock, so their status
2320 * cannot change underneath us. Count the superblocks we lose,
2321 * while we're at it.
2322 */
2323 sbbytes = csbbytes = 0;
2324 cgain = 0;
2325 for (i = newnsegs; i < oldnsegs; i++) {
2326 LFS_SEGENTRY(sup, fs, i, bp);
2327 badnews = sup->su_nbytes || !(sup->su_flags & SEGUSE_INVAL);
2328 if (sup->su_flags & SEGUSE_SUPERBLOCK)
2329 sbbytes += LFS_SBPAD;
2330 if (!(sup->su_flags & SEGUSE_DIRTY)) {
2331 ++cgain;
2332 if (sup->su_flags & SEGUSE_SUPERBLOCK)
2333 csbbytes += LFS_SBPAD;
2334 }
2335 brelse(bp, 0);
2336 if (badnews) {
2337 error = EBUSY;
2338 goto out;
2339 }
2340 }
2341
2342 /* Note old and new segment table endpoints, and old ifile size */
2343 olast = lfs_sb_getcleansz(fs) + lfs_sb_getsegtabsz(fs);
2344 nlast = howmany(newnsegs, lfs_sb_getsepb(fs)) + lfs_sb_getcleansz(fs);
2345 ilast = ivp->v_size >> lfs_sb_getbshift(fs);
2346 noff = nlast - olast;
2347
2348 /*
2349 * Make sure no one can use the Ifile while we change it around.
2350 * Even after taking the iflock we need to make sure no one still
2351 * is holding Ifile buffers, so we get each one, to drain them.
2352 * (XXX this could be done better.)
2353 */
2354 rw_enter(&fs->lfs_iflock, RW_WRITER);
2355 for (i = 0; i < ilast; i++) {
2356 /* XXX what to do if bread fails? */
2357 bread(ivp, i, lfs_sb_getbsize(fs), 0, &bp);
2358 brelse(bp, 0);
2359 }
2360
2361 /* Allocate new Ifile blocks */
2362 for (i = ilast; i < ilast + noff; i++) {
2363 if (lfs_balloc(ivp, i * lfs_sb_getbsize(fs), lfs_sb_getbsize(fs), NOCRED, 0,
2364 &bp) != 0)
2365 panic("balloc extending ifile");
2366 memset(bp->b_data, 0, lfs_sb_getbsize(fs));
2367 VOP_BWRITE(bp->b_vp, bp);
2368 }
2369
2370 /* Register new ifile size */
2371 ip->i_size += noff * lfs_sb_getbsize(fs);
2372 lfs_dino_setsize(fs, ip->i_din, ip->i_size);
2373 uvm_vnp_setsize(ivp, ip->i_size);
2374
2375 /* Copy the inode table to its new position */
2376 if (noff != 0) {
2377 if (noff < 0) {
2378 start = nlast;
2379 end = ilast + noff;
2380 inc = 1;
2381 } else {
2382 start = ilast + noff - 1;
2383 end = nlast - 1;
2384 inc = -1;
2385 }
2386 for (i = start; i != end; i += inc) {
2387 if (bread(ivp, i, lfs_sb_getbsize(fs),
2388 B_MODIFY, &bp) != 0)
2389 panic("resize: bread dst blk failed");
2390 if (bread(ivp, i - noff, lfs_sb_getbsize(fs),
2391 0, &obp))
2392 panic("resize: bread src blk failed");
2393 memcpy(bp->b_data, obp->b_data, lfs_sb_getbsize(fs));
2394 VOP_BWRITE(bp->b_vp, bp);
2395 brelse(obp, 0);
2396 }
2397 }
2398
2399 /* If we are expanding, write the new empty SEGUSE entries */
2400 if (newnsegs > oldnsegs) {
2401 for (i = oldnsegs; i < newnsegs; i++) {
2402 if ((error = bread(ivp, i / lfs_sb_getsepb(fs) +
2403 lfs_sb_getcleansz(fs), lfs_sb_getbsize(fs),
2404 B_MODIFY, &bp)) != 0)
2405 panic("lfs: ifile read: %d", error);
2406 while ((i + 1) % lfs_sb_getsepb(fs) && i < newnsegs) {
2407 sup = &((SEGUSE *)bp->b_data)[i % lfs_sb_getsepb(fs)];
2408 memset(sup, 0, sizeof(*sup));
2409 i++;
2410 }
2411 VOP_BWRITE(bp->b_vp, bp);
2412 }
2413 }
2414
2415 /* Zero out unused superblock offsets */
2416 for (i = 2; i < LFS_MAXNUMSB; i++)
2417 if (lfs_dtosn(fs, lfs_sb_getsboff(fs, i)) >= newnsegs)
2418 lfs_sb_setsboff(fs, i, 0x0);
2419
2420 /*
2421 * Correct superblock entries that depend on fs size.
2422 * The computations of these are as follows:
2423 *
2424 * size = lfs_segtod(fs, nseg)
2425 * dsize = lfs_segtod(fs, nseg - minfreeseg) - lfs_btofsb(#super * LFS_SBPAD)
2426 * bfree = dsize - lfs_btofsb(fs, bsize * nseg / 2) - blocks_actually_used
2427 * avail = lfs_segtod(fs, nclean) - lfs_btofsb(#clean_super * LFS_SBPAD)
2428 * + (lfs_segtod(fs, 1) - (offset - curseg))
2429 * - lfs_segtod(fs, minfreeseg - (minfreeseg / 2))
2430 *
2431 * XXX - we should probably adjust minfreeseg as well.
2432 */
2433 gain = (newnsegs - oldnsegs);
2434 lfs_sb_setnseg(fs, newnsegs);
2435 lfs_sb_setsegtabsz(fs, nlast - lfs_sb_getcleansz(fs));
2436 lfs_sb_addsize(fs, gain * lfs_btofsb(fs, lfs_sb_getssize(fs)));
2437 lfs_sb_adddsize(fs, gain * lfs_btofsb(fs, lfs_sb_getssize(fs)) - lfs_btofsb(fs, sbbytes));
2438 lfs_sb_addbfree(fs, gain * lfs_btofsb(fs, lfs_sb_getssize(fs)) - lfs_btofsb(fs, sbbytes)
2439 - gain * lfs_btofsb(fs, lfs_sb_getbsize(fs) / 2));
2440 if (gain > 0) {
2441 lfs_sb_addnclean(fs, gain);
2442 lfs_sb_addavail(fs, gain * lfs_btofsb(fs, lfs_sb_getssize(fs)));
2443 } else {
2444 lfs_sb_subnclean(fs, cgain);
2445 lfs_sb_subavail(fs, cgain * lfs_btofsb(fs, lfs_sb_getssize(fs)) -
2446 lfs_btofsb(fs, csbbytes));
2447 }
2448
2449 /* Resize segment flag cache */
2450 fs->lfs_suflags[0] = realloc(fs->lfs_suflags[0],
2451 lfs_sb_getnseg(fs) * sizeof(u_int32_t), M_SEGMENT, M_WAITOK);
2452 fs->lfs_suflags[1] = realloc(fs->lfs_suflags[1],
2453 lfs_sb_getnseg(fs) * sizeof(u_int32_t), M_SEGMENT, M_WAITOK);
2454 for (i = oldnsegs; i < newnsegs; i++)
2455 fs->lfs_suflags[0][i] = fs->lfs_suflags[1][i] = 0x0;
2456
2457 /* Truncate Ifile if necessary */
2458 if (noff < 0)
2459 lfs_truncate(ivp, ivp->v_size + (noff << lfs_sb_getbshift(fs)), 0,
2460 NOCRED);
2461
2462 /* Update cleaner info so the cleaner can die */
2463 /* XXX what to do if bread fails? */
2464 bread(ivp, 0, lfs_sb_getbsize(fs), B_MODIFY, &bp);
2465 cip = bp->b_data;
2466 lfs_ci_setclean(fs, cip, lfs_sb_getnclean(fs));
2467 lfs_ci_setdirty(fs, cip, lfs_sb_getnseg(fs) - lfs_sb_getnclean(fs));
2468 VOP_BWRITE(bp->b_vp, bp);
2469
2470 /* Let Ifile accesses proceed */
2471 rw_exit(&fs->lfs_iflock);
2472
2473 out:
2474 lfs_segunlock(fs);
2475 return error;
2476 }
2477
2478 /*
2479 * Extended attribute dispatch
2480 */
2481 int
2482 lfs_extattrctl(struct mount *mp, int cmd, struct vnode *vp,
2483 int attrnamespace, const char *attrname)
2484 {
2485 #ifdef LFS_EXTATTR
2486 struct ulfsmount *ump;
2487
2488 ump = VFSTOULFS(mp);
2489 if (ump->um_fstype == ULFS1) {
2490 return ulfs_extattrctl(mp, cmd, vp, attrnamespace, attrname);
2491 }
2492 #endif
2493 return vfs_stdextattrctl(mp, cmd, vp, attrnamespace, attrname);
2494 }
2495