1 /*-
2 * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
3 *
4 * Copyright 1998, 2000 Marshall Kirk McKusick.
5 * Copyright 2009, 2010 Jeffrey W. Roberson <[email protected]>
6 * All rights reserved.
7 *
8 * The soft updates code is derived from the appendix of a University
9 * of Michigan technical report (Gregory R. Ganger and Yale N. Patt,
10 * "Soft Updates: A Solution to the Metadata Update Problem in File
11 * Systems", CSE-TR-254-95, August 1995).
12 *
13 * Further information about soft updates can be obtained from:
14 *
15 * Marshall Kirk McKusick http://www.mckusick.com/softdep/
16 * 1614 Oxford Street [email protected]
17 * Berkeley, CA 94709-1608 +1-510-843-9542
18 * USA
19 *
20 * Redistribution and use in source and binary forms, with or without
21 * modification, are permitted provided that the following conditions
22 * are met:
23 *
24 * 1. Redistributions of source code must retain the above copyright
25 * notice, this list of conditions and the following disclaimer.
26 * 2. Redistributions in binary form must reproduce the above copyright
27 * notice, this list of conditions and the following disclaimer in the
28 * documentation and/or other materials provided with the distribution.
29 *
30 * THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS OR
31 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
32 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
33 * IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY DIRECT, INDIRECT,
34 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
35 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
36 * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
37 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
38 * TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
39 * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
40 *
41 * from: @(#)ffs_softdep.c 9.59 (McKusick) 6/21/00
42 */
43
44 #include <sys/cdefs.h>
45 __FBSDID("$FreeBSD$");
46
47 #include "opt_ffs.h"
48 #include "opt_quota.h"
49 #include "opt_ddb.h"
50
51 /*
52 * For now we want the safety net that the DEBUG flag provides.
53 */
54 #ifndef DEBUG
55 #define DEBUG
56 #endif
57
58 #include <sys/param.h>
59 #include <sys/kernel.h>
60 #include <sys/systm.h>
61 #include <sys/bio.h>
62 #include <sys/buf.h>
63 #include <sys/kdb.h>
64 #include <sys/kthread.h>
65 #include <sys/ktr.h>
66 #include <sys/limits.h>
67 #include <sys/lock.h>
68 #include <sys/malloc.h>
69 #include <sys/mount.h>
70 #include <sys/mutex.h>
71 #include <sys/namei.h>
72 #include <sys/priv.h>
73 #include <sys/proc.h>
74 #include <sys/racct.h>
75 #include <sys/rwlock.h>
76 #include <sys/stat.h>
77 #include <sys/sysctl.h>
78 #include <sys/syslog.h>
79 #include <sys/vnode.h>
80 #include <sys/conf.h>
81
82 #include <ufs/ufs/dir.h>
83 #include <ufs/ufs/extattr.h>
84 #include <ufs/ufs/quota.h>
85 #include <ufs/ufs/inode.h>
86 #include <ufs/ufs/ufsmount.h>
87 #include <ufs/ffs/fs.h>
88 #include <ufs/ffs/softdep.h>
89 #include <ufs/ffs/ffs_extern.h>
90 #include <ufs/ufs/ufs_extern.h>
91
92 #include <vm/vm.h>
93 #include <vm/vm_extern.h>
94 #include <vm/vm_object.h>
95
96 #include <geom/geom.h>
97
98 #include <ddb/ddb.h>
99
100 #define KTR_SUJ 0 /* Define to KTR_SPARE. */
101
102 #ifndef SOFTUPDATES
103
104 int
softdep_flushfiles(oldmnt,flags,td)105 softdep_flushfiles(oldmnt, flags, td)
106 struct mount *oldmnt;
107 int flags;
108 struct thread *td;
109 {
110
111 panic("softdep_flushfiles called");
112 }
113
114 int
softdep_mount(devvp,mp,fs,cred)115 softdep_mount(devvp, mp, fs, cred)
116 struct vnode *devvp;
117 struct mount *mp;
118 struct fs *fs;
119 struct ucred *cred;
120 {
121
122 return (0);
123 }
124
125 void
softdep_initialize()126 softdep_initialize()
127 {
128
129 return;
130 }
131
132 void
softdep_uninitialize()133 softdep_uninitialize()
134 {
135
136 return;
137 }
138
139 void
softdep_unmount(mp)140 softdep_unmount(mp)
141 struct mount *mp;
142 {
143
144 panic("softdep_unmount called");
145 }
146
147 void
softdep_setup_sbupdate(ump,fs,bp)148 softdep_setup_sbupdate(ump, fs, bp)
149 struct ufsmount *ump;
150 struct fs *fs;
151 struct buf *bp;
152 {
153
154 panic("softdep_setup_sbupdate called");
155 }
156
157 void
softdep_setup_inomapdep(bp,ip,newinum,mode)158 softdep_setup_inomapdep(bp, ip, newinum, mode)
159 struct buf *bp;
160 struct inode *ip;
161 ino_t newinum;
162 int mode;
163 {
164
165 panic("softdep_setup_inomapdep called");
166 }
167
168 void
softdep_setup_blkmapdep(bp,mp,newblkno,frags,oldfrags)169 softdep_setup_blkmapdep(bp, mp, newblkno, frags, oldfrags)
170 struct buf *bp;
171 struct mount *mp;
172 ufs2_daddr_t newblkno;
173 int frags;
174 int oldfrags;
175 {
176
177 panic("softdep_setup_blkmapdep called");
178 }
179
180 void
softdep_setup_allocdirect(ip,lbn,newblkno,oldblkno,newsize,oldsize,bp)181 softdep_setup_allocdirect(ip, lbn, newblkno, oldblkno, newsize, oldsize, bp)
182 struct inode *ip;
183 ufs_lbn_t lbn;
184 ufs2_daddr_t newblkno;
185 ufs2_daddr_t oldblkno;
186 long newsize;
187 long oldsize;
188 struct buf *bp;
189 {
190
191 panic("softdep_setup_allocdirect called");
192 }
193
194 void
softdep_setup_allocext(ip,lbn,newblkno,oldblkno,newsize,oldsize,bp)195 softdep_setup_allocext(ip, lbn, newblkno, oldblkno, newsize, oldsize, bp)
196 struct inode *ip;
197 ufs_lbn_t lbn;
198 ufs2_daddr_t newblkno;
199 ufs2_daddr_t oldblkno;
200 long newsize;
201 long oldsize;
202 struct buf *bp;
203 {
204
205 panic("softdep_setup_allocext called");
206 }
207
208 void
softdep_setup_allocindir_page(ip,lbn,bp,ptrno,newblkno,oldblkno,nbp)209 softdep_setup_allocindir_page(ip, lbn, bp, ptrno, newblkno, oldblkno, nbp)
210 struct inode *ip;
211 ufs_lbn_t lbn;
212 struct buf *bp;
213 int ptrno;
214 ufs2_daddr_t newblkno;
215 ufs2_daddr_t oldblkno;
216 struct buf *nbp;
217 {
218
219 panic("softdep_setup_allocindir_page called");
220 }
221
222 void
softdep_setup_allocindir_meta(nbp,ip,bp,ptrno,newblkno)223 softdep_setup_allocindir_meta(nbp, ip, bp, ptrno, newblkno)
224 struct buf *nbp;
225 struct inode *ip;
226 struct buf *bp;
227 int ptrno;
228 ufs2_daddr_t newblkno;
229 {
230
231 panic("softdep_setup_allocindir_meta called");
232 }
233
234 void
softdep_journal_freeblocks(ip,cred,length,flags)235 softdep_journal_freeblocks(ip, cred, length, flags)
236 struct inode *ip;
237 struct ucred *cred;
238 off_t length;
239 int flags;
240 {
241
242 panic("softdep_journal_freeblocks called");
243 }
244
245 void
softdep_journal_fsync(ip)246 softdep_journal_fsync(ip)
247 struct inode *ip;
248 {
249
250 panic("softdep_journal_fsync called");
251 }
252
253 void
softdep_setup_freeblocks(ip,length,flags)254 softdep_setup_freeblocks(ip, length, flags)
255 struct inode *ip;
256 off_t length;
257 int flags;
258 {
259
260 panic("softdep_setup_freeblocks called");
261 }
262
263 void
softdep_freefile(pvp,ino,mode)264 softdep_freefile(pvp, ino, mode)
265 struct vnode *pvp;
266 ino_t ino;
267 int mode;
268 {
269
270 panic("softdep_freefile called");
271 }
272
273 int
softdep_setup_directory_add(bp,dp,diroffset,newinum,newdirbp,isnewblk)274 softdep_setup_directory_add(bp, dp, diroffset, newinum, newdirbp, isnewblk)
275 struct buf *bp;
276 struct inode *dp;
277 off_t diroffset;
278 ino_t newinum;
279 struct buf *newdirbp;
280 int isnewblk;
281 {
282
283 panic("softdep_setup_directory_add called");
284 }
285
286 void
softdep_change_directoryentry_offset(bp,dp,base,oldloc,newloc,entrysize)287 softdep_change_directoryentry_offset(bp, dp, base, oldloc, newloc, entrysize)
288 struct buf *bp;
289 struct inode *dp;
290 caddr_t base;
291 caddr_t oldloc;
292 caddr_t newloc;
293 int entrysize;
294 {
295
296 panic("softdep_change_directoryentry_offset called");
297 }
298
299 void
softdep_setup_remove(bp,dp,ip,isrmdir)300 softdep_setup_remove(bp, dp, ip, isrmdir)
301 struct buf *bp;
302 struct inode *dp;
303 struct inode *ip;
304 int isrmdir;
305 {
306
307 panic("softdep_setup_remove called");
308 }
309
310 void
softdep_setup_directory_change(bp,dp,ip,newinum,isrmdir)311 softdep_setup_directory_change(bp, dp, ip, newinum, isrmdir)
312 struct buf *bp;
313 struct inode *dp;
314 struct inode *ip;
315 ino_t newinum;
316 int isrmdir;
317 {
318
319 panic("softdep_setup_directory_change called");
320 }
321
322 void
softdep_setup_blkfree(mp,bp,blkno,frags,wkhd)323 softdep_setup_blkfree(mp, bp, blkno, frags, wkhd)
324 struct mount *mp;
325 struct buf *bp;
326 ufs2_daddr_t blkno;
327 int frags;
328 struct workhead *wkhd;
329 {
330
331 panic("%s called", __FUNCTION__);
332 }
333
334 void
softdep_setup_inofree(mp,bp,ino,wkhd)335 softdep_setup_inofree(mp, bp, ino, wkhd)
336 struct mount *mp;
337 struct buf *bp;
338 ino_t ino;
339 struct workhead *wkhd;
340 {
341
342 panic("%s called", __FUNCTION__);
343 }
344
345 void
softdep_setup_unlink(dp,ip)346 softdep_setup_unlink(dp, ip)
347 struct inode *dp;
348 struct inode *ip;
349 {
350
351 panic("%s called", __FUNCTION__);
352 }
353
354 void
softdep_setup_link(dp,ip)355 softdep_setup_link(dp, ip)
356 struct inode *dp;
357 struct inode *ip;
358 {
359
360 panic("%s called", __FUNCTION__);
361 }
362
363 void
softdep_revert_link(dp,ip)364 softdep_revert_link(dp, ip)
365 struct inode *dp;
366 struct inode *ip;
367 {
368
369 panic("%s called", __FUNCTION__);
370 }
371
372 void
softdep_setup_rmdir(dp,ip)373 softdep_setup_rmdir(dp, ip)
374 struct inode *dp;
375 struct inode *ip;
376 {
377
378 panic("%s called", __FUNCTION__);
379 }
380
381 void
softdep_revert_rmdir(dp,ip)382 softdep_revert_rmdir(dp, ip)
383 struct inode *dp;
384 struct inode *ip;
385 {
386
387 panic("%s called", __FUNCTION__);
388 }
389
390 void
softdep_setup_create(dp,ip)391 softdep_setup_create(dp, ip)
392 struct inode *dp;
393 struct inode *ip;
394 {
395
396 panic("%s called", __FUNCTION__);
397 }
398
399 void
softdep_revert_create(dp,ip)400 softdep_revert_create(dp, ip)
401 struct inode *dp;
402 struct inode *ip;
403 {
404
405 panic("%s called", __FUNCTION__);
406 }
407
408 void
softdep_setup_mkdir(dp,ip)409 softdep_setup_mkdir(dp, ip)
410 struct inode *dp;
411 struct inode *ip;
412 {
413
414 panic("%s called", __FUNCTION__);
415 }
416
417 void
softdep_revert_mkdir(dp,ip)418 softdep_revert_mkdir(dp, ip)
419 struct inode *dp;
420 struct inode *ip;
421 {
422
423 panic("%s called", __FUNCTION__);
424 }
425
426 void
softdep_setup_dotdot_link(dp,ip)427 softdep_setup_dotdot_link(dp, ip)
428 struct inode *dp;
429 struct inode *ip;
430 {
431
432 panic("%s called", __FUNCTION__);
433 }
434
435 int
softdep_prealloc(vp,waitok)436 softdep_prealloc(vp, waitok)
437 struct vnode *vp;
438 int waitok;
439 {
440
441 panic("%s called", __FUNCTION__);
442 }
443
444 int
softdep_journal_lookup(mp,vpp)445 softdep_journal_lookup(mp, vpp)
446 struct mount *mp;
447 struct vnode **vpp;
448 {
449
450 return (ENOENT);
451 }
452
453 void
softdep_change_linkcnt(ip)454 softdep_change_linkcnt(ip)
455 struct inode *ip;
456 {
457
458 panic("softdep_change_linkcnt called");
459 }
460
461 void
softdep_load_inodeblock(ip)462 softdep_load_inodeblock(ip)
463 struct inode *ip;
464 {
465
466 panic("softdep_load_inodeblock called");
467 }
468
469 void
softdep_update_inodeblock(ip,bp,waitfor)470 softdep_update_inodeblock(ip, bp, waitfor)
471 struct inode *ip;
472 struct buf *bp;
473 int waitfor;
474 {
475
476 panic("softdep_update_inodeblock called");
477 }
478
479 int
softdep_fsync(vp)480 softdep_fsync(vp)
481 struct vnode *vp; /* the "in_core" copy of the inode */
482 {
483
484 return (0);
485 }
486
487 void
softdep_fsync_mountdev(vp)488 softdep_fsync_mountdev(vp)
489 struct vnode *vp;
490 {
491
492 return;
493 }
494
495 int
softdep_flushworklist(oldmnt,countp,td)496 softdep_flushworklist(oldmnt, countp, td)
497 struct mount *oldmnt;
498 int *countp;
499 struct thread *td;
500 {
501
502 *countp = 0;
503 return (0);
504 }
505
506 int
softdep_sync_metadata(struct vnode * vp)507 softdep_sync_metadata(struct vnode *vp)
508 {
509
510 panic("softdep_sync_metadata called");
511 }
512
513 int
softdep_sync_buf(struct vnode * vp,struct buf * bp,int waitfor)514 softdep_sync_buf(struct vnode *vp, struct buf *bp, int waitfor)
515 {
516
517 panic("softdep_sync_buf called");
518 }
519
520 int
softdep_slowdown(vp)521 softdep_slowdown(vp)
522 struct vnode *vp;
523 {
524
525 panic("softdep_slowdown called");
526 }
527
528 int
softdep_request_cleanup(fs,vp,cred,resource)529 softdep_request_cleanup(fs, vp, cred, resource)
530 struct fs *fs;
531 struct vnode *vp;
532 struct ucred *cred;
533 int resource;
534 {
535
536 return (0);
537 }
538
539 int
softdep_check_suspend(struct mount * mp,struct vnode * devvp,int softdep_depcnt,int softdep_accdepcnt,int secondary_writes,int secondary_accwrites)540 softdep_check_suspend(struct mount *mp,
541 struct vnode *devvp,
542 int softdep_depcnt,
543 int softdep_accdepcnt,
544 int secondary_writes,
545 int secondary_accwrites)
546 {
547 struct bufobj *bo;
548 int error;
549
550 (void) softdep_depcnt,
551 (void) softdep_accdepcnt;
552
553 bo = &devvp->v_bufobj;
554 ASSERT_BO_WLOCKED(bo);
555
556 MNT_ILOCK(mp);
557 while (mp->mnt_secondary_writes != 0) {
558 BO_UNLOCK(bo);
559 msleep(&mp->mnt_secondary_writes, MNT_MTX(mp),
560 (PUSER - 1) | PDROP, "secwr", 0);
561 BO_LOCK(bo);
562 MNT_ILOCK(mp);
563 }
564
565 /*
566 * Reasons for needing more work before suspend:
567 * - Dirty buffers on devvp.
568 * - Secondary writes occurred after start of vnode sync loop
569 */
570 error = 0;
571 if (bo->bo_numoutput > 0 ||
572 bo->bo_dirty.bv_cnt > 0 ||
573 secondary_writes != 0 ||
574 mp->mnt_secondary_writes != 0 ||
575 secondary_accwrites != mp->mnt_secondary_accwrites)
576 error = EAGAIN;
577 BO_UNLOCK(bo);
578 return (error);
579 }
580
581 void
softdep_get_depcounts(struct mount * mp,int * softdepactivep,int * softdepactiveaccp)582 softdep_get_depcounts(struct mount *mp,
583 int *softdepactivep,
584 int *softdepactiveaccp)
585 {
586 (void) mp;
587 *softdepactivep = 0;
588 *softdepactiveaccp = 0;
589 }
590
591 void
softdep_buf_append(bp,wkhd)592 softdep_buf_append(bp, wkhd)
593 struct buf *bp;
594 struct workhead *wkhd;
595 {
596
597 panic("softdep_buf_appendwork called");
598 }
599
600 void
softdep_inode_append(ip,cred,wkhd)601 softdep_inode_append(ip, cred, wkhd)
602 struct inode *ip;
603 struct ucred *cred;
604 struct workhead *wkhd;
605 {
606
607 panic("softdep_inode_appendwork called");
608 }
609
610 void
softdep_freework(wkhd)611 softdep_freework(wkhd)
612 struct workhead *wkhd;
613 {
614
615 panic("softdep_freework called");
616 }
617
618 #else
619
620 FEATURE(softupdates, "FFS soft-updates support");
621
622 static SYSCTL_NODE(_debug, OID_AUTO, softdep, CTLFLAG_RW, 0,
623 "soft updates stats");
624 static SYSCTL_NODE(_debug_softdep, OID_AUTO, total, CTLFLAG_RW, 0,
625 "total dependencies allocated");
626 static SYSCTL_NODE(_debug_softdep, OID_AUTO, highuse, CTLFLAG_RW, 0,
627 "high use dependencies allocated");
628 static SYSCTL_NODE(_debug_softdep, OID_AUTO, current, CTLFLAG_RW, 0,
629 "current dependencies allocated");
630 static SYSCTL_NODE(_debug_softdep, OID_AUTO, write, CTLFLAG_RW, 0,
631 "current dependencies written");
632
633 unsigned long dep_current[D_LAST + 1];
634 unsigned long dep_highuse[D_LAST + 1];
635 unsigned long dep_total[D_LAST + 1];
636 unsigned long dep_write[D_LAST + 1];
637
638 #define SOFTDEP_TYPE(type, str, long) \
639 static MALLOC_DEFINE(M_ ## type, #str, long); \
640 SYSCTL_ULONG(_debug_softdep_total, OID_AUTO, str, CTLFLAG_RD, \
641 &dep_total[D_ ## type], 0, ""); \
642 SYSCTL_ULONG(_debug_softdep_current, OID_AUTO, str, CTLFLAG_RD, \
643 &dep_current[D_ ## type], 0, ""); \
644 SYSCTL_ULONG(_debug_softdep_highuse, OID_AUTO, str, CTLFLAG_RD, \
645 &dep_highuse[D_ ## type], 0, ""); \
646 SYSCTL_ULONG(_debug_softdep_write, OID_AUTO, str, CTLFLAG_RD, \
647 &dep_write[D_ ## type], 0, "");
648
649 SOFTDEP_TYPE(PAGEDEP, pagedep, "File page dependencies");
650 SOFTDEP_TYPE(INODEDEP, inodedep, "Inode dependencies");
651 SOFTDEP_TYPE(BMSAFEMAP, bmsafemap,
652 "Block or frag allocated from cyl group map");
653 SOFTDEP_TYPE(NEWBLK, newblk, "New block or frag allocation dependency");
654 SOFTDEP_TYPE(ALLOCDIRECT, allocdirect, "Block or frag dependency for an inode");
655 SOFTDEP_TYPE(INDIRDEP, indirdep, "Indirect block dependencies");
656 SOFTDEP_TYPE(ALLOCINDIR, allocindir, "Block dependency for an indirect block");
657 SOFTDEP_TYPE(FREEFRAG, freefrag, "Previously used frag for an inode");
658 SOFTDEP_TYPE(FREEBLKS, freeblks, "Blocks freed from an inode");
659 SOFTDEP_TYPE(FREEFILE, freefile, "Inode deallocated");
660 SOFTDEP_TYPE(DIRADD, diradd, "New directory entry");
661 SOFTDEP_TYPE(MKDIR, mkdir, "New directory");
662 SOFTDEP_TYPE(DIRREM, dirrem, "Directory entry deleted");
663 SOFTDEP_TYPE(NEWDIRBLK, newdirblk, "Unclaimed new directory block");
664 SOFTDEP_TYPE(FREEWORK, freework, "free an inode block");
665 SOFTDEP_TYPE(FREEDEP, freedep, "track a block free");
666 SOFTDEP_TYPE(JADDREF, jaddref, "Journal inode ref add");
667 SOFTDEP_TYPE(JREMREF, jremref, "Journal inode ref remove");
668 SOFTDEP_TYPE(JMVREF, jmvref, "Journal inode ref move");
669 SOFTDEP_TYPE(JNEWBLK, jnewblk, "Journal new block");
670 SOFTDEP_TYPE(JFREEBLK, jfreeblk, "Journal free block");
671 SOFTDEP_TYPE(JFREEFRAG, jfreefrag, "Journal free frag");
672 SOFTDEP_TYPE(JSEG, jseg, "Journal segment");
673 SOFTDEP_TYPE(JSEGDEP, jsegdep, "Journal segment complete");
674 SOFTDEP_TYPE(SBDEP, sbdep, "Superblock write dependency");
675 SOFTDEP_TYPE(JTRUNC, jtrunc, "Journal inode truncation");
676 SOFTDEP_TYPE(JFSYNC, jfsync, "Journal fsync complete");
677
678 static MALLOC_DEFINE(M_SENTINEL, "sentinel", "Worklist sentinel");
679
680 static MALLOC_DEFINE(M_SAVEDINO, "savedino", "Saved inodes");
681 static MALLOC_DEFINE(M_JBLOCKS, "jblocks", "Journal block locations");
682 static MALLOC_DEFINE(M_MOUNTDATA, "softdep", "Softdep per-mount data");
683
684 #define M_SOFTDEP_FLAGS (M_WAITOK)
685
686 /*
687 * translate from workitem type to memory type
688 * MUST match the defines above, such that memtype[D_XXX] == M_XXX
689 */
690 static struct malloc_type *memtype[] = {
691 NULL,
692 M_PAGEDEP,
693 M_INODEDEP,
694 M_BMSAFEMAP,
695 M_NEWBLK,
696 M_ALLOCDIRECT,
697 M_INDIRDEP,
698 M_ALLOCINDIR,
699 M_FREEFRAG,
700 M_FREEBLKS,
701 M_FREEFILE,
702 M_DIRADD,
703 M_MKDIR,
704 M_DIRREM,
705 M_NEWDIRBLK,
706 M_FREEWORK,
707 M_FREEDEP,
708 M_JADDREF,
709 M_JREMREF,
710 M_JMVREF,
711 M_JNEWBLK,
712 M_JFREEBLK,
713 M_JFREEFRAG,
714 M_JSEG,
715 M_JSEGDEP,
716 M_SBDEP,
717 M_JTRUNC,
718 M_JFSYNC,
719 M_SENTINEL
720 };
721
722 #define DtoM(type) (memtype[type])
723
724 /*
725 * Names of malloc types.
726 */
727 #define TYPENAME(type) \
728 ((unsigned)(type) <= D_LAST && (unsigned)(type) >= D_FIRST ? \
729 memtype[type]->ks_shortdesc : "???")
730 /*
731 * End system adaptation definitions.
732 */
733
734 #define DOTDOT_OFFSET offsetof(struct dirtemplate, dotdot_ino)
735 #define DOT_OFFSET offsetof(struct dirtemplate, dot_ino)
736
737 /*
738 * Internal function prototypes.
739 */
740 static void check_clear_deps(struct mount *);
741 static void softdep_error(char *, int);
742 static int softdep_process_worklist(struct mount *, int);
743 static int softdep_waitidle(struct mount *, int);
744 static void drain_output(struct vnode *);
745 static struct buf *getdirtybuf(struct buf *, struct rwlock *, int);
746 static int check_inodedep_free(struct inodedep *);
747 static void clear_remove(struct mount *);
748 static void clear_inodedeps(struct mount *);
749 static void unlinked_inodedep(struct mount *, struct inodedep *);
750 static void clear_unlinked_inodedep(struct inodedep *);
751 static struct inodedep *first_unlinked_inodedep(struct ufsmount *);
752 static int flush_pagedep_deps(struct vnode *, struct mount *,
753 struct diraddhd *);
754 static int free_pagedep(struct pagedep *);
755 static int flush_newblk_dep(struct vnode *, struct mount *, ufs_lbn_t);
756 static int flush_inodedep_deps(struct vnode *, struct mount *, ino_t);
757 static int flush_deplist(struct allocdirectlst *, int, int *);
758 static int sync_cgs(struct mount *, int);
759 static int handle_written_filepage(struct pagedep *, struct buf *, int);
760 static int handle_written_sbdep(struct sbdep *, struct buf *);
761 static void initiate_write_sbdep(struct sbdep *);
762 static void diradd_inode_written(struct diradd *, struct inodedep *);
763 static int handle_written_indirdep(struct indirdep *, struct buf *,
764 struct buf**, int);
765 static int handle_written_inodeblock(struct inodedep *, struct buf *, int);
766 static int jnewblk_rollforward(struct jnewblk *, struct fs *, struct cg *,
767 uint8_t *);
768 static int handle_written_bmsafemap(struct bmsafemap *, struct buf *, int);
769 static void handle_written_jaddref(struct jaddref *);
770 static void handle_written_jremref(struct jremref *);
771 static void handle_written_jseg(struct jseg *, struct buf *);
772 static void handle_written_jnewblk(struct jnewblk *);
773 static void handle_written_jblkdep(struct jblkdep *);
774 static void handle_written_jfreefrag(struct jfreefrag *);
775 static void complete_jseg(struct jseg *);
776 static void complete_jsegs(struct jseg *);
777 static void jseg_write(struct ufsmount *ump, struct jseg *, uint8_t *);
778 static void jaddref_write(struct jaddref *, struct jseg *, uint8_t *);
779 static void jremref_write(struct jremref *, struct jseg *, uint8_t *);
780 static void jmvref_write(struct jmvref *, struct jseg *, uint8_t *);
781 static void jtrunc_write(struct jtrunc *, struct jseg *, uint8_t *);
782 static void jfsync_write(struct jfsync *, struct jseg *, uint8_t *data);
783 static void jnewblk_write(struct jnewblk *, struct jseg *, uint8_t *);
784 static void jfreeblk_write(struct jfreeblk *, struct jseg *, uint8_t *);
785 static void jfreefrag_write(struct jfreefrag *, struct jseg *, uint8_t *);
786 static inline void inoref_write(struct inoref *, struct jseg *,
787 struct jrefrec *);
788 static void handle_allocdirect_partdone(struct allocdirect *,
789 struct workhead *);
790 static struct jnewblk *cancel_newblk(struct newblk *, struct worklist *,
791 struct workhead *);
792 static void indirdep_complete(struct indirdep *);
793 static int indirblk_lookup(struct mount *, ufs2_daddr_t);
794 static void indirblk_insert(struct freework *);
795 static void indirblk_remove(struct freework *);
796 static void handle_allocindir_partdone(struct allocindir *);
797 static void initiate_write_filepage(struct pagedep *, struct buf *);
798 static void initiate_write_indirdep(struct indirdep*, struct buf *);
799 static void handle_written_mkdir(struct mkdir *, int);
800 static int jnewblk_rollback(struct jnewblk *, struct fs *, struct cg *,
801 uint8_t *);
802 static void initiate_write_bmsafemap(struct bmsafemap *, struct buf *);
803 static void initiate_write_inodeblock_ufs1(struct inodedep *, struct buf *);
804 static void initiate_write_inodeblock_ufs2(struct inodedep *, struct buf *);
805 static void handle_workitem_freefile(struct freefile *);
806 static int handle_workitem_remove(struct dirrem *, int);
807 static struct dirrem *newdirrem(struct buf *, struct inode *,
808 struct inode *, int, struct dirrem **);
809 static struct indirdep *indirdep_lookup(struct mount *, struct inode *,
810 struct buf *);
811 static void cancel_indirdep(struct indirdep *, struct buf *,
812 struct freeblks *);
813 static void free_indirdep(struct indirdep *);
814 static void free_diradd(struct diradd *, struct workhead *);
815 static void merge_diradd(struct inodedep *, struct diradd *);
816 static void complete_diradd(struct diradd *);
817 static struct diradd *diradd_lookup(struct pagedep *, int);
818 static struct jremref *cancel_diradd_dotdot(struct inode *, struct dirrem *,
819 struct jremref *);
820 static struct jremref *cancel_mkdir_dotdot(struct inode *, struct dirrem *,
821 struct jremref *);
822 static void cancel_diradd(struct diradd *, struct dirrem *, struct jremref *,
823 struct jremref *, struct jremref *);
824 static void dirrem_journal(struct dirrem *, struct jremref *, struct jremref *,
825 struct jremref *);
826 static void cancel_allocindir(struct allocindir *, struct buf *bp,
827 struct freeblks *, int);
828 static int setup_trunc_indir(struct freeblks *, struct inode *,
829 ufs_lbn_t, ufs_lbn_t, ufs2_daddr_t);
830 static void complete_trunc_indir(struct freework *);
831 static void trunc_indirdep(struct indirdep *, struct freeblks *, struct buf *,
832 int);
833 static void complete_mkdir(struct mkdir *);
834 static void free_newdirblk(struct newdirblk *);
835 static void free_jremref(struct jremref *);
836 static void free_jaddref(struct jaddref *);
837 static void free_jsegdep(struct jsegdep *);
838 static void free_jsegs(struct jblocks *);
839 static void rele_jseg(struct jseg *);
840 static void free_jseg(struct jseg *, struct jblocks *);
841 static void free_jnewblk(struct jnewblk *);
842 static void free_jblkdep(struct jblkdep *);
843 static void free_jfreefrag(struct jfreefrag *);
844 static void free_freedep(struct freedep *);
845 static void journal_jremref(struct dirrem *, struct jremref *,
846 struct inodedep *);
847 static void cancel_jnewblk(struct jnewblk *, struct workhead *);
848 static int cancel_jaddref(struct jaddref *, struct inodedep *,
849 struct workhead *);
850 static void cancel_jfreefrag(struct jfreefrag *);
851 static inline void setup_freedirect(struct freeblks *, struct inode *,
852 int, int);
853 static inline void setup_freeext(struct freeblks *, struct inode *, int, int);
854 static inline void setup_freeindir(struct freeblks *, struct inode *, int,
855 ufs_lbn_t, int);
856 static inline struct freeblks *newfreeblks(struct mount *, struct inode *);
857 static void freeblks_free(struct ufsmount *, struct freeblks *, int);
858 static void indir_trunc(struct freework *, ufs2_daddr_t, ufs_lbn_t);
859 static ufs2_daddr_t blkcount(struct fs *, ufs2_daddr_t, off_t);
860 static int trunc_check_buf(struct buf *, int *, ufs_lbn_t, int, int);
861 static void trunc_dependencies(struct inode *, struct freeblks *, ufs_lbn_t,
862 int, int);
863 static void trunc_pages(struct inode *, off_t, ufs2_daddr_t, int);
864 static int cancel_pagedep(struct pagedep *, struct freeblks *, int);
865 static int deallocate_dependencies(struct buf *, struct freeblks *, int);
866 static void newblk_freefrag(struct newblk*);
867 static void free_newblk(struct newblk *);
868 static void cancel_allocdirect(struct allocdirectlst *,
869 struct allocdirect *, struct freeblks *);
870 static int check_inode_unwritten(struct inodedep *);
871 static int free_inodedep(struct inodedep *);
872 static void freework_freeblock(struct freework *, u_long);
873 static void freework_enqueue(struct freework *);
874 static int handle_workitem_freeblocks(struct freeblks *, int);
875 static int handle_complete_freeblocks(struct freeblks *, int);
876 static void handle_workitem_indirblk(struct freework *);
877 static void handle_written_freework(struct freework *);
878 static void merge_inode_lists(struct allocdirectlst *,struct allocdirectlst *);
879 static struct worklist *jnewblk_merge(struct worklist *, struct worklist *,
880 struct workhead *);
881 static struct freefrag *setup_allocindir_phase2(struct buf *, struct inode *,
882 struct inodedep *, struct allocindir *, ufs_lbn_t);
883 static struct allocindir *newallocindir(struct inode *, int, ufs2_daddr_t,
884 ufs2_daddr_t, ufs_lbn_t);
885 static void handle_workitem_freefrag(struct freefrag *);
886 static struct freefrag *newfreefrag(struct inode *, ufs2_daddr_t, long,
887 ufs_lbn_t, u_long);
888 static void allocdirect_merge(struct allocdirectlst *,
889 struct allocdirect *, struct allocdirect *);
890 static struct freefrag *allocindir_merge(struct allocindir *,
891 struct allocindir *);
892 static int bmsafemap_find(struct bmsafemap_hashhead *, int,
893 struct bmsafemap **);
894 static struct bmsafemap *bmsafemap_lookup(struct mount *, struct buf *,
895 int cg, struct bmsafemap *);
896 static int newblk_find(struct newblk_hashhead *, ufs2_daddr_t, int,
897 struct newblk **);
898 static int newblk_lookup(struct mount *, ufs2_daddr_t, int, struct newblk **);
899 static int inodedep_find(struct inodedep_hashhead *, ino_t,
900 struct inodedep **);
901 static int inodedep_lookup(struct mount *, ino_t, int, struct inodedep **);
902 static int pagedep_lookup(struct mount *, struct buf *bp, ino_t, ufs_lbn_t,
903 int, struct pagedep **);
904 static int pagedep_find(struct pagedep_hashhead *, ino_t, ufs_lbn_t,
905 struct pagedep **);
906 static void pause_timer(void *);
907 static int request_cleanup(struct mount *, int);
908 static int softdep_request_cleanup_flush(struct mount *, struct ufsmount *);
909 static void schedule_cleanup(struct mount *);
910 static void softdep_ast_cleanup_proc(struct thread *);
911 static struct ufsmount *softdep_bp_to_mp(struct buf *bp);
912 static int process_worklist_item(struct mount *, int, int);
913 static void process_removes(struct vnode *);
914 static void process_truncates(struct vnode *);
915 static void jwork_move(struct workhead *, struct workhead *);
916 static void jwork_insert(struct workhead *, struct jsegdep *);
917 static void add_to_worklist(struct worklist *, int);
918 static void wake_worklist(struct worklist *);
919 static void wait_worklist(struct worklist *, char *);
920 static void remove_from_worklist(struct worklist *);
921 static void softdep_flush(void *);
922 static void softdep_flushjournal(struct mount *);
923 static int softdep_speedup(struct ufsmount *);
924 static void worklist_speedup(struct mount *);
925 static int journal_mount(struct mount *, struct fs *, struct ucred *);
926 static void journal_unmount(struct ufsmount *);
927 static int journal_space(struct ufsmount *, int);
928 static void journal_suspend(struct ufsmount *);
929 static int journal_unsuspend(struct ufsmount *ump);
930 static void softdep_prelink(struct vnode *, struct vnode *);
931 static void add_to_journal(struct worklist *);
932 static void remove_from_journal(struct worklist *);
933 static bool softdep_excess_items(struct ufsmount *, int);
934 static void softdep_process_journal(struct mount *, struct worklist *, int);
935 static struct jremref *newjremref(struct dirrem *, struct inode *,
936 struct inode *ip, off_t, nlink_t);
937 static struct jaddref *newjaddref(struct inode *, ino_t, off_t, int16_t,
938 uint16_t);
939 static inline void newinoref(struct inoref *, ino_t, ino_t, off_t, nlink_t,
940 uint16_t);
941 static inline struct jsegdep *inoref_jseg(struct inoref *);
942 static struct jmvref *newjmvref(struct inode *, ino_t, off_t, off_t);
943 static struct jfreeblk *newjfreeblk(struct freeblks *, ufs_lbn_t,
944 ufs2_daddr_t, int);
945 static void adjust_newfreework(struct freeblks *, int);
946 static struct jtrunc *newjtrunc(struct freeblks *, off_t, int);
947 static void move_newblock_dep(struct jaddref *, struct inodedep *);
948 static void cancel_jfreeblk(struct freeblks *, ufs2_daddr_t);
949 static struct jfreefrag *newjfreefrag(struct freefrag *, struct inode *,
950 ufs2_daddr_t, long, ufs_lbn_t);
951 static struct freework *newfreework(struct ufsmount *, struct freeblks *,
952 struct freework *, ufs_lbn_t, ufs2_daddr_t, int, int, int);
953 static int jwait(struct worklist *, int);
954 static struct inodedep *inodedep_lookup_ip(struct inode *);
955 static int bmsafemap_backgroundwrite(struct bmsafemap *, struct buf *);
956 static struct freefile *handle_bufwait(struct inodedep *, struct workhead *);
957 static void handle_jwork(struct workhead *);
958 static struct mkdir *setup_newdir(struct diradd *, ino_t, ino_t, struct buf *,
959 struct mkdir **);
960 static struct jblocks *jblocks_create(void);
961 static ufs2_daddr_t jblocks_alloc(struct jblocks *, int, int *);
962 static void jblocks_free(struct jblocks *, struct mount *, int);
963 static void jblocks_destroy(struct jblocks *);
964 static void jblocks_add(struct jblocks *, ufs2_daddr_t, int);
965
966 /*
967 * Exported softdep operations.
968 */
969 static void softdep_disk_io_initiation(struct buf *);
970 static void softdep_disk_write_complete(struct buf *);
971 static void softdep_deallocate_dependencies(struct buf *);
972 static int softdep_count_dependencies(struct buf *bp, int);
973
974 /*
975 * Global lock over all of soft updates.
976 */
977 static struct mtx lk;
978 MTX_SYSINIT(softdep_lock, &lk, "Global Softdep Lock", MTX_DEF);
979
980 #define ACQUIRE_GBLLOCK(lk) mtx_lock(lk)
981 #define FREE_GBLLOCK(lk) mtx_unlock(lk)
982 #define GBLLOCK_OWNED(lk) mtx_assert((lk), MA_OWNED)
983
984 /*
985 * Per-filesystem soft-updates locking.
986 */
987 #define LOCK_PTR(ump) (&(ump)->um_softdep->sd_fslock)
988 #define TRY_ACQUIRE_LOCK(ump) rw_try_wlock(&(ump)->um_softdep->sd_fslock)
989 #define ACQUIRE_LOCK(ump) rw_wlock(&(ump)->um_softdep->sd_fslock)
990 #define FREE_LOCK(ump) rw_wunlock(&(ump)->um_softdep->sd_fslock)
991 #define LOCK_OWNED(ump) rw_assert(&(ump)->um_softdep->sd_fslock, \
992 RA_WLOCKED)
993
994 #define BUF_AREC(bp) lockallowrecurse(&(bp)->b_lock)
995 #define BUF_NOREC(bp) lockdisablerecurse(&(bp)->b_lock)
996
997 /*
998 * Worklist queue management.
999 * These routines require that the lock be held.
1000 */
1001 #ifndef /* NOT */ DEBUG
1002 #define WORKLIST_INSERT(head, item) do { \
1003 (item)->wk_state |= ONWORKLIST; \
1004 LIST_INSERT_HEAD(head, item, wk_list); \
1005 } while (0)
1006 #define WORKLIST_REMOVE(item) do { \
1007 (item)->wk_state &= ~ONWORKLIST; \
1008 LIST_REMOVE(item, wk_list); \
1009 } while (0)
1010 #define WORKLIST_INSERT_UNLOCKED WORKLIST_INSERT
1011 #define WORKLIST_REMOVE_UNLOCKED WORKLIST_REMOVE
1012
1013 #else /* DEBUG */
1014 static void worklist_insert(struct workhead *, struct worklist *, int);
1015 static void worklist_remove(struct worklist *, int);
1016
1017 #define WORKLIST_INSERT(head, item) worklist_insert(head, item, 1)
1018 #define WORKLIST_INSERT_UNLOCKED(head, item) worklist_insert(head, item, 0)
1019 #define WORKLIST_REMOVE(item) worklist_remove(item, 1)
1020 #define WORKLIST_REMOVE_UNLOCKED(item) worklist_remove(item, 0)
1021
1022 static void
worklist_insert(head,item,locked)1023 worklist_insert(head, item, locked)
1024 struct workhead *head;
1025 struct worklist *item;
1026 int locked;
1027 {
1028
1029 if (locked)
1030 LOCK_OWNED(VFSTOUFS(item->wk_mp));
1031 if (item->wk_state & ONWORKLIST)
1032 panic("worklist_insert: %p %s(0x%X) already on list",
1033 item, TYPENAME(item->wk_type), item->wk_state);
1034 item->wk_state |= ONWORKLIST;
1035 LIST_INSERT_HEAD(head, item, wk_list);
1036 }
1037
1038 static void
worklist_remove(item,locked)1039 worklist_remove(item, locked)
1040 struct worklist *item;
1041 int locked;
1042 {
1043
1044 if (locked)
1045 LOCK_OWNED(VFSTOUFS(item->wk_mp));
1046 if ((item->wk_state & ONWORKLIST) == 0)
1047 panic("worklist_remove: %p %s(0x%X) not on list",
1048 item, TYPENAME(item->wk_type), item->wk_state);
1049 item->wk_state &= ~ONWORKLIST;
1050 LIST_REMOVE(item, wk_list);
1051 }
1052 #endif /* DEBUG */
1053
1054 /*
1055 * Merge two jsegdeps keeping only the oldest one as newer references
1056 * can't be discarded until after older references.
1057 */
1058 static inline struct jsegdep *
jsegdep_merge(struct jsegdep * one,struct jsegdep * two)1059 jsegdep_merge(struct jsegdep *one, struct jsegdep *two)
1060 {
1061 struct jsegdep *swp;
1062
1063 if (two == NULL)
1064 return (one);
1065
1066 if (one->jd_seg->js_seq > two->jd_seg->js_seq) {
1067 swp = one;
1068 one = two;
1069 two = swp;
1070 }
1071 WORKLIST_REMOVE(&two->jd_list);
1072 free_jsegdep(two);
1073
1074 return (one);
1075 }
1076
1077 /*
1078 * If two freedeps are compatible free one to reduce list size.
1079 */
1080 static inline struct freedep *
freedep_merge(struct freedep * one,struct freedep * two)1081 freedep_merge(struct freedep *one, struct freedep *two)
1082 {
1083 if (two == NULL)
1084 return (one);
1085
1086 if (one->fd_freework == two->fd_freework) {
1087 WORKLIST_REMOVE(&two->fd_list);
1088 free_freedep(two);
1089 }
1090 return (one);
1091 }
1092
1093 /*
1094 * Move journal work from one list to another. Duplicate freedeps and
1095 * jsegdeps are coalesced to keep the lists as small as possible.
1096 */
1097 static void
jwork_move(dst,src)1098 jwork_move(dst, src)
1099 struct workhead *dst;
1100 struct workhead *src;
1101 {
1102 struct freedep *freedep;
1103 struct jsegdep *jsegdep;
1104 struct worklist *wkn;
1105 struct worklist *wk;
1106
1107 KASSERT(dst != src,
1108 ("jwork_move: dst == src"));
1109 freedep = NULL;
1110 jsegdep = NULL;
1111 LIST_FOREACH_SAFE(wk, dst, wk_list, wkn) {
1112 if (wk->wk_type == D_JSEGDEP)
1113 jsegdep = jsegdep_merge(WK_JSEGDEP(wk), jsegdep);
1114 else if (wk->wk_type == D_FREEDEP)
1115 freedep = freedep_merge(WK_FREEDEP(wk), freedep);
1116 }
1117
1118 while ((wk = LIST_FIRST(src)) != NULL) {
1119 WORKLIST_REMOVE(wk);
1120 WORKLIST_INSERT(dst, wk);
1121 if (wk->wk_type == D_JSEGDEP) {
1122 jsegdep = jsegdep_merge(WK_JSEGDEP(wk), jsegdep);
1123 continue;
1124 }
1125 if (wk->wk_type == D_FREEDEP)
1126 freedep = freedep_merge(WK_FREEDEP(wk), freedep);
1127 }
1128 }
1129
1130 static void
jwork_insert(dst,jsegdep)1131 jwork_insert(dst, jsegdep)
1132 struct workhead *dst;
1133 struct jsegdep *jsegdep;
1134 {
1135 struct jsegdep *jsegdepn;
1136 struct worklist *wk;
1137
1138 LIST_FOREACH(wk, dst, wk_list)
1139 if (wk->wk_type == D_JSEGDEP)
1140 break;
1141 if (wk == NULL) {
1142 WORKLIST_INSERT(dst, &jsegdep->jd_list);
1143 return;
1144 }
1145 jsegdepn = WK_JSEGDEP(wk);
1146 if (jsegdep->jd_seg->js_seq < jsegdepn->jd_seg->js_seq) {
1147 WORKLIST_REMOVE(wk);
1148 free_jsegdep(jsegdepn);
1149 WORKLIST_INSERT(dst, &jsegdep->jd_list);
1150 } else
1151 free_jsegdep(jsegdep);
1152 }
1153
1154 /*
1155 * Routines for tracking and managing workitems.
1156 */
1157 static void workitem_free(struct worklist *, int);
1158 static void workitem_alloc(struct worklist *, int, struct mount *);
1159 static void workitem_reassign(struct worklist *, int);
1160
1161 #define WORKITEM_FREE(item, type) \
1162 workitem_free((struct worklist *)(item), (type))
1163 #define WORKITEM_REASSIGN(item, type) \
1164 workitem_reassign((struct worklist *)(item), (type))
1165
1166 static void
workitem_free(item,type)1167 workitem_free(item, type)
1168 struct worklist *item;
1169 int type;
1170 {
1171 struct ufsmount *ump;
1172
1173 #ifdef DEBUG
1174 if (item->wk_state & ONWORKLIST)
1175 panic("workitem_free: %s(0x%X) still on list",
1176 TYPENAME(item->wk_type), item->wk_state);
1177 if (item->wk_type != type && type != D_NEWBLK)
1178 panic("workitem_free: type mismatch %s != %s",
1179 TYPENAME(item->wk_type), TYPENAME(type));
1180 #endif
1181 if (item->wk_state & IOWAITING)
1182 wakeup(item);
1183 ump = VFSTOUFS(item->wk_mp);
1184 LOCK_OWNED(ump);
1185 KASSERT(ump->softdep_deps > 0,
1186 ("workitem_free: %s: softdep_deps going negative",
1187 ump->um_fs->fs_fsmnt));
1188 if (--ump->softdep_deps == 0 && ump->softdep_req)
1189 wakeup(&ump->softdep_deps);
1190 KASSERT(dep_current[item->wk_type] > 0,
1191 ("workitem_free: %s: dep_current[%s] going negative",
1192 ump->um_fs->fs_fsmnt, TYPENAME(item->wk_type)));
1193 KASSERT(ump->softdep_curdeps[item->wk_type] > 0,
1194 ("workitem_free: %s: softdep_curdeps[%s] going negative",
1195 ump->um_fs->fs_fsmnt, TYPENAME(item->wk_type)));
1196 atomic_subtract_long(&dep_current[item->wk_type], 1);
1197 ump->softdep_curdeps[item->wk_type] -= 1;
1198 free(item, DtoM(type));
1199 }
1200
1201 static void
workitem_alloc(item,type,mp)1202 workitem_alloc(item, type, mp)
1203 struct worklist *item;
1204 int type;
1205 struct mount *mp;
1206 {
1207 struct ufsmount *ump;
1208
1209 item->wk_type = type;
1210 item->wk_mp = mp;
1211 item->wk_state = 0;
1212
1213 ump = VFSTOUFS(mp);
1214 ACQUIRE_GBLLOCK(&lk);
1215 dep_current[type]++;
1216 if (dep_current[type] > dep_highuse[type])
1217 dep_highuse[type] = dep_current[type];
1218 dep_total[type]++;
1219 FREE_GBLLOCK(&lk);
1220 ACQUIRE_LOCK(ump);
1221 ump->softdep_curdeps[type] += 1;
1222 ump->softdep_deps++;
1223 ump->softdep_accdeps++;
1224 FREE_LOCK(ump);
1225 }
1226
1227 static void
workitem_reassign(item,newtype)1228 workitem_reassign(item, newtype)
1229 struct worklist *item;
1230 int newtype;
1231 {
1232 struct ufsmount *ump;
1233
1234 ump = VFSTOUFS(item->wk_mp);
1235 LOCK_OWNED(ump);
1236 KASSERT(ump->softdep_curdeps[item->wk_type] > 0,
1237 ("workitem_reassign: %s: softdep_curdeps[%s] going negative",
1238 VFSTOUFS(item->wk_mp)->um_fs->fs_fsmnt, TYPENAME(item->wk_type)));
1239 ump->softdep_curdeps[item->wk_type] -= 1;
1240 ump->softdep_curdeps[newtype] += 1;
1241 KASSERT(dep_current[item->wk_type] > 0,
1242 ("workitem_reassign: %s: dep_current[%s] going negative",
1243 VFSTOUFS(item->wk_mp)->um_fs->fs_fsmnt, TYPENAME(item->wk_type)));
1244 ACQUIRE_GBLLOCK(&lk);
1245 dep_current[newtype]++;
1246 dep_current[item->wk_type]--;
1247 if (dep_current[newtype] > dep_highuse[newtype])
1248 dep_highuse[newtype] = dep_current[newtype];
1249 dep_total[newtype]++;
1250 FREE_GBLLOCK(&lk);
1251 item->wk_type = newtype;
1252 }
1253
1254 /*
1255 * Workitem queue management
1256 */
1257 static int max_softdeps; /* maximum number of structs before slowdown */
1258 static int tickdelay = 2; /* number of ticks to pause during slowdown */
1259 static int proc_waiting; /* tracks whether we have a timeout posted */
1260 static int *stat_countp; /* statistic to count in proc_waiting timeout */
1261 static struct callout softdep_callout;
1262 static int req_clear_inodedeps; /* syncer process flush some inodedeps */
1263 static int req_clear_remove; /* syncer process flush some freeblks */
1264 static int softdep_flushcache = 0; /* Should we do BIO_FLUSH? */
1265
1266 /*
1267 * runtime statistics
1268 */
1269 static int stat_flush_threads; /* number of softdep flushing threads */
1270 static int stat_worklist_push; /* number of worklist cleanups */
1271 static int stat_blk_limit_push; /* number of times block limit neared */
1272 static int stat_ino_limit_push; /* number of times inode limit neared */
1273 static int stat_blk_limit_hit; /* number of times block slowdown imposed */
1274 static int stat_ino_limit_hit; /* number of times inode slowdown imposed */
1275 static int stat_sync_limit_hit; /* number of synchronous slowdowns imposed */
1276 static int stat_indir_blk_ptrs; /* bufs redirtied as indir ptrs not written */
1277 static int stat_inode_bitmap; /* bufs redirtied as inode bitmap not written */
1278 static int stat_direct_blk_ptrs;/* bufs redirtied as direct ptrs not written */
1279 static int stat_dir_entry; /* bufs redirtied as dir entry cannot write */
1280 static int stat_jaddref; /* bufs redirtied as ino bitmap can not write */
1281 static int stat_jnewblk; /* bufs redirtied as blk bitmap can not write */
1282 static int stat_journal_min; /* Times hit journal min threshold */
1283 static int stat_journal_low; /* Times hit journal low threshold */
1284 static int stat_journal_wait; /* Times blocked in jwait(). */
1285 static int stat_jwait_filepage; /* Times blocked in jwait() for filepage. */
1286 static int stat_jwait_freeblks; /* Times blocked in jwait() for freeblks. */
1287 static int stat_jwait_inode; /* Times blocked in jwait() for inodes. */
1288 static int stat_jwait_newblk; /* Times blocked in jwait() for newblks. */
1289 static int stat_cleanup_high_delay; /* Maximum cleanup delay (in ticks) */
1290 static int stat_cleanup_blkrequests; /* Number of block cleanup requests */
1291 static int stat_cleanup_inorequests; /* Number of inode cleanup requests */
1292 static int stat_cleanup_retries; /* Number of cleanups that needed to flush */
1293 static int stat_cleanup_failures; /* Number of cleanup requests that failed */
1294 static int stat_emptyjblocks; /* Number of potentially empty journal blocks */
1295
1296 SYSCTL_INT(_debug_softdep, OID_AUTO, max_softdeps, CTLFLAG_RW,
1297 &max_softdeps, 0, "");
1298 SYSCTL_INT(_debug_softdep, OID_AUTO, tickdelay, CTLFLAG_RW,
1299 &tickdelay, 0, "");
1300 SYSCTL_INT(_debug_softdep, OID_AUTO, flush_threads, CTLFLAG_RD,
1301 &stat_flush_threads, 0, "");
1302 SYSCTL_INT(_debug_softdep, OID_AUTO, worklist_push, CTLFLAG_RW,
1303 &stat_worklist_push, 0,"");
1304 SYSCTL_INT(_debug_softdep, OID_AUTO, blk_limit_push, CTLFLAG_RW,
1305 &stat_blk_limit_push, 0,"");
1306 SYSCTL_INT(_debug_softdep, OID_AUTO, ino_limit_push, CTLFLAG_RW,
1307 &stat_ino_limit_push, 0,"");
1308 SYSCTL_INT(_debug_softdep, OID_AUTO, blk_limit_hit, CTLFLAG_RW,
1309 &stat_blk_limit_hit, 0, "");
1310 SYSCTL_INT(_debug_softdep, OID_AUTO, ino_limit_hit, CTLFLAG_RW,
1311 &stat_ino_limit_hit, 0, "");
1312 SYSCTL_INT(_debug_softdep, OID_AUTO, sync_limit_hit, CTLFLAG_RW,
1313 &stat_sync_limit_hit, 0, "");
1314 SYSCTL_INT(_debug_softdep, OID_AUTO, indir_blk_ptrs, CTLFLAG_RW,
1315 &stat_indir_blk_ptrs, 0, "");
1316 SYSCTL_INT(_debug_softdep, OID_AUTO, inode_bitmap, CTLFLAG_RW,
1317 &stat_inode_bitmap, 0, "");
1318 SYSCTL_INT(_debug_softdep, OID_AUTO, direct_blk_ptrs, CTLFLAG_RW,
1319 &stat_direct_blk_ptrs, 0, "");
1320 SYSCTL_INT(_debug_softdep, OID_AUTO, dir_entry, CTLFLAG_RW,
1321 &stat_dir_entry, 0, "");
1322 SYSCTL_INT(_debug_softdep, OID_AUTO, jaddref_rollback, CTLFLAG_RW,
1323 &stat_jaddref, 0, "");
1324 SYSCTL_INT(_debug_softdep, OID_AUTO, jnewblk_rollback, CTLFLAG_RW,
1325 &stat_jnewblk, 0, "");
1326 SYSCTL_INT(_debug_softdep, OID_AUTO, journal_low, CTLFLAG_RW,
1327 &stat_journal_low, 0, "");
1328 SYSCTL_INT(_debug_softdep, OID_AUTO, journal_min, CTLFLAG_RW,
1329 &stat_journal_min, 0, "");
1330 SYSCTL_INT(_debug_softdep, OID_AUTO, journal_wait, CTLFLAG_RW,
1331 &stat_journal_wait, 0, "");
1332 SYSCTL_INT(_debug_softdep, OID_AUTO, jwait_filepage, CTLFLAG_RW,
1333 &stat_jwait_filepage, 0, "");
1334 SYSCTL_INT(_debug_softdep, OID_AUTO, jwait_freeblks, CTLFLAG_RW,
1335 &stat_jwait_freeblks, 0, "");
1336 SYSCTL_INT(_debug_softdep, OID_AUTO, jwait_inode, CTLFLAG_RW,
1337 &stat_jwait_inode, 0, "");
1338 SYSCTL_INT(_debug_softdep, OID_AUTO, jwait_newblk, CTLFLAG_RW,
1339 &stat_jwait_newblk, 0, "");
1340 SYSCTL_INT(_debug_softdep, OID_AUTO, cleanup_blkrequests, CTLFLAG_RW,
1341 &stat_cleanup_blkrequests, 0, "");
1342 SYSCTL_INT(_debug_softdep, OID_AUTO, cleanup_inorequests, CTLFLAG_RW,
1343 &stat_cleanup_inorequests, 0, "");
1344 SYSCTL_INT(_debug_softdep, OID_AUTO, cleanup_high_delay, CTLFLAG_RW,
1345 &stat_cleanup_high_delay, 0, "");
1346 SYSCTL_INT(_debug_softdep, OID_AUTO, cleanup_retries, CTLFLAG_RW,
1347 &stat_cleanup_retries, 0, "");
1348 SYSCTL_INT(_debug_softdep, OID_AUTO, cleanup_failures, CTLFLAG_RW,
1349 &stat_cleanup_failures, 0, "");
1350 SYSCTL_INT(_debug_softdep, OID_AUTO, flushcache, CTLFLAG_RW,
1351 &softdep_flushcache, 0, "");
1352 SYSCTL_INT(_debug_softdep, OID_AUTO, emptyjblocks, CTLFLAG_RD,
1353 &stat_emptyjblocks, 0, "");
1354
1355 SYSCTL_DECL(_vfs_ffs);
1356
1357 /* Whether to recompute the summary at mount time */
1358 static int compute_summary_at_mount = 0;
1359 SYSCTL_INT(_vfs_ffs, OID_AUTO, compute_summary_at_mount, CTLFLAG_RW,
1360 &compute_summary_at_mount, 0, "Recompute summary at mount");
1361 static int print_threads = 0;
1362 SYSCTL_INT(_debug_softdep, OID_AUTO, print_threads, CTLFLAG_RW,
1363 &print_threads, 0, "Notify flusher thread start/stop");
1364
1365 /* List of all filesystems mounted with soft updates */
1366 static TAILQ_HEAD(, mount_softdeps) softdepmounts;
1367
1368 /*
1369 * This function cleans the worklist for a filesystem.
1370 * Each filesystem running with soft dependencies gets its own
1371 * thread to run in this function. The thread is started up in
1372 * softdep_mount and shutdown in softdep_unmount. They show up
1373 * as part of the kernel "bufdaemon" process whose process
1374 * entry is available in bufdaemonproc.
1375 */
1376 static int searchfailed;
1377 extern struct proc *bufdaemonproc;
1378 static void
softdep_flush(addr)1379 softdep_flush(addr)
1380 void *addr;
1381 {
1382 struct mount *mp;
1383 struct thread *td;
1384 struct ufsmount *ump;
1385
1386 td = curthread;
1387 td->td_pflags |= TDP_NORUNNINGBUF;
1388 mp = (struct mount *)addr;
1389 ump = VFSTOUFS(mp);
1390 atomic_add_int(&stat_flush_threads, 1);
1391 ACQUIRE_LOCK(ump);
1392 ump->softdep_flags &= ~FLUSH_STARTING;
1393 wakeup(&ump->softdep_flushtd);
1394 FREE_LOCK(ump);
1395 if (print_threads) {
1396 if (stat_flush_threads == 1)
1397 printf("Running %s at pid %d\n", bufdaemonproc->p_comm,
1398 bufdaemonproc->p_pid);
1399 printf("Start thread %s\n", td->td_name);
1400 }
1401 for (;;) {
1402 while (softdep_process_worklist(mp, 0) > 0 ||
1403 (MOUNTEDSUJ(mp) &&
1404 VFSTOUFS(mp)->softdep_jblocks->jb_suspended))
1405 kthread_suspend_check();
1406 ACQUIRE_LOCK(ump);
1407 if ((ump->softdep_flags & (FLUSH_CLEANUP | FLUSH_EXIT)) == 0)
1408 msleep(&ump->softdep_flushtd, LOCK_PTR(ump), PVM,
1409 "sdflush", hz / 2);
1410 ump->softdep_flags &= ~FLUSH_CLEANUP;
1411 /*
1412 * Check to see if we are done and need to exit.
1413 */
1414 if ((ump->softdep_flags & FLUSH_EXIT) == 0) {
1415 FREE_LOCK(ump);
1416 continue;
1417 }
1418 ump->softdep_flags &= ~FLUSH_EXIT;
1419 FREE_LOCK(ump);
1420 wakeup(&ump->softdep_flags);
1421 if (print_threads)
1422 printf("Stop thread %s: searchfailed %d, did cleanups %d\n", td->td_name, searchfailed, ump->um_softdep->sd_cleanups);
1423 atomic_subtract_int(&stat_flush_threads, 1);
1424 kthread_exit();
1425 panic("kthread_exit failed\n");
1426 }
1427 }
1428
1429 static void
worklist_speedup(mp)1430 worklist_speedup(mp)
1431 struct mount *mp;
1432 {
1433 struct ufsmount *ump;
1434
1435 ump = VFSTOUFS(mp);
1436 LOCK_OWNED(ump);
1437 if ((ump->softdep_flags & (FLUSH_CLEANUP | FLUSH_EXIT)) == 0)
1438 ump->softdep_flags |= FLUSH_CLEANUP;
1439 wakeup(&ump->softdep_flushtd);
1440 }
1441
1442 static int
softdep_speedup(ump)1443 softdep_speedup(ump)
1444 struct ufsmount *ump;
1445 {
1446 struct ufsmount *altump;
1447 struct mount_softdeps *sdp;
1448
1449 LOCK_OWNED(ump);
1450 worklist_speedup(ump->um_mountp);
1451 bd_speedup();
1452 /*
1453 * If we have global shortages, then we need other
1454 * filesystems to help with the cleanup. Here we wakeup a
1455 * flusher thread for a filesystem that is over its fair
1456 * share of resources.
1457 */
1458 if (req_clear_inodedeps || req_clear_remove) {
1459 ACQUIRE_GBLLOCK(&lk);
1460 TAILQ_FOREACH(sdp, &softdepmounts, sd_next) {
1461 if ((altump = sdp->sd_ump) == ump)
1462 continue;
1463 if (((req_clear_inodedeps &&
1464 altump->softdep_curdeps[D_INODEDEP] >
1465 max_softdeps / stat_flush_threads) ||
1466 (req_clear_remove &&
1467 altump->softdep_curdeps[D_DIRREM] >
1468 (max_softdeps / 2) / stat_flush_threads)) &&
1469 TRY_ACQUIRE_LOCK(altump))
1470 break;
1471 }
1472 if (sdp == NULL) {
1473 searchfailed++;
1474 FREE_GBLLOCK(&lk);
1475 } else {
1476 /*
1477 * Move to the end of the list so we pick a
1478 * different one on out next try.
1479 */
1480 TAILQ_REMOVE(&softdepmounts, sdp, sd_next);
1481 TAILQ_INSERT_TAIL(&softdepmounts, sdp, sd_next);
1482 FREE_GBLLOCK(&lk);
1483 if ((altump->softdep_flags &
1484 (FLUSH_CLEANUP | FLUSH_EXIT)) == 0)
1485 altump->softdep_flags |= FLUSH_CLEANUP;
1486 altump->um_softdep->sd_cleanups++;
1487 wakeup(&altump->softdep_flushtd);
1488 FREE_LOCK(altump);
1489 }
1490 }
1491 return (speedup_syncer());
1492 }
1493
1494 /*
1495 * Add an item to the end of the work queue.
1496 * This routine requires that the lock be held.
1497 * This is the only routine that adds items to the list.
1498 * The following routine is the only one that removes items
1499 * and does so in order from first to last.
1500 */
1501
1502 #define WK_HEAD 0x0001 /* Add to HEAD. */
1503 #define WK_NODELAY 0x0002 /* Process immediately. */
1504
1505 static void
add_to_worklist(wk,flags)1506 add_to_worklist(wk, flags)
1507 struct worklist *wk;
1508 int flags;
1509 {
1510 struct ufsmount *ump;
1511
1512 ump = VFSTOUFS(wk->wk_mp);
1513 LOCK_OWNED(ump);
1514 if (wk->wk_state & ONWORKLIST)
1515 panic("add_to_worklist: %s(0x%X) already on list",
1516 TYPENAME(wk->wk_type), wk->wk_state);
1517 wk->wk_state |= ONWORKLIST;
1518 if (ump->softdep_on_worklist == 0) {
1519 LIST_INSERT_HEAD(&ump->softdep_workitem_pending, wk, wk_list);
1520 ump->softdep_worklist_tail = wk;
1521 } else if (flags & WK_HEAD) {
1522 LIST_INSERT_HEAD(&ump->softdep_workitem_pending, wk, wk_list);
1523 } else {
1524 LIST_INSERT_AFTER(ump->softdep_worklist_tail, wk, wk_list);
1525 ump->softdep_worklist_tail = wk;
1526 }
1527 ump->softdep_on_worklist += 1;
1528 if (flags & WK_NODELAY)
1529 worklist_speedup(wk->wk_mp);
1530 }
1531
1532 /*
1533 * Remove the item to be processed. If we are removing the last
1534 * item on the list, we need to recalculate the tail pointer.
1535 */
1536 static void
remove_from_worklist(wk)1537 remove_from_worklist(wk)
1538 struct worklist *wk;
1539 {
1540 struct ufsmount *ump;
1541
1542 ump = VFSTOUFS(wk->wk_mp);
1543 if (ump->softdep_worklist_tail == wk)
1544 ump->softdep_worklist_tail =
1545 (struct worklist *)wk->wk_list.le_prev;
1546 WORKLIST_REMOVE(wk);
1547 ump->softdep_on_worklist -= 1;
1548 }
1549
1550 static void
wake_worklist(wk)1551 wake_worklist(wk)
1552 struct worklist *wk;
1553 {
1554 if (wk->wk_state & IOWAITING) {
1555 wk->wk_state &= ~IOWAITING;
1556 wakeup(wk);
1557 }
1558 }
1559
1560 static void
wait_worklist(wk,wmesg)1561 wait_worklist(wk, wmesg)
1562 struct worklist *wk;
1563 char *wmesg;
1564 {
1565 struct ufsmount *ump;
1566
1567 ump = VFSTOUFS(wk->wk_mp);
1568 wk->wk_state |= IOWAITING;
1569 msleep(wk, LOCK_PTR(ump), PVM, wmesg, 0);
1570 }
1571
1572 /*
1573 * Process that runs once per second to handle items in the background queue.
1574 *
1575 * Note that we ensure that everything is done in the order in which they
1576 * appear in the queue. The code below depends on this property to ensure
1577 * that blocks of a file are freed before the inode itself is freed. This
1578 * ordering ensures that no new <vfsid, inum, lbn> triples will be generated
1579 * until all the old ones have been purged from the dependency lists.
1580 */
1581 static int
softdep_process_worklist(mp,full)1582 softdep_process_worklist(mp, full)
1583 struct mount *mp;
1584 int full;
1585 {
1586 int cnt, matchcnt;
1587 struct ufsmount *ump;
1588 long starttime;
1589
1590 KASSERT(mp != NULL, ("softdep_process_worklist: NULL mp"));
1591 if (MOUNTEDSOFTDEP(mp) == 0)
1592 return (0);
1593 matchcnt = 0;
1594 ump = VFSTOUFS(mp);
1595 ACQUIRE_LOCK(ump);
1596 starttime = time_second;
1597 softdep_process_journal(mp, NULL, full ? MNT_WAIT : 0);
1598 check_clear_deps(mp);
1599 while (ump->softdep_on_worklist > 0) {
1600 if ((cnt = process_worklist_item(mp, 10, LK_NOWAIT)) == 0)
1601 break;
1602 else
1603 matchcnt += cnt;
1604 check_clear_deps(mp);
1605 /*
1606 * We do not generally want to stop for buffer space, but if
1607 * we are really being a buffer hog, we will stop and wait.
1608 */
1609 if (should_yield()) {
1610 FREE_LOCK(ump);
1611 kern_yield(PRI_USER);
1612 bwillwrite();
1613 ACQUIRE_LOCK(ump);
1614 }
1615 /*
1616 * Never allow processing to run for more than one
1617 * second. This gives the syncer thread the opportunity
1618 * to pause if appropriate.
1619 */
1620 if (!full && starttime != time_second)
1621 break;
1622 }
1623 if (full == 0)
1624 journal_unsuspend(ump);
1625 FREE_LOCK(ump);
1626 return (matchcnt);
1627 }
1628
1629 /*
1630 * Process all removes associated with a vnode if we are running out of
1631 * journal space. Any other process which attempts to flush these will
1632 * be unable as we have the vnodes locked.
1633 */
1634 static void
process_removes(vp)1635 process_removes(vp)
1636 struct vnode *vp;
1637 {
1638 struct inodedep *inodedep;
1639 struct dirrem *dirrem;
1640 struct ufsmount *ump;
1641 struct mount *mp;
1642 ino_t inum;
1643
1644 mp = vp->v_mount;
1645 ump = VFSTOUFS(mp);
1646 LOCK_OWNED(ump);
1647 inum = VTOI(vp)->i_number;
1648 for (;;) {
1649 top:
1650 if (inodedep_lookup(mp, inum, 0, &inodedep) == 0)
1651 return;
1652 LIST_FOREACH(dirrem, &inodedep->id_dirremhd, dm_inonext) {
1653 /*
1654 * If another thread is trying to lock this vnode
1655 * it will fail but we must wait for it to do so
1656 * before we can proceed.
1657 */
1658 if (dirrem->dm_state & INPROGRESS) {
1659 wait_worklist(&dirrem->dm_list, "pwrwait");
1660 goto top;
1661 }
1662 if ((dirrem->dm_state & (COMPLETE | ONWORKLIST)) ==
1663 (COMPLETE | ONWORKLIST))
1664 break;
1665 }
1666 if (dirrem == NULL)
1667 return;
1668 remove_from_worklist(&dirrem->dm_list);
1669 FREE_LOCK(ump);
1670 if (vn_start_secondary_write(NULL, &mp, V_NOWAIT))
1671 panic("process_removes: suspended filesystem");
1672 handle_workitem_remove(dirrem, 0);
1673 vn_finished_secondary_write(mp);
1674 ACQUIRE_LOCK(ump);
1675 }
1676 }
1677
1678 /*
1679 * Process all truncations associated with a vnode if we are running out
1680 * of journal space. This is called when the vnode lock is already held
1681 * and no other process can clear the truncation. This function returns
1682 * a value greater than zero if it did any work.
1683 */
1684 static void
process_truncates(vp)1685 process_truncates(vp)
1686 struct vnode *vp;
1687 {
1688 struct inodedep *inodedep;
1689 struct freeblks *freeblks;
1690 struct ufsmount *ump;
1691 struct mount *mp;
1692 ino_t inum;
1693 int cgwait;
1694
1695 mp = vp->v_mount;
1696 ump = VFSTOUFS(mp);
1697 LOCK_OWNED(ump);
1698 inum = VTOI(vp)->i_number;
1699 for (;;) {
1700 if (inodedep_lookup(mp, inum, 0, &inodedep) == 0)
1701 return;
1702 cgwait = 0;
1703 TAILQ_FOREACH(freeblks, &inodedep->id_freeblklst, fb_next) {
1704 /* Journal entries not yet written. */
1705 if (!LIST_EMPTY(&freeblks->fb_jblkdephd)) {
1706 jwait(&LIST_FIRST(
1707 &freeblks->fb_jblkdephd)->jb_list,
1708 MNT_WAIT);
1709 break;
1710 }
1711 /* Another thread is executing this item. */
1712 if (freeblks->fb_state & INPROGRESS) {
1713 wait_worklist(&freeblks->fb_list, "ptrwait");
1714 break;
1715 }
1716 /* Freeblks is waiting on a inode write. */
1717 if ((freeblks->fb_state & COMPLETE) == 0) {
1718 FREE_LOCK(ump);
1719 ffs_update(vp, 1);
1720 ACQUIRE_LOCK(ump);
1721 break;
1722 }
1723 if ((freeblks->fb_state & (ALLCOMPLETE | ONWORKLIST)) ==
1724 (ALLCOMPLETE | ONWORKLIST)) {
1725 remove_from_worklist(&freeblks->fb_list);
1726 freeblks->fb_state |= INPROGRESS;
1727 FREE_LOCK(ump);
1728 if (vn_start_secondary_write(NULL, &mp,
1729 V_NOWAIT))
1730 panic("process_truncates: "
1731 "suspended filesystem");
1732 handle_workitem_freeblocks(freeblks, 0);
1733 vn_finished_secondary_write(mp);
1734 ACQUIRE_LOCK(ump);
1735 break;
1736 }
1737 if (freeblks->fb_cgwait)
1738 cgwait++;
1739 }
1740 if (cgwait) {
1741 FREE_LOCK(ump);
1742 sync_cgs(mp, MNT_WAIT);
1743 ffs_sync_snap(mp, MNT_WAIT);
1744 ACQUIRE_LOCK(ump);
1745 continue;
1746 }
1747 if (freeblks == NULL)
1748 break;
1749 }
1750 return;
1751 }
1752
1753 /*
1754 * Process one item on the worklist.
1755 */
1756 static int
process_worklist_item(mp,target,flags)1757 process_worklist_item(mp, target, flags)
1758 struct mount *mp;
1759 int target;
1760 int flags;
1761 {
1762 struct worklist sentinel;
1763 struct worklist *wk;
1764 struct ufsmount *ump;
1765 int matchcnt;
1766 int error;
1767
1768 KASSERT(mp != NULL, ("process_worklist_item: NULL mp"));
1769 /*
1770 * If we are being called because of a process doing a
1771 * copy-on-write, then it is not safe to write as we may
1772 * recurse into the copy-on-write routine.
1773 */
1774 if (curthread->td_pflags & TDP_COWINPROGRESS)
1775 return (-1);
1776 PHOLD(curproc); /* Don't let the stack go away. */
1777 ump = VFSTOUFS(mp);
1778 LOCK_OWNED(ump);
1779 matchcnt = 0;
1780 sentinel.wk_mp = NULL;
1781 sentinel.wk_type = D_SENTINEL;
1782 LIST_INSERT_HEAD(&ump->softdep_workitem_pending, &sentinel, wk_list);
1783 for (wk = LIST_NEXT(&sentinel, wk_list); wk != NULL;
1784 wk = LIST_NEXT(&sentinel, wk_list)) {
1785 if (wk->wk_type == D_SENTINEL) {
1786 LIST_REMOVE(&sentinel, wk_list);
1787 LIST_INSERT_AFTER(wk, &sentinel, wk_list);
1788 continue;
1789 }
1790 if (wk->wk_state & INPROGRESS)
1791 panic("process_worklist_item: %p already in progress.",
1792 wk);
1793 wk->wk_state |= INPROGRESS;
1794 remove_from_worklist(wk);
1795 FREE_LOCK(ump);
1796 if (vn_start_secondary_write(NULL, &mp, V_NOWAIT))
1797 panic("process_worklist_item: suspended filesystem");
1798 switch (wk->wk_type) {
1799 case D_DIRREM:
1800 /* removal of a directory entry */
1801 error = handle_workitem_remove(WK_DIRREM(wk), flags);
1802 break;
1803
1804 case D_FREEBLKS:
1805 /* releasing blocks and/or fragments from a file */
1806 error = handle_workitem_freeblocks(WK_FREEBLKS(wk),
1807 flags);
1808 break;
1809
1810 case D_FREEFRAG:
1811 /* releasing a fragment when replaced as a file grows */
1812 handle_workitem_freefrag(WK_FREEFRAG(wk));
1813 error = 0;
1814 break;
1815
1816 case D_FREEFILE:
1817 /* releasing an inode when its link count drops to 0 */
1818 handle_workitem_freefile(WK_FREEFILE(wk));
1819 error = 0;
1820 break;
1821
1822 default:
1823 panic("%s_process_worklist: Unknown type %s",
1824 "softdep", TYPENAME(wk->wk_type));
1825 /* NOTREACHED */
1826 }
1827 vn_finished_secondary_write(mp);
1828 ACQUIRE_LOCK(ump);
1829 if (error == 0) {
1830 if (++matchcnt == target)
1831 break;
1832 continue;
1833 }
1834 /*
1835 * We have to retry the worklist item later. Wake up any
1836 * waiters who may be able to complete it immediately and
1837 * add the item back to the head so we don't try to execute
1838 * it again.
1839 */
1840 wk->wk_state &= ~INPROGRESS;
1841 wake_worklist(wk);
1842 add_to_worklist(wk, WK_HEAD);
1843 }
1844 /* Sentinal could've become the tail from remove_from_worklist. */
1845 if (ump->softdep_worklist_tail == &sentinel)
1846 ump->softdep_worklist_tail =
1847 (struct worklist *)sentinel.wk_list.le_prev;
1848 LIST_REMOVE(&sentinel, wk_list);
1849 PRELE(curproc);
1850 return (matchcnt);
1851 }
1852
1853 /*
1854 * Move dependencies from one buffer to another.
1855 */
1856 int
softdep_move_dependencies(oldbp,newbp)1857 softdep_move_dependencies(oldbp, newbp)
1858 struct buf *oldbp;
1859 struct buf *newbp;
1860 {
1861 struct worklist *wk, *wktail;
1862 struct ufsmount *ump;
1863 int dirty;
1864
1865 if ((wk = LIST_FIRST(&oldbp->b_dep)) == NULL)
1866 return (0);
1867 KASSERT(MOUNTEDSOFTDEP(wk->wk_mp) != 0,
1868 ("softdep_move_dependencies called on non-softdep filesystem"));
1869 dirty = 0;
1870 wktail = NULL;
1871 ump = VFSTOUFS(wk->wk_mp);
1872 ACQUIRE_LOCK(ump);
1873 while ((wk = LIST_FIRST(&oldbp->b_dep)) != NULL) {
1874 LIST_REMOVE(wk, wk_list);
1875 if (wk->wk_type == D_BMSAFEMAP &&
1876 bmsafemap_backgroundwrite(WK_BMSAFEMAP(wk), newbp))
1877 dirty = 1;
1878 if (wktail == NULL)
1879 LIST_INSERT_HEAD(&newbp->b_dep, wk, wk_list);
1880 else
1881 LIST_INSERT_AFTER(wktail, wk, wk_list);
1882 wktail = wk;
1883 }
1884 FREE_LOCK(ump);
1885
1886 return (dirty);
1887 }
1888
1889 /*
1890 * Purge the work list of all items associated with a particular mount point.
1891 */
1892 int
softdep_flushworklist(oldmnt,countp,td)1893 softdep_flushworklist(oldmnt, countp, td)
1894 struct mount *oldmnt;
1895 int *countp;
1896 struct thread *td;
1897 {
1898 struct vnode *devvp;
1899 struct ufsmount *ump;
1900 int count, error;
1901
1902 /*
1903 * Alternately flush the block device associated with the mount
1904 * point and process any dependencies that the flushing
1905 * creates. We continue until no more worklist dependencies
1906 * are found.
1907 */
1908 *countp = 0;
1909 error = 0;
1910 ump = VFSTOUFS(oldmnt);
1911 devvp = ump->um_devvp;
1912 while ((count = softdep_process_worklist(oldmnt, 1)) > 0) {
1913 *countp += count;
1914 vn_lock(devvp, LK_EXCLUSIVE | LK_RETRY);
1915 error = VOP_FSYNC(devvp, MNT_WAIT, td);
1916 VOP_UNLOCK(devvp, 0);
1917 if (error != 0)
1918 break;
1919 }
1920 return (error);
1921 }
1922
1923 #define SU_WAITIDLE_RETRIES 20
1924 static int
softdep_waitidle(struct mount * mp,int flags __unused)1925 softdep_waitidle(struct mount *mp, int flags __unused)
1926 {
1927 struct ufsmount *ump;
1928 struct vnode *devvp;
1929 struct thread *td;
1930 int error, i;
1931
1932 ump = VFSTOUFS(mp);
1933 devvp = ump->um_devvp;
1934 td = curthread;
1935 error = 0;
1936 ACQUIRE_LOCK(ump);
1937 for (i = 0; i < SU_WAITIDLE_RETRIES && ump->softdep_deps != 0; i++) {
1938 ump->softdep_req = 1;
1939 KASSERT((flags & FORCECLOSE) == 0 ||
1940 ump->softdep_on_worklist == 0,
1941 ("softdep_waitidle: work added after flush"));
1942 msleep(&ump->softdep_deps, LOCK_PTR(ump), PVM | PDROP,
1943 "softdeps", 10 * hz);
1944 vn_lock(devvp, LK_EXCLUSIVE | LK_RETRY);
1945 error = VOP_FSYNC(devvp, MNT_WAIT, td);
1946 VOP_UNLOCK(devvp, 0);
1947 ACQUIRE_LOCK(ump);
1948 if (error != 0)
1949 break;
1950 }
1951 ump->softdep_req = 0;
1952 if (i == SU_WAITIDLE_RETRIES && error == 0 && ump->softdep_deps != 0) {
1953 error = EBUSY;
1954 printf("softdep_waitidle: Failed to flush worklist for %p\n",
1955 mp);
1956 }
1957 FREE_LOCK(ump);
1958 return (error);
1959 }
1960
1961 /*
1962 * Flush all vnodes and worklist items associated with a specified mount point.
1963 */
1964 int
softdep_flushfiles(oldmnt,flags,td)1965 softdep_flushfiles(oldmnt, flags, td)
1966 struct mount *oldmnt;
1967 int flags;
1968 struct thread *td;
1969 {
1970 #ifdef QUOTA
1971 struct ufsmount *ump;
1972 int i;
1973 #endif
1974 int error, early, depcount, loopcnt, retry_flush_count, retry;
1975 int morework;
1976
1977 KASSERT(MOUNTEDSOFTDEP(oldmnt) != 0,
1978 ("softdep_flushfiles called on non-softdep filesystem"));
1979 loopcnt = 10;
1980 retry_flush_count = 3;
1981 retry_flush:
1982 error = 0;
1983
1984 /*
1985 * Alternately flush the vnodes associated with the mount
1986 * point and process any dependencies that the flushing
1987 * creates. In theory, this loop can happen at most twice,
1988 * but we give it a few extra just to be sure.
1989 */
1990 for (; loopcnt > 0; loopcnt--) {
1991 /*
1992 * Do another flush in case any vnodes were brought in
1993 * as part of the cleanup operations.
1994 */
1995 early = retry_flush_count == 1 || (oldmnt->mnt_kern_flag &
1996 MNTK_UNMOUNT) == 0 ? 0 : EARLYFLUSH;
1997 if ((error = ffs_flushfiles(oldmnt, flags | early, td)) != 0)
1998 break;
1999 if ((error = softdep_flushworklist(oldmnt, &depcount, td)) != 0 ||
2000 depcount == 0)
2001 break;
2002 }
2003 /*
2004 * If we are unmounting then it is an error to fail. If we
2005 * are simply trying to downgrade to read-only, then filesystem
2006 * activity can keep us busy forever, so we just fail with EBUSY.
2007 */
2008 if (loopcnt == 0) {
2009 if (oldmnt->mnt_kern_flag & MNTK_UNMOUNT)
2010 panic("softdep_flushfiles: looping");
2011 error = EBUSY;
2012 }
2013 if (!error)
2014 error = softdep_waitidle(oldmnt, flags);
2015 if (!error) {
2016 if (oldmnt->mnt_kern_flag & MNTK_UNMOUNT) {
2017 retry = 0;
2018 MNT_ILOCK(oldmnt);
2019 morework = oldmnt->mnt_nvnodelistsize > 0;
2020 #ifdef QUOTA
2021 ump = VFSTOUFS(oldmnt);
2022 UFS_LOCK(ump);
2023 for (i = 0; i < MAXQUOTAS; i++) {
2024 if (ump->um_quotas[i] != NULLVP)
2025 morework = 1;
2026 }
2027 UFS_UNLOCK(ump);
2028 #endif
2029 if (morework) {
2030 if (--retry_flush_count > 0) {
2031 retry = 1;
2032 loopcnt = 3;
2033 } else
2034 error = EBUSY;
2035 }
2036 MNT_IUNLOCK(oldmnt);
2037 if (retry)
2038 goto retry_flush;
2039 }
2040 }
2041 return (error);
2042 }
2043
2044 /*
2045 * Structure hashing.
2046 *
2047 * There are four types of structures that can be looked up:
2048 * 1) pagedep structures identified by mount point, inode number,
2049 * and logical block.
2050 * 2) inodedep structures identified by mount point and inode number.
2051 * 3) newblk structures identified by mount point and
2052 * physical block number.
2053 * 4) bmsafemap structures identified by mount point and
2054 * cylinder group number.
2055 *
2056 * The "pagedep" and "inodedep" dependency structures are hashed
2057 * separately from the file blocks and inodes to which they correspond.
2058 * This separation helps when the in-memory copy of an inode or
2059 * file block must be replaced. It also obviates the need to access
2060 * an inode or file page when simply updating (or de-allocating)
2061 * dependency structures. Lookup of newblk structures is needed to
2062 * find newly allocated blocks when trying to associate them with
2063 * their allocdirect or allocindir structure.
2064 *
2065 * The lookup routines optionally create and hash a new instance when
2066 * an existing entry is not found. The bmsafemap lookup routine always
2067 * allocates a new structure if an existing one is not found.
2068 */
2069 #define DEPALLOC 0x0001 /* allocate structure if lookup fails */
2070
2071 /*
2072 * Structures and routines associated with pagedep caching.
2073 */
2074 #define PAGEDEP_HASH(ump, inum, lbn) \
2075 (&(ump)->pagedep_hashtbl[((inum) + (lbn)) & (ump)->pagedep_hash_size])
2076
2077 static int
pagedep_find(pagedephd,ino,lbn,pagedeppp)2078 pagedep_find(pagedephd, ino, lbn, pagedeppp)
2079 struct pagedep_hashhead *pagedephd;
2080 ino_t ino;
2081 ufs_lbn_t lbn;
2082 struct pagedep **pagedeppp;
2083 {
2084 struct pagedep *pagedep;
2085
2086 LIST_FOREACH(pagedep, pagedephd, pd_hash) {
2087 if (ino == pagedep->pd_ino && lbn == pagedep->pd_lbn) {
2088 *pagedeppp = pagedep;
2089 return (1);
2090 }
2091 }
2092 *pagedeppp = NULL;
2093 return (0);
2094 }
2095 /*
2096 * Look up a pagedep. Return 1 if found, 0 otherwise.
2097 * If not found, allocate if DEPALLOC flag is passed.
2098 * Found or allocated entry is returned in pagedeppp.
2099 */
2100 static int
pagedep_lookup(mp,bp,ino,lbn,flags,pagedeppp)2101 pagedep_lookup(mp, bp, ino, lbn, flags, pagedeppp)
2102 struct mount *mp;
2103 struct buf *bp;
2104 ino_t ino;
2105 ufs_lbn_t lbn;
2106 int flags;
2107 struct pagedep **pagedeppp;
2108 {
2109 struct pagedep *pagedep;
2110 struct pagedep_hashhead *pagedephd;
2111 struct worklist *wk;
2112 struct ufsmount *ump;
2113 int ret;
2114 int i;
2115
2116 ump = VFSTOUFS(mp);
2117 LOCK_OWNED(ump);
2118 if (bp) {
2119 LIST_FOREACH(wk, &bp->b_dep, wk_list) {
2120 if (wk->wk_type == D_PAGEDEP) {
2121 *pagedeppp = WK_PAGEDEP(wk);
2122 return (1);
2123 }
2124 }
2125 }
2126 pagedephd = PAGEDEP_HASH(ump, ino, lbn);
2127 ret = pagedep_find(pagedephd, ino, lbn, pagedeppp);
2128 if (ret) {
2129 if (((*pagedeppp)->pd_state & ONWORKLIST) == 0 && bp)
2130 WORKLIST_INSERT(&bp->b_dep, &(*pagedeppp)->pd_list);
2131 return (1);
2132 }
2133 if ((flags & DEPALLOC) == 0)
2134 return (0);
2135 FREE_LOCK(ump);
2136 pagedep = malloc(sizeof(struct pagedep),
2137 M_PAGEDEP, M_SOFTDEP_FLAGS|M_ZERO);
2138 workitem_alloc(&pagedep->pd_list, D_PAGEDEP, mp);
2139 ACQUIRE_LOCK(ump);
2140 ret = pagedep_find(pagedephd, ino, lbn, pagedeppp);
2141 if (*pagedeppp) {
2142 /*
2143 * This should never happen since we only create pagedeps
2144 * with the vnode lock held. Could be an assert.
2145 */
2146 WORKITEM_FREE(pagedep, D_PAGEDEP);
2147 return (ret);
2148 }
2149 pagedep->pd_ino = ino;
2150 pagedep->pd_lbn = lbn;
2151 LIST_INIT(&pagedep->pd_dirremhd);
2152 LIST_INIT(&pagedep->pd_pendinghd);
2153 for (i = 0; i < DAHASHSZ; i++)
2154 LIST_INIT(&pagedep->pd_diraddhd[i]);
2155 LIST_INSERT_HEAD(pagedephd, pagedep, pd_hash);
2156 WORKLIST_INSERT(&bp->b_dep, &pagedep->pd_list);
2157 *pagedeppp = pagedep;
2158 return (0);
2159 }
2160
2161 /*
2162 * Structures and routines associated with inodedep caching.
2163 */
2164 #define INODEDEP_HASH(ump, inum) \
2165 (&(ump)->inodedep_hashtbl[(inum) & (ump)->inodedep_hash_size])
2166
2167 static int
inodedep_find(inodedephd,inum,inodedeppp)2168 inodedep_find(inodedephd, inum, inodedeppp)
2169 struct inodedep_hashhead *inodedephd;
2170 ino_t inum;
2171 struct inodedep **inodedeppp;
2172 {
2173 struct inodedep *inodedep;
2174
2175 LIST_FOREACH(inodedep, inodedephd, id_hash)
2176 if (inum == inodedep->id_ino)
2177 break;
2178 if (inodedep) {
2179 *inodedeppp = inodedep;
2180 return (1);
2181 }
2182 *inodedeppp = NULL;
2183
2184 return (0);
2185 }
2186 /*
2187 * Look up an inodedep. Return 1 if found, 0 if not found.
2188 * If not found, allocate if DEPALLOC flag is passed.
2189 * Found or allocated entry is returned in inodedeppp.
2190 */
2191 static int
inodedep_lookup(mp,inum,flags,inodedeppp)2192 inodedep_lookup(mp, inum, flags, inodedeppp)
2193 struct mount *mp;
2194 ino_t inum;
2195 int flags;
2196 struct inodedep **inodedeppp;
2197 {
2198 struct inodedep *inodedep;
2199 struct inodedep_hashhead *inodedephd;
2200 struct ufsmount *ump;
2201 struct fs *fs;
2202
2203 ump = VFSTOUFS(mp);
2204 LOCK_OWNED(ump);
2205 fs = ump->um_fs;
2206 inodedephd = INODEDEP_HASH(ump, inum);
2207
2208 if (inodedep_find(inodedephd, inum, inodedeppp))
2209 return (1);
2210 if ((flags & DEPALLOC) == 0)
2211 return (0);
2212 /*
2213 * If the system is over its limit and our filesystem is
2214 * responsible for more than our share of that usage and
2215 * we are not in a rush, request some inodedep cleanup.
2216 */
2217 if (softdep_excess_items(ump, D_INODEDEP))
2218 schedule_cleanup(mp);
2219 else
2220 FREE_LOCK(ump);
2221 inodedep = malloc(sizeof(struct inodedep),
2222 M_INODEDEP, M_SOFTDEP_FLAGS);
2223 workitem_alloc(&inodedep->id_list, D_INODEDEP, mp);
2224 ACQUIRE_LOCK(ump);
2225 if (inodedep_find(inodedephd, inum, inodedeppp)) {
2226 WORKITEM_FREE(inodedep, D_INODEDEP);
2227 return (1);
2228 }
2229 inodedep->id_fs = fs;
2230 inodedep->id_ino = inum;
2231 inodedep->id_state = ALLCOMPLETE;
2232 inodedep->id_nlinkdelta = 0;
2233 inodedep->id_savedino1 = NULL;
2234 inodedep->id_savedsize = -1;
2235 inodedep->id_savedextsize = -1;
2236 inodedep->id_savednlink = -1;
2237 inodedep->id_bmsafemap = NULL;
2238 inodedep->id_mkdiradd = NULL;
2239 LIST_INIT(&inodedep->id_dirremhd);
2240 LIST_INIT(&inodedep->id_pendinghd);
2241 LIST_INIT(&inodedep->id_inowait);
2242 LIST_INIT(&inodedep->id_bufwait);
2243 TAILQ_INIT(&inodedep->id_inoreflst);
2244 TAILQ_INIT(&inodedep->id_inoupdt);
2245 TAILQ_INIT(&inodedep->id_newinoupdt);
2246 TAILQ_INIT(&inodedep->id_extupdt);
2247 TAILQ_INIT(&inodedep->id_newextupdt);
2248 TAILQ_INIT(&inodedep->id_freeblklst);
2249 LIST_INSERT_HEAD(inodedephd, inodedep, id_hash);
2250 *inodedeppp = inodedep;
2251 return (0);
2252 }
2253
2254 /*
2255 * Structures and routines associated with newblk caching.
2256 */
2257 #define NEWBLK_HASH(ump, inum) \
2258 (&(ump)->newblk_hashtbl[(inum) & (ump)->newblk_hash_size])
2259
2260 static int
newblk_find(newblkhd,newblkno,flags,newblkpp)2261 newblk_find(newblkhd, newblkno, flags, newblkpp)
2262 struct newblk_hashhead *newblkhd;
2263 ufs2_daddr_t newblkno;
2264 int flags;
2265 struct newblk **newblkpp;
2266 {
2267 struct newblk *newblk;
2268
2269 LIST_FOREACH(newblk, newblkhd, nb_hash) {
2270 if (newblkno != newblk->nb_newblkno)
2271 continue;
2272 /*
2273 * If we're creating a new dependency don't match those that
2274 * have already been converted to allocdirects. This is for
2275 * a frag extend.
2276 */
2277 if ((flags & DEPALLOC) && newblk->nb_list.wk_type != D_NEWBLK)
2278 continue;
2279 break;
2280 }
2281 if (newblk) {
2282 *newblkpp = newblk;
2283 return (1);
2284 }
2285 *newblkpp = NULL;
2286 return (0);
2287 }
2288
2289 /*
2290 * Look up a newblk. Return 1 if found, 0 if not found.
2291 * If not found, allocate if DEPALLOC flag is passed.
2292 * Found or allocated entry is returned in newblkpp.
2293 */
2294 static int
newblk_lookup(mp,newblkno,flags,newblkpp)2295 newblk_lookup(mp, newblkno, flags, newblkpp)
2296 struct mount *mp;
2297 ufs2_daddr_t newblkno;
2298 int flags;
2299 struct newblk **newblkpp;
2300 {
2301 struct newblk *newblk;
2302 struct newblk_hashhead *newblkhd;
2303 struct ufsmount *ump;
2304
2305 ump = VFSTOUFS(mp);
2306 LOCK_OWNED(ump);
2307 newblkhd = NEWBLK_HASH(ump, newblkno);
2308 if (newblk_find(newblkhd, newblkno, flags, newblkpp))
2309 return (1);
2310 if ((flags & DEPALLOC) == 0)
2311 return (0);
2312 if (softdep_excess_items(ump, D_NEWBLK) ||
2313 softdep_excess_items(ump, D_ALLOCDIRECT) ||
2314 softdep_excess_items(ump, D_ALLOCINDIR))
2315 schedule_cleanup(mp);
2316 else
2317 FREE_LOCK(ump);
2318 newblk = malloc(sizeof(union allblk), M_NEWBLK,
2319 M_SOFTDEP_FLAGS | M_ZERO);
2320 workitem_alloc(&newblk->nb_list, D_NEWBLK, mp);
2321 ACQUIRE_LOCK(ump);
2322 if (newblk_find(newblkhd, newblkno, flags, newblkpp)) {
2323 WORKITEM_FREE(newblk, D_NEWBLK);
2324 return (1);
2325 }
2326 newblk->nb_freefrag = NULL;
2327 LIST_INIT(&newblk->nb_indirdeps);
2328 LIST_INIT(&newblk->nb_newdirblk);
2329 LIST_INIT(&newblk->nb_jwork);
2330 newblk->nb_state = ATTACHED;
2331 newblk->nb_newblkno = newblkno;
2332 LIST_INSERT_HEAD(newblkhd, newblk, nb_hash);
2333 *newblkpp = newblk;
2334 return (0);
2335 }
2336
2337 /*
2338 * Structures and routines associated with freed indirect block caching.
2339 */
2340 #define INDIR_HASH(ump, blkno) \
2341 (&(ump)->indir_hashtbl[(blkno) & (ump)->indir_hash_size])
2342
2343 /*
2344 * Lookup an indirect block in the indir hash table. The freework is
2345 * removed and potentially freed. The caller must do a blocking journal
2346 * write before writing to the blkno.
2347 */
2348 static int
indirblk_lookup(mp,blkno)2349 indirblk_lookup(mp, blkno)
2350 struct mount *mp;
2351 ufs2_daddr_t blkno;
2352 {
2353 struct freework *freework;
2354 struct indir_hashhead *wkhd;
2355 struct ufsmount *ump;
2356
2357 ump = VFSTOUFS(mp);
2358 wkhd = INDIR_HASH(ump, blkno);
2359 TAILQ_FOREACH(freework, wkhd, fw_next) {
2360 if (freework->fw_blkno != blkno)
2361 continue;
2362 indirblk_remove(freework);
2363 return (1);
2364 }
2365 return (0);
2366 }
2367
2368 /*
2369 * Insert an indirect block represented by freework into the indirblk
2370 * hash table so that it may prevent the block from being re-used prior
2371 * to the journal being written.
2372 */
2373 static void
indirblk_insert(freework)2374 indirblk_insert(freework)
2375 struct freework *freework;
2376 {
2377 struct jblocks *jblocks;
2378 struct jseg *jseg;
2379 struct ufsmount *ump;
2380
2381 ump = VFSTOUFS(freework->fw_list.wk_mp);
2382 jblocks = ump->softdep_jblocks;
2383 jseg = TAILQ_LAST(&jblocks->jb_segs, jseglst);
2384 if (jseg == NULL)
2385 return;
2386
2387 LIST_INSERT_HEAD(&jseg->js_indirs, freework, fw_segs);
2388 TAILQ_INSERT_HEAD(INDIR_HASH(ump, freework->fw_blkno), freework,
2389 fw_next);
2390 freework->fw_state &= ~DEPCOMPLETE;
2391 }
2392
2393 static void
indirblk_remove(freework)2394 indirblk_remove(freework)
2395 struct freework *freework;
2396 {
2397 struct ufsmount *ump;
2398
2399 ump = VFSTOUFS(freework->fw_list.wk_mp);
2400 LIST_REMOVE(freework, fw_segs);
2401 TAILQ_REMOVE(INDIR_HASH(ump, freework->fw_blkno), freework, fw_next);
2402 freework->fw_state |= DEPCOMPLETE;
2403 if ((freework->fw_state & ALLCOMPLETE) == ALLCOMPLETE)
2404 WORKITEM_FREE(freework, D_FREEWORK);
2405 }
2406
2407 /*
2408 * Executed during filesystem system initialization before
2409 * mounting any filesystems.
2410 */
2411 void
softdep_initialize()2412 softdep_initialize()
2413 {
2414
2415 TAILQ_INIT(&softdepmounts);
2416 #ifdef __LP64__
2417 max_softdeps = desiredvnodes * 4;
2418 #else
2419 max_softdeps = desiredvnodes * 2;
2420 #endif
2421
2422 /* initialise bioops hack */
2423 bioops.io_start = softdep_disk_io_initiation;
2424 bioops.io_complete = softdep_disk_write_complete;
2425 bioops.io_deallocate = softdep_deallocate_dependencies;
2426 bioops.io_countdeps = softdep_count_dependencies;
2427 softdep_ast_cleanup = softdep_ast_cleanup_proc;
2428
2429 /* Initialize the callout with an mtx. */
2430 callout_init_mtx(&softdep_callout, &lk, 0);
2431 }
2432
2433 /*
2434 * Executed after all filesystems have been unmounted during
2435 * filesystem module unload.
2436 */
2437 void
softdep_uninitialize()2438 softdep_uninitialize()
2439 {
2440
2441 /* clear bioops hack */
2442 bioops.io_start = NULL;
2443 bioops.io_complete = NULL;
2444 bioops.io_deallocate = NULL;
2445 bioops.io_countdeps = NULL;
2446 softdep_ast_cleanup = NULL;
2447
2448 callout_drain(&softdep_callout);
2449 }
2450
2451 /*
2452 * Called at mount time to notify the dependency code that a
2453 * filesystem wishes to use it.
2454 */
2455 int
softdep_mount(devvp,mp,fs,cred)2456 softdep_mount(devvp, mp, fs, cred)
2457 struct vnode *devvp;
2458 struct mount *mp;
2459 struct fs *fs;
2460 struct ucred *cred;
2461 {
2462 struct csum_total cstotal;
2463 struct mount_softdeps *sdp;
2464 struct ufsmount *ump;
2465 struct cg *cgp;
2466 struct buf *bp;
2467 u_int cyl, i;
2468 int error;
2469
2470 sdp = malloc(sizeof(struct mount_softdeps), M_MOUNTDATA,
2471 M_WAITOK | M_ZERO);
2472 MNT_ILOCK(mp);
2473 mp->mnt_flag = (mp->mnt_flag & ~MNT_ASYNC) | MNT_SOFTDEP;
2474 if ((mp->mnt_kern_flag & MNTK_SOFTDEP) == 0) {
2475 mp->mnt_kern_flag = (mp->mnt_kern_flag & ~MNTK_ASYNC) |
2476 MNTK_SOFTDEP | MNTK_NOASYNC;
2477 }
2478 ump = VFSTOUFS(mp);
2479 ump->um_softdep = sdp;
2480 MNT_IUNLOCK(mp);
2481 rw_init(LOCK_PTR(ump), "Per-Filesystem Softdep Lock");
2482 sdp->sd_ump = ump;
2483 LIST_INIT(&ump->softdep_workitem_pending);
2484 LIST_INIT(&ump->softdep_journal_pending);
2485 TAILQ_INIT(&ump->softdep_unlinked);
2486 LIST_INIT(&ump->softdep_dirtycg);
2487 ump->softdep_worklist_tail = NULL;
2488 ump->softdep_on_worklist = 0;
2489 ump->softdep_deps = 0;
2490 LIST_INIT(&ump->softdep_mkdirlisthd);
2491 ump->pagedep_hashtbl = hashinit(desiredvnodes / 5, M_PAGEDEP,
2492 &ump->pagedep_hash_size);
2493 ump->pagedep_nextclean = 0;
2494 ump->inodedep_hashtbl = hashinit(desiredvnodes, M_INODEDEP,
2495 &ump->inodedep_hash_size);
2496 ump->inodedep_nextclean = 0;
2497 ump->newblk_hashtbl = hashinit(max_softdeps / 2, M_NEWBLK,
2498 &ump->newblk_hash_size);
2499 ump->bmsafemap_hashtbl = hashinit(1024, M_BMSAFEMAP,
2500 &ump->bmsafemap_hash_size);
2501 i = 1 << (ffs(desiredvnodes / 10) - 1);
2502 ump->indir_hashtbl = malloc(i * sizeof(struct indir_hashhead),
2503 M_FREEWORK, M_WAITOK);
2504 ump->indir_hash_size = i - 1;
2505 for (i = 0; i <= ump->indir_hash_size; i++)
2506 TAILQ_INIT(&ump->indir_hashtbl[i]);
2507 ACQUIRE_GBLLOCK(&lk);
2508 TAILQ_INSERT_TAIL(&softdepmounts, sdp, sd_next);
2509 FREE_GBLLOCK(&lk);
2510 if ((fs->fs_flags & FS_SUJ) &&
2511 (error = journal_mount(mp, fs, cred)) != 0) {
2512 printf("Failed to start journal: %d\n", error);
2513 softdep_unmount(mp);
2514 return (error);
2515 }
2516 /*
2517 * Start our flushing thread in the bufdaemon process.
2518 */
2519 ACQUIRE_LOCK(ump);
2520 ump->softdep_flags |= FLUSH_STARTING;
2521 FREE_LOCK(ump);
2522 kproc_kthread_add(&softdep_flush, mp, &bufdaemonproc,
2523 &ump->softdep_flushtd, 0, 0, "softdepflush", "%s worker",
2524 mp->mnt_stat.f_mntonname);
2525 ACQUIRE_LOCK(ump);
2526 while ((ump->softdep_flags & FLUSH_STARTING) != 0) {
2527 msleep(&ump->softdep_flushtd, LOCK_PTR(ump), PVM, "sdstart",
2528 hz / 2);
2529 }
2530 FREE_LOCK(ump);
2531 /*
2532 * When doing soft updates, the counters in the
2533 * superblock may have gotten out of sync. Recomputation
2534 * can take a long time and can be deferred for background
2535 * fsck. However, the old behavior of scanning the cylinder
2536 * groups and recalculating them at mount time is available
2537 * by setting vfs.ffs.compute_summary_at_mount to one.
2538 */
2539 if (compute_summary_at_mount == 0 || fs->fs_clean != 0)
2540 return (0);
2541 bzero(&cstotal, sizeof cstotal);
2542 for (cyl = 0; cyl < fs->fs_ncg; cyl++) {
2543 if ((error = bread(devvp, fsbtodb(fs, cgtod(fs, cyl)),
2544 fs->fs_cgsize, cred, &bp)) != 0) {
2545 brelse(bp);
2546 softdep_unmount(mp);
2547 return (error);
2548 }
2549 cgp = (struct cg *)bp->b_data;
2550 cstotal.cs_nffree += cgp->cg_cs.cs_nffree;
2551 cstotal.cs_nbfree += cgp->cg_cs.cs_nbfree;
2552 cstotal.cs_nifree += cgp->cg_cs.cs_nifree;
2553 cstotal.cs_ndir += cgp->cg_cs.cs_ndir;
2554 fs->fs_cs(fs, cyl) = cgp->cg_cs;
2555 brelse(bp);
2556 }
2557 #ifdef DEBUG
2558 if (bcmp(&cstotal, &fs->fs_cstotal, sizeof cstotal))
2559 printf("%s: superblock summary recomputed\n", fs->fs_fsmnt);
2560 #endif
2561 bcopy(&cstotal, &fs->fs_cstotal, sizeof cstotal);
2562 return (0);
2563 }
2564
2565 void
softdep_unmount(mp)2566 softdep_unmount(mp)
2567 struct mount *mp;
2568 {
2569 struct ufsmount *ump;
2570 #ifdef INVARIANTS
2571 int i;
2572 #endif
2573
2574 KASSERT(MOUNTEDSOFTDEP(mp) != 0,
2575 ("softdep_unmount called on non-softdep filesystem"));
2576 ump = VFSTOUFS(mp);
2577 MNT_ILOCK(mp);
2578 mp->mnt_flag &= ~MNT_SOFTDEP;
2579 if (MOUNTEDSUJ(mp) == 0) {
2580 MNT_IUNLOCK(mp);
2581 } else {
2582 mp->mnt_flag &= ~MNT_SUJ;
2583 MNT_IUNLOCK(mp);
2584 journal_unmount(ump);
2585 }
2586 /*
2587 * Shut down our flushing thread. Check for NULL is if
2588 * softdep_mount errors out before the thread has been created.
2589 */
2590 if (ump->softdep_flushtd != NULL) {
2591 ACQUIRE_LOCK(ump);
2592 ump->softdep_flags |= FLUSH_EXIT;
2593 wakeup(&ump->softdep_flushtd);
2594 msleep(&ump->softdep_flags, LOCK_PTR(ump), PVM | PDROP,
2595 "sdwait", 0);
2596 KASSERT((ump->softdep_flags & FLUSH_EXIT) == 0,
2597 ("Thread shutdown failed"));
2598 }
2599 /*
2600 * Free up our resources.
2601 */
2602 ACQUIRE_GBLLOCK(&lk);
2603 TAILQ_REMOVE(&softdepmounts, ump->um_softdep, sd_next);
2604 FREE_GBLLOCK(&lk);
2605 rw_destroy(LOCK_PTR(ump));
2606 hashdestroy(ump->pagedep_hashtbl, M_PAGEDEP, ump->pagedep_hash_size);
2607 hashdestroy(ump->inodedep_hashtbl, M_INODEDEP, ump->inodedep_hash_size);
2608 hashdestroy(ump->newblk_hashtbl, M_NEWBLK, ump->newblk_hash_size);
2609 hashdestroy(ump->bmsafemap_hashtbl, M_BMSAFEMAP,
2610 ump->bmsafemap_hash_size);
2611 free(ump->indir_hashtbl, M_FREEWORK);
2612 #ifdef INVARIANTS
2613 for (i = 0; i <= D_LAST; i++)
2614 KASSERT(ump->softdep_curdeps[i] == 0,
2615 ("Unmount %s: Dep type %s != 0 (%ld)", ump->um_fs->fs_fsmnt,
2616 TYPENAME(i), ump->softdep_curdeps[i]));
2617 #endif
2618 free(ump->um_softdep, M_MOUNTDATA);
2619 }
2620
2621 static struct jblocks *
jblocks_create(void)2622 jblocks_create(void)
2623 {
2624 struct jblocks *jblocks;
2625
2626 jblocks = malloc(sizeof(*jblocks), M_JBLOCKS, M_WAITOK | M_ZERO);
2627 TAILQ_INIT(&jblocks->jb_segs);
2628 jblocks->jb_avail = 10;
2629 jblocks->jb_extent = malloc(sizeof(struct jextent) * jblocks->jb_avail,
2630 M_JBLOCKS, M_WAITOK | M_ZERO);
2631
2632 return (jblocks);
2633 }
2634
2635 static ufs2_daddr_t
jblocks_alloc(jblocks,bytes,actual)2636 jblocks_alloc(jblocks, bytes, actual)
2637 struct jblocks *jblocks;
2638 int bytes;
2639 int *actual;
2640 {
2641 ufs2_daddr_t daddr;
2642 struct jextent *jext;
2643 int freecnt;
2644 int blocks;
2645
2646 blocks = bytes / DEV_BSIZE;
2647 jext = &jblocks->jb_extent[jblocks->jb_head];
2648 freecnt = jext->je_blocks - jblocks->jb_off;
2649 if (freecnt == 0) {
2650 jblocks->jb_off = 0;
2651 if (++jblocks->jb_head > jblocks->jb_used)
2652 jblocks->jb_head = 0;
2653 jext = &jblocks->jb_extent[jblocks->jb_head];
2654 freecnt = jext->je_blocks;
2655 }
2656 if (freecnt > blocks)
2657 freecnt = blocks;
2658 *actual = freecnt * DEV_BSIZE;
2659 daddr = jext->je_daddr + jblocks->jb_off;
2660 jblocks->jb_off += freecnt;
2661 jblocks->jb_free -= freecnt;
2662
2663 return (daddr);
2664 }
2665
2666 static void
jblocks_free(jblocks,mp,bytes)2667 jblocks_free(jblocks, mp, bytes)
2668 struct jblocks *jblocks;
2669 struct mount *mp;
2670 int bytes;
2671 {
2672
2673 LOCK_OWNED(VFSTOUFS(mp));
2674 jblocks->jb_free += bytes / DEV_BSIZE;
2675 if (jblocks->jb_suspended)
2676 worklist_speedup(mp);
2677 wakeup(jblocks);
2678 }
2679
2680 static void
jblocks_destroy(jblocks)2681 jblocks_destroy(jblocks)
2682 struct jblocks *jblocks;
2683 {
2684
2685 if (jblocks->jb_extent)
2686 free(jblocks->jb_extent, M_JBLOCKS);
2687 free(jblocks, M_JBLOCKS);
2688 }
2689
2690 static void
jblocks_add(jblocks,daddr,blocks)2691 jblocks_add(jblocks, daddr, blocks)
2692 struct jblocks *jblocks;
2693 ufs2_daddr_t daddr;
2694 int blocks;
2695 {
2696 struct jextent *jext;
2697
2698 jblocks->jb_blocks += blocks;
2699 jblocks->jb_free += blocks;
2700 jext = &jblocks->jb_extent[jblocks->jb_used];
2701 /* Adding the first block. */
2702 if (jext->je_daddr == 0) {
2703 jext->je_daddr = daddr;
2704 jext->je_blocks = blocks;
2705 return;
2706 }
2707 /* Extending the last extent. */
2708 if (jext->je_daddr + jext->je_blocks == daddr) {
2709 jext->je_blocks += blocks;
2710 return;
2711 }
2712 /* Adding a new extent. */
2713 if (++jblocks->jb_used == jblocks->jb_avail) {
2714 jblocks->jb_avail *= 2;
2715 jext = malloc(sizeof(struct jextent) * jblocks->jb_avail,
2716 M_JBLOCKS, M_WAITOK | M_ZERO);
2717 memcpy(jext, jblocks->jb_extent,
2718 sizeof(struct jextent) * jblocks->jb_used);
2719 free(jblocks->jb_extent, M_JBLOCKS);
2720 jblocks->jb_extent = jext;
2721 }
2722 jext = &jblocks->jb_extent[jblocks->jb_used];
2723 jext->je_daddr = daddr;
2724 jext->je_blocks = blocks;
2725 return;
2726 }
2727
2728 int
softdep_journal_lookup(mp,vpp)2729 softdep_journal_lookup(mp, vpp)
2730 struct mount *mp;
2731 struct vnode **vpp;
2732 {
2733 struct componentname cnp;
2734 struct vnode *dvp;
2735 ino_t sujournal;
2736 int error;
2737
2738 error = VFS_VGET(mp, UFS_ROOTINO, LK_EXCLUSIVE, &dvp);
2739 if (error)
2740 return (error);
2741 bzero(&cnp, sizeof(cnp));
2742 cnp.cn_nameiop = LOOKUP;
2743 cnp.cn_flags = ISLASTCN;
2744 cnp.cn_thread = curthread;
2745 cnp.cn_cred = curthread->td_ucred;
2746 cnp.cn_pnbuf = SUJ_FILE;
2747 cnp.cn_nameptr = SUJ_FILE;
2748 cnp.cn_namelen = strlen(SUJ_FILE);
2749 error = ufs_lookup_ino(dvp, NULL, &cnp, &sujournal);
2750 vput(dvp);
2751 if (error != 0)
2752 return (error);
2753 error = VFS_VGET(mp, sujournal, LK_EXCLUSIVE, vpp);
2754 return (error);
2755 }
2756
2757 /*
2758 * Open and verify the journal file.
2759 */
2760 static int
journal_mount(mp,fs,cred)2761 journal_mount(mp, fs, cred)
2762 struct mount *mp;
2763 struct fs *fs;
2764 struct ucred *cred;
2765 {
2766 struct jblocks *jblocks;
2767 struct ufsmount *ump;
2768 struct vnode *vp;
2769 struct inode *ip;
2770 ufs2_daddr_t blkno;
2771 int bcount;
2772 int error;
2773 int i;
2774
2775 ump = VFSTOUFS(mp);
2776 ump->softdep_journal_tail = NULL;
2777 ump->softdep_on_journal = 0;
2778 ump->softdep_accdeps = 0;
2779 ump->softdep_req = 0;
2780 ump->softdep_jblocks = NULL;
2781 error = softdep_journal_lookup(mp, &vp);
2782 if (error != 0) {
2783 printf("Failed to find journal. Use tunefs to create one\n");
2784 return (error);
2785 }
2786 ip = VTOI(vp);
2787 if (ip->i_size < SUJ_MIN) {
2788 error = ENOSPC;
2789 goto out;
2790 }
2791 bcount = lblkno(fs, ip->i_size); /* Only use whole blocks. */
2792 jblocks = jblocks_create();
2793 for (i = 0; i < bcount; i++) {
2794 error = ufs_bmaparray(vp, i, &blkno, NULL, NULL, NULL);
2795 if (error)
2796 break;
2797 jblocks_add(jblocks, blkno, fsbtodb(fs, fs->fs_frag));
2798 }
2799 if (error) {
2800 jblocks_destroy(jblocks);
2801 goto out;
2802 }
2803 jblocks->jb_low = jblocks->jb_free / 3; /* Reserve 33%. */
2804 jblocks->jb_min = jblocks->jb_free / 10; /* Suspend at 10%. */
2805 ump->softdep_jblocks = jblocks;
2806 out:
2807 if (error == 0) {
2808 MNT_ILOCK(mp);
2809 mp->mnt_flag |= MNT_SUJ;
2810 mp->mnt_flag &= ~MNT_SOFTDEP;
2811 MNT_IUNLOCK(mp);
2812 /*
2813 * Only validate the journal contents if the
2814 * filesystem is clean, otherwise we write the logs
2815 * but they'll never be used. If the filesystem was
2816 * still dirty when we mounted it the journal is
2817 * invalid and a new journal can only be valid if it
2818 * starts from a clean mount.
2819 */
2820 if (fs->fs_clean) {
2821 DIP_SET(ip, i_modrev, fs->fs_mtime);
2822 ip->i_flags |= IN_MODIFIED;
2823 ffs_update(vp, 1);
2824 }
2825 }
2826 vput(vp);
2827 return (error);
2828 }
2829
2830 static void
journal_unmount(ump)2831 journal_unmount(ump)
2832 struct ufsmount *ump;
2833 {
2834
2835 if (ump->softdep_jblocks)
2836 jblocks_destroy(ump->softdep_jblocks);
2837 ump->softdep_jblocks = NULL;
2838 }
2839
2840 /*
2841 * Called when a journal record is ready to be written. Space is allocated
2842 * and the journal entry is created when the journal is flushed to stable
2843 * store.
2844 */
2845 static void
add_to_journal(wk)2846 add_to_journal(wk)
2847 struct worklist *wk;
2848 {
2849 struct ufsmount *ump;
2850
2851 ump = VFSTOUFS(wk->wk_mp);
2852 LOCK_OWNED(ump);
2853 if (wk->wk_state & ONWORKLIST)
2854 panic("add_to_journal: %s(0x%X) already on list",
2855 TYPENAME(wk->wk_type), wk->wk_state);
2856 wk->wk_state |= ONWORKLIST | DEPCOMPLETE;
2857 if (LIST_EMPTY(&ump->softdep_journal_pending)) {
2858 ump->softdep_jblocks->jb_age = ticks;
2859 LIST_INSERT_HEAD(&ump->softdep_journal_pending, wk, wk_list);
2860 } else
2861 LIST_INSERT_AFTER(ump->softdep_journal_tail, wk, wk_list);
2862 ump->softdep_journal_tail = wk;
2863 ump->softdep_on_journal += 1;
2864 }
2865
2866 /*
2867 * Remove an arbitrary item for the journal worklist maintain the tail
2868 * pointer. This happens when a new operation obviates the need to
2869 * journal an old operation.
2870 */
2871 static void
remove_from_journal(wk)2872 remove_from_journal(wk)
2873 struct worklist *wk;
2874 {
2875 struct ufsmount *ump;
2876
2877 ump = VFSTOUFS(wk->wk_mp);
2878 LOCK_OWNED(ump);
2879 #ifdef SUJ_DEBUG
2880 {
2881 struct worklist *wkn;
2882
2883 LIST_FOREACH(wkn, &ump->softdep_journal_pending, wk_list)
2884 if (wkn == wk)
2885 break;
2886 if (wkn == NULL)
2887 panic("remove_from_journal: %p is not in journal", wk);
2888 }
2889 #endif
2890 /*
2891 * We emulate a TAILQ to save space in most structures which do not
2892 * require TAILQ semantics. Here we must update the tail position
2893 * when removing the tail which is not the final entry. This works
2894 * only if the worklist linkage are at the beginning of the structure.
2895 */
2896 if (ump->softdep_journal_tail == wk)
2897 ump->softdep_journal_tail =
2898 (struct worklist *)wk->wk_list.le_prev;
2899 WORKLIST_REMOVE(wk);
2900 ump->softdep_on_journal -= 1;
2901 }
2902
2903 /*
2904 * Check for journal space as well as dependency limits so the prelink
2905 * code can throttle both journaled and non-journaled filesystems.
2906 * Threshold is 0 for low and 1 for min.
2907 */
2908 static int
journal_space(ump,thresh)2909 journal_space(ump, thresh)
2910 struct ufsmount *ump;
2911 int thresh;
2912 {
2913 struct jblocks *jblocks;
2914 int limit, avail;
2915
2916 jblocks = ump->softdep_jblocks;
2917 if (jblocks == NULL)
2918 return (1);
2919 /*
2920 * We use a tighter restriction here to prevent request_cleanup()
2921 * running in threads from running into locks we currently hold.
2922 * We have to be over the limit and our filesystem has to be
2923 * responsible for more than our share of that usage.
2924 */
2925 limit = (max_softdeps / 10) * 9;
2926 if (dep_current[D_INODEDEP] > limit &&
2927 ump->softdep_curdeps[D_INODEDEP] > limit / stat_flush_threads)
2928 return (0);
2929 if (thresh)
2930 thresh = jblocks->jb_min;
2931 else
2932 thresh = jblocks->jb_low;
2933 avail = (ump->softdep_on_journal * JREC_SIZE) / DEV_BSIZE;
2934 avail = jblocks->jb_free - avail;
2935
2936 return (avail > thresh);
2937 }
2938
2939 static void
journal_suspend(ump)2940 journal_suspend(ump)
2941 struct ufsmount *ump;
2942 {
2943 struct jblocks *jblocks;
2944 struct mount *mp;
2945
2946 mp = UFSTOVFS(ump);
2947 jblocks = ump->softdep_jblocks;
2948 MNT_ILOCK(mp);
2949 if ((mp->mnt_kern_flag & MNTK_SUSPEND) == 0) {
2950 stat_journal_min++;
2951 mp->mnt_kern_flag |= MNTK_SUSPEND;
2952 mp->mnt_susp_owner = ump->softdep_flushtd;
2953 }
2954 jblocks->jb_suspended = 1;
2955 MNT_IUNLOCK(mp);
2956 }
2957
2958 static int
journal_unsuspend(struct ufsmount * ump)2959 journal_unsuspend(struct ufsmount *ump)
2960 {
2961 struct jblocks *jblocks;
2962 struct mount *mp;
2963
2964 mp = UFSTOVFS(ump);
2965 jblocks = ump->softdep_jblocks;
2966
2967 if (jblocks != NULL && jblocks->jb_suspended &&
2968 journal_space(ump, jblocks->jb_min)) {
2969 jblocks->jb_suspended = 0;
2970 FREE_LOCK(ump);
2971 mp->mnt_susp_owner = curthread;
2972 vfs_write_resume(mp, 0);
2973 ACQUIRE_LOCK(ump);
2974 return (1);
2975 }
2976 return (0);
2977 }
2978
2979 /*
2980 * Called before any allocation function to be certain that there is
2981 * sufficient space in the journal prior to creating any new records.
2982 * Since in the case of block allocation we may have multiple locked
2983 * buffers at the time of the actual allocation we can not block
2984 * when the journal records are created. Doing so would create a deadlock
2985 * if any of these buffers needed to be flushed to reclaim space. Instead
2986 * we require a sufficiently large amount of available space such that
2987 * each thread in the system could have passed this allocation check and
2988 * still have sufficient free space. With 20% of a minimum journal size
2989 * of 1MB we have 6553 records available.
2990 */
2991 int
softdep_prealloc(vp,waitok)2992 softdep_prealloc(vp, waitok)
2993 struct vnode *vp;
2994 int waitok;
2995 {
2996 struct ufsmount *ump;
2997
2998 KASSERT(MOUNTEDSOFTDEP(vp->v_mount) != 0,
2999 ("softdep_prealloc called on non-softdep filesystem"));
3000 /*
3001 * Nothing to do if we are not running journaled soft updates.
3002 * If we currently hold the snapshot lock, we must avoid
3003 * handling other resources that could cause deadlock. Do not
3004 * touch quotas vnode since it is typically recursed with
3005 * other vnode locks held.
3006 */
3007 if (DOINGSUJ(vp) == 0 || IS_SNAPSHOT(VTOI(vp)) ||
3008 (vp->v_vflag & VV_SYSTEM) != 0)
3009 return (0);
3010 ump = VFSTOUFS(vp->v_mount);
3011 ACQUIRE_LOCK(ump);
3012 if (journal_space(ump, 0)) {
3013 FREE_LOCK(ump);
3014 return (0);
3015 }
3016 stat_journal_low++;
3017 FREE_LOCK(ump);
3018 if (waitok == MNT_NOWAIT)
3019 return (ENOSPC);
3020 /*
3021 * Attempt to sync this vnode once to flush any journal
3022 * work attached to it.
3023 */
3024 if ((curthread->td_pflags & TDP_COWINPROGRESS) == 0)
3025 ffs_syncvnode(vp, waitok, 0);
3026 ACQUIRE_LOCK(ump);
3027 process_removes(vp);
3028 process_truncates(vp);
3029 if (journal_space(ump, 0) == 0) {
3030 softdep_speedup(ump);
3031 if (journal_space(ump, 1) == 0)
3032 journal_suspend(ump);
3033 }
3034 FREE_LOCK(ump);
3035
3036 return (0);
3037 }
3038
3039 /*
3040 * Before adjusting a link count on a vnode verify that we have sufficient
3041 * journal space. If not, process operations that depend on the currently
3042 * locked pair of vnodes to try to flush space as the syncer, buf daemon,
3043 * and softdep flush threads can not acquire these locks to reclaim space.
3044 */
3045 static void
softdep_prelink(dvp,vp)3046 softdep_prelink(dvp, vp)
3047 struct vnode *dvp;
3048 struct vnode *vp;
3049 {
3050 struct ufsmount *ump;
3051
3052 ump = VFSTOUFS(dvp->v_mount);
3053 LOCK_OWNED(ump);
3054 /*
3055 * Nothing to do if we have sufficient journal space.
3056 * If we currently hold the snapshot lock, we must avoid
3057 * handling other resources that could cause deadlock.
3058 */
3059 if (journal_space(ump, 0) || (vp && IS_SNAPSHOT(VTOI(vp))))
3060 return;
3061 stat_journal_low++;
3062 FREE_LOCK(ump);
3063 if (vp)
3064 ffs_syncvnode(vp, MNT_NOWAIT, 0);
3065 ffs_syncvnode(dvp, MNT_WAIT, 0);
3066 ACQUIRE_LOCK(ump);
3067 /* Process vp before dvp as it may create .. removes. */
3068 if (vp) {
3069 process_removes(vp);
3070 process_truncates(vp);
3071 }
3072 process_removes(dvp);
3073 process_truncates(dvp);
3074 softdep_speedup(ump);
3075 process_worklist_item(UFSTOVFS(ump), 2, LK_NOWAIT);
3076 if (journal_space(ump, 0) == 0) {
3077 softdep_speedup(ump);
3078 if (journal_space(ump, 1) == 0)
3079 journal_suspend(ump);
3080 }
3081 }
3082
3083 static void
jseg_write(ump,jseg,data)3084 jseg_write(ump, jseg, data)
3085 struct ufsmount *ump;
3086 struct jseg *jseg;
3087 uint8_t *data;
3088 {
3089 struct jsegrec *rec;
3090
3091 rec = (struct jsegrec *)data;
3092 rec->jsr_seq = jseg->js_seq;
3093 rec->jsr_oldest = jseg->js_oldseq;
3094 rec->jsr_cnt = jseg->js_cnt;
3095 rec->jsr_blocks = jseg->js_size / ump->um_devvp->v_bufobj.bo_bsize;
3096 rec->jsr_crc = 0;
3097 rec->jsr_time = ump->um_fs->fs_mtime;
3098 }
3099
3100 static inline void
inoref_write(inoref,jseg,rec)3101 inoref_write(inoref, jseg, rec)
3102 struct inoref *inoref;
3103 struct jseg *jseg;
3104 struct jrefrec *rec;
3105 {
3106
3107 inoref->if_jsegdep->jd_seg = jseg;
3108 rec->jr_ino = inoref->if_ino;
3109 rec->jr_parent = inoref->if_parent;
3110 rec->jr_nlink = inoref->if_nlink;
3111 rec->jr_mode = inoref->if_mode;
3112 rec->jr_diroff = inoref->if_diroff;
3113 }
3114
3115 static void
jaddref_write(jaddref,jseg,data)3116 jaddref_write(jaddref, jseg, data)
3117 struct jaddref *jaddref;
3118 struct jseg *jseg;
3119 uint8_t *data;
3120 {
3121 struct jrefrec *rec;
3122
3123 rec = (struct jrefrec *)data;
3124 rec->jr_op = JOP_ADDREF;
3125 inoref_write(&jaddref->ja_ref, jseg, rec);
3126 }
3127
3128 static void
jremref_write(jremref,jseg,data)3129 jremref_write(jremref, jseg, data)
3130 struct jremref *jremref;
3131 struct jseg *jseg;
3132 uint8_t *data;
3133 {
3134 struct jrefrec *rec;
3135
3136 rec = (struct jrefrec *)data;
3137 rec->jr_op = JOP_REMREF;
3138 inoref_write(&jremref->jr_ref, jseg, rec);
3139 }
3140
3141 static void
jmvref_write(jmvref,jseg,data)3142 jmvref_write(jmvref, jseg, data)
3143 struct jmvref *jmvref;
3144 struct jseg *jseg;
3145 uint8_t *data;
3146 {
3147 struct jmvrec *rec;
3148
3149 rec = (struct jmvrec *)data;
3150 rec->jm_op = JOP_MVREF;
3151 rec->jm_ino = jmvref->jm_ino;
3152 rec->jm_parent = jmvref->jm_parent;
3153 rec->jm_oldoff = jmvref->jm_oldoff;
3154 rec->jm_newoff = jmvref->jm_newoff;
3155 }
3156
3157 static void
jnewblk_write(jnewblk,jseg,data)3158 jnewblk_write(jnewblk, jseg, data)
3159 struct jnewblk *jnewblk;
3160 struct jseg *jseg;
3161 uint8_t *data;
3162 {
3163 struct jblkrec *rec;
3164
3165 jnewblk->jn_jsegdep->jd_seg = jseg;
3166 rec = (struct jblkrec *)data;
3167 rec->jb_op = JOP_NEWBLK;
3168 rec->jb_ino = jnewblk->jn_ino;
3169 rec->jb_blkno = jnewblk->jn_blkno;
3170 rec->jb_lbn = jnewblk->jn_lbn;
3171 rec->jb_frags = jnewblk->jn_frags;
3172 rec->jb_oldfrags = jnewblk->jn_oldfrags;
3173 }
3174
3175 static void
jfreeblk_write(jfreeblk,jseg,data)3176 jfreeblk_write(jfreeblk, jseg, data)
3177 struct jfreeblk *jfreeblk;
3178 struct jseg *jseg;
3179 uint8_t *data;
3180 {
3181 struct jblkrec *rec;
3182
3183 jfreeblk->jf_dep.jb_jsegdep->jd_seg = jseg;
3184 rec = (struct jblkrec *)data;
3185 rec->jb_op = JOP_FREEBLK;
3186 rec->jb_ino = jfreeblk->jf_ino;
3187 rec->jb_blkno = jfreeblk->jf_blkno;
3188 rec->jb_lbn = jfreeblk->jf_lbn;
3189 rec->jb_frags = jfreeblk->jf_frags;
3190 rec->jb_oldfrags = 0;
3191 }
3192
3193 static void
jfreefrag_write(jfreefrag,jseg,data)3194 jfreefrag_write(jfreefrag, jseg, data)
3195 struct jfreefrag *jfreefrag;
3196 struct jseg *jseg;
3197 uint8_t *data;
3198 {
3199 struct jblkrec *rec;
3200
3201 jfreefrag->fr_jsegdep->jd_seg = jseg;
3202 rec = (struct jblkrec *)data;
3203 rec->jb_op = JOP_FREEBLK;
3204 rec->jb_ino = jfreefrag->fr_ino;
3205 rec->jb_blkno = jfreefrag->fr_blkno;
3206 rec->jb_lbn = jfreefrag->fr_lbn;
3207 rec->jb_frags = jfreefrag->fr_frags;
3208 rec->jb_oldfrags = 0;
3209 }
3210
3211 static void
jtrunc_write(jtrunc,jseg,data)3212 jtrunc_write(jtrunc, jseg, data)
3213 struct jtrunc *jtrunc;
3214 struct jseg *jseg;
3215 uint8_t *data;
3216 {
3217 struct jtrncrec *rec;
3218
3219 jtrunc->jt_dep.jb_jsegdep->jd_seg = jseg;
3220 rec = (struct jtrncrec *)data;
3221 rec->jt_op = JOP_TRUNC;
3222 rec->jt_ino = jtrunc->jt_ino;
3223 rec->jt_size = jtrunc->jt_size;
3224 rec->jt_extsize = jtrunc->jt_extsize;
3225 }
3226
3227 static void
jfsync_write(jfsync,jseg,data)3228 jfsync_write(jfsync, jseg, data)
3229 struct jfsync *jfsync;
3230 struct jseg *jseg;
3231 uint8_t *data;
3232 {
3233 struct jtrncrec *rec;
3234
3235 rec = (struct jtrncrec *)data;
3236 rec->jt_op = JOP_SYNC;
3237 rec->jt_ino = jfsync->jfs_ino;
3238 rec->jt_size = jfsync->jfs_size;
3239 rec->jt_extsize = jfsync->jfs_extsize;
3240 }
3241
3242 static void
softdep_flushjournal(mp)3243 softdep_flushjournal(mp)
3244 struct mount *mp;
3245 {
3246 struct jblocks *jblocks;
3247 struct ufsmount *ump;
3248
3249 if (MOUNTEDSUJ(mp) == 0)
3250 return;
3251 ump = VFSTOUFS(mp);
3252 jblocks = ump->softdep_jblocks;
3253 ACQUIRE_LOCK(ump);
3254 while (ump->softdep_on_journal) {
3255 jblocks->jb_needseg = 1;
3256 softdep_process_journal(mp, NULL, MNT_WAIT);
3257 }
3258 FREE_LOCK(ump);
3259 }
3260
3261 static void softdep_synchronize_completed(struct bio *);
3262 static void softdep_synchronize(struct bio *, struct ufsmount *, void *);
3263
3264 static void
softdep_synchronize_completed(bp)3265 softdep_synchronize_completed(bp)
3266 struct bio *bp;
3267 {
3268 struct jseg *oldest;
3269 struct jseg *jseg;
3270 struct ufsmount *ump;
3271
3272 /*
3273 * caller1 marks the last segment written before we issued the
3274 * synchronize cache.
3275 */
3276 jseg = bp->bio_caller1;
3277 if (jseg == NULL) {
3278 g_destroy_bio(bp);
3279 return;
3280 }
3281 ump = VFSTOUFS(jseg->js_list.wk_mp);
3282 ACQUIRE_LOCK(ump);
3283 oldest = NULL;
3284 /*
3285 * Mark all the journal entries waiting on the synchronize cache
3286 * as completed so they may continue on.
3287 */
3288 while (jseg != NULL && (jseg->js_state & COMPLETE) == 0) {
3289 jseg->js_state |= COMPLETE;
3290 oldest = jseg;
3291 jseg = TAILQ_PREV(jseg, jseglst, js_next);
3292 }
3293 /*
3294 * Restart deferred journal entry processing from the oldest
3295 * completed jseg.
3296 */
3297 if (oldest)
3298 complete_jsegs(oldest);
3299
3300 FREE_LOCK(ump);
3301 g_destroy_bio(bp);
3302 }
3303
3304 /*
3305 * Send BIO_FLUSH/SYNCHRONIZE CACHE to the device to enforce write ordering
3306 * barriers. The journal must be written prior to any blocks that depend
3307 * on it and the journal can not be released until the blocks have be
3308 * written. This code handles both barriers simultaneously.
3309 */
3310 static void
softdep_synchronize(bp,ump,caller1)3311 softdep_synchronize(bp, ump, caller1)
3312 struct bio *bp;
3313 struct ufsmount *ump;
3314 void *caller1;
3315 {
3316
3317 bp->bio_cmd = BIO_FLUSH;
3318 bp->bio_flags |= BIO_ORDERED;
3319 bp->bio_data = NULL;
3320 bp->bio_offset = ump->um_cp->provider->mediasize;
3321 bp->bio_length = 0;
3322 bp->bio_done = softdep_synchronize_completed;
3323 bp->bio_caller1 = caller1;
3324 g_io_request(bp,
3325 (struct g_consumer *)ump->um_devvp->v_bufobj.bo_private);
3326 }
3327
3328 /*
3329 * Flush some journal records to disk.
3330 */
3331 static void
softdep_process_journal(mp,needwk,flags)3332 softdep_process_journal(mp, needwk, flags)
3333 struct mount *mp;
3334 struct worklist *needwk;
3335 int flags;
3336 {
3337 struct jblocks *jblocks;
3338 struct ufsmount *ump;
3339 struct worklist *wk;
3340 struct jseg *jseg;
3341 struct buf *bp;
3342 struct bio *bio;
3343 uint8_t *data;
3344 struct fs *fs;
3345 int shouldflush;
3346 int segwritten;
3347 int jrecmin; /* Minimum records per block. */
3348 int jrecmax; /* Maximum records per block. */
3349 int size;
3350 int cnt;
3351 int off;
3352 int devbsize;
3353
3354 if (MOUNTEDSUJ(mp) == 0)
3355 return;
3356 shouldflush = softdep_flushcache;
3357 bio = NULL;
3358 jseg = NULL;
3359 ump = VFSTOUFS(mp);
3360 LOCK_OWNED(ump);
3361 fs = ump->um_fs;
3362 jblocks = ump->softdep_jblocks;
3363 devbsize = ump->um_devvp->v_bufobj.bo_bsize;
3364 /*
3365 * We write anywhere between a disk block and fs block. The upper
3366 * bound is picked to prevent buffer cache fragmentation and limit
3367 * processing time per I/O.
3368 */
3369 jrecmin = (devbsize / JREC_SIZE) - 1; /* -1 for seg header */
3370 jrecmax = (fs->fs_bsize / devbsize) * jrecmin;
3371 segwritten = 0;
3372 for (;;) {
3373 cnt = ump->softdep_on_journal;
3374 /*
3375 * Criteria for writing a segment:
3376 * 1) We have a full block.
3377 * 2) We're called from jwait() and haven't found the
3378 * journal item yet.
3379 * 3) Always write if needseg is set.
3380 * 4) If we are called from process_worklist and have
3381 * not yet written anything we write a partial block
3382 * to enforce a 1 second maximum latency on journal
3383 * entries.
3384 */
3385 if (cnt < (jrecmax - 1) && needwk == NULL &&
3386 jblocks->jb_needseg == 0 && (segwritten || cnt == 0))
3387 break;
3388 cnt++;
3389 /*
3390 * Verify some free journal space. softdep_prealloc() should
3391 * guarantee that we don't run out so this is indicative of
3392 * a problem with the flow control. Try to recover
3393 * gracefully in any event.
3394 */
3395 while (jblocks->jb_free == 0) {
3396 if (flags != MNT_WAIT)
3397 break;
3398 printf("softdep: Out of journal space!\n");
3399 softdep_speedup(ump);
3400 msleep(jblocks, LOCK_PTR(ump), PRIBIO, "jblocks", hz);
3401 }
3402 FREE_LOCK(ump);
3403 jseg = malloc(sizeof(*jseg), M_JSEG, M_SOFTDEP_FLAGS);
3404 workitem_alloc(&jseg->js_list, D_JSEG, mp);
3405 LIST_INIT(&jseg->js_entries);
3406 LIST_INIT(&jseg->js_indirs);
3407 jseg->js_state = ATTACHED;
3408 if (shouldflush == 0)
3409 jseg->js_state |= COMPLETE;
3410 else if (bio == NULL)
3411 bio = g_alloc_bio();
3412 jseg->js_jblocks = jblocks;
3413 bp = geteblk(fs->fs_bsize, 0);
3414 ACQUIRE_LOCK(ump);
3415 /*
3416 * If there was a race while we were allocating the block
3417 * and jseg the entry we care about was likely written.
3418 * We bail out in both the WAIT and NOWAIT case and assume
3419 * the caller will loop if the entry it cares about is
3420 * not written.
3421 */
3422 cnt = ump->softdep_on_journal;
3423 if (cnt + jblocks->jb_needseg == 0 || jblocks->jb_free == 0) {
3424 bp->b_flags |= B_INVAL | B_NOCACHE;
3425 WORKITEM_FREE(jseg, D_JSEG);
3426 FREE_LOCK(ump);
3427 brelse(bp);
3428 ACQUIRE_LOCK(ump);
3429 break;
3430 }
3431 /*
3432 * Calculate the disk block size required for the available
3433 * records rounded to the min size.
3434 */
3435 if (cnt == 0)
3436 size = devbsize;
3437 else if (cnt < jrecmax)
3438 size = howmany(cnt, jrecmin) * devbsize;
3439 else
3440 size = fs->fs_bsize;
3441 /*
3442 * Allocate a disk block for this journal data and account
3443 * for truncation of the requested size if enough contiguous
3444 * space was not available.
3445 */
3446 bp->b_blkno = jblocks_alloc(jblocks, size, &size);
3447 bp->b_lblkno = bp->b_blkno;
3448 bp->b_offset = bp->b_blkno * DEV_BSIZE;
3449 bp->b_bcount = size;
3450 bp->b_flags &= ~B_INVAL;
3451 bp->b_flags |= B_VALIDSUSPWRT | B_NOCOPY;
3452 /*
3453 * Initialize our jseg with cnt records. Assign the next
3454 * sequence number to it and link it in-order.
3455 */
3456 cnt = MIN(cnt, (size / devbsize) * jrecmin);
3457 jseg->js_buf = bp;
3458 jseg->js_cnt = cnt;
3459 jseg->js_refs = cnt + 1; /* Self ref. */
3460 jseg->js_size = size;
3461 jseg->js_seq = jblocks->jb_nextseq++;
3462 if (jblocks->jb_oldestseg == NULL)
3463 jblocks->jb_oldestseg = jseg;
3464 jseg->js_oldseq = jblocks->jb_oldestseg->js_seq;
3465 TAILQ_INSERT_TAIL(&jblocks->jb_segs, jseg, js_next);
3466 if (jblocks->jb_writeseg == NULL)
3467 jblocks->jb_writeseg = jseg;
3468 /*
3469 * Start filling in records from the pending list.
3470 */
3471 data = bp->b_data;
3472 off = 0;
3473
3474 /*
3475 * Always put a header on the first block.
3476 * XXX As with below, there might not be a chance to get
3477 * into the loop. Ensure that something valid is written.
3478 */
3479 jseg_write(ump, jseg, data);
3480 off += JREC_SIZE;
3481 data = bp->b_data + off;
3482
3483 /*
3484 * XXX Something is wrong here. There's no work to do,
3485 * but we need to perform and I/O and allow it to complete
3486 * anyways.
3487 */
3488 if (LIST_EMPTY(&ump->softdep_journal_pending))
3489 stat_emptyjblocks++;
3490
3491 while ((wk = LIST_FIRST(&ump->softdep_journal_pending))
3492 != NULL) {
3493 if (cnt == 0)
3494 break;
3495 /* Place a segment header on every device block. */
3496 if ((off % devbsize) == 0) {
3497 jseg_write(ump, jseg, data);
3498 off += JREC_SIZE;
3499 data = bp->b_data + off;
3500 }
3501 if (wk == needwk)
3502 needwk = NULL;
3503 remove_from_journal(wk);
3504 wk->wk_state |= INPROGRESS;
3505 WORKLIST_INSERT(&jseg->js_entries, wk);
3506 switch (wk->wk_type) {
3507 case D_JADDREF:
3508 jaddref_write(WK_JADDREF(wk), jseg, data);
3509 break;
3510 case D_JREMREF:
3511 jremref_write(WK_JREMREF(wk), jseg, data);
3512 break;
3513 case D_JMVREF:
3514 jmvref_write(WK_JMVREF(wk), jseg, data);
3515 break;
3516 case D_JNEWBLK:
3517 jnewblk_write(WK_JNEWBLK(wk), jseg, data);
3518 break;
3519 case D_JFREEBLK:
3520 jfreeblk_write(WK_JFREEBLK(wk), jseg, data);
3521 break;
3522 case D_JFREEFRAG:
3523 jfreefrag_write(WK_JFREEFRAG(wk), jseg, data);
3524 break;
3525 case D_JTRUNC:
3526 jtrunc_write(WK_JTRUNC(wk), jseg, data);
3527 break;
3528 case D_JFSYNC:
3529 jfsync_write(WK_JFSYNC(wk), jseg, data);
3530 break;
3531 default:
3532 panic("process_journal: Unknown type %s",
3533 TYPENAME(wk->wk_type));
3534 /* NOTREACHED */
3535 }
3536 off += JREC_SIZE;
3537 data = bp->b_data + off;
3538 cnt--;
3539 }
3540
3541 /* Clear any remaining space so we don't leak kernel data */
3542 if (size > off)
3543 bzero(data, size - off);
3544
3545 /*
3546 * Write this one buffer and continue.
3547 */
3548 segwritten = 1;
3549 jblocks->jb_needseg = 0;
3550 WORKLIST_INSERT(&bp->b_dep, &jseg->js_list);
3551 FREE_LOCK(ump);
3552 pbgetvp(ump->um_devvp, bp);
3553 /*
3554 * We only do the blocking wait once we find the journal
3555 * entry we're looking for.
3556 */
3557 if (needwk == NULL && flags == MNT_WAIT)
3558 bwrite(bp);
3559 else
3560 bawrite(bp);
3561 ACQUIRE_LOCK(ump);
3562 }
3563 /*
3564 * If we wrote a segment issue a synchronize cache so the journal
3565 * is reflected on disk before the data is written. Since reclaiming
3566 * journal space also requires writing a journal record this
3567 * process also enforces a barrier before reclamation.
3568 */
3569 if (segwritten && shouldflush) {
3570 softdep_synchronize(bio, ump,
3571 TAILQ_LAST(&jblocks->jb_segs, jseglst));
3572 } else if (bio)
3573 g_destroy_bio(bio);
3574 /*
3575 * If we've suspended the filesystem because we ran out of journal
3576 * space either try to sync it here to make some progress or
3577 * unsuspend it if we already have.
3578 */
3579 if (flags == 0 && jblocks->jb_suspended) {
3580 if (journal_unsuspend(ump))
3581 return;
3582 FREE_LOCK(ump);
3583 VFS_SYNC(mp, MNT_NOWAIT);
3584 ffs_sbupdate(ump, MNT_WAIT, 0);
3585 ACQUIRE_LOCK(ump);
3586 }
3587 }
3588
3589 /*
3590 * Complete a jseg, allowing all dependencies awaiting journal writes
3591 * to proceed. Each journal dependency also attaches a jsegdep to dependent
3592 * structures so that the journal segment can be freed to reclaim space.
3593 */
3594 static void
complete_jseg(jseg)3595 complete_jseg(jseg)
3596 struct jseg *jseg;
3597 {
3598 struct worklist *wk;
3599 struct jmvref *jmvref;
3600 #ifdef INVARIANTS
3601 int i = 0;
3602 #endif
3603
3604 while ((wk = LIST_FIRST(&jseg->js_entries)) != NULL) {
3605 WORKLIST_REMOVE(wk);
3606 wk->wk_state &= ~INPROGRESS;
3607 wk->wk_state |= COMPLETE;
3608 KASSERT(i++ < jseg->js_cnt,
3609 ("handle_written_jseg: overflow %d >= %d",
3610 i - 1, jseg->js_cnt));
3611 switch (wk->wk_type) {
3612 case D_JADDREF:
3613 handle_written_jaddref(WK_JADDREF(wk));
3614 break;
3615 case D_JREMREF:
3616 handle_written_jremref(WK_JREMREF(wk));
3617 break;
3618 case D_JMVREF:
3619 rele_jseg(jseg); /* No jsegdep. */
3620 jmvref = WK_JMVREF(wk);
3621 LIST_REMOVE(jmvref, jm_deps);
3622 if ((jmvref->jm_pagedep->pd_state & ONWORKLIST) == 0)
3623 free_pagedep(jmvref->jm_pagedep);
3624 WORKITEM_FREE(jmvref, D_JMVREF);
3625 break;
3626 case D_JNEWBLK:
3627 handle_written_jnewblk(WK_JNEWBLK(wk));
3628 break;
3629 case D_JFREEBLK:
3630 handle_written_jblkdep(&WK_JFREEBLK(wk)->jf_dep);
3631 break;
3632 case D_JTRUNC:
3633 handle_written_jblkdep(&WK_JTRUNC(wk)->jt_dep);
3634 break;
3635 case D_JFSYNC:
3636 rele_jseg(jseg); /* No jsegdep. */
3637 WORKITEM_FREE(wk, D_JFSYNC);
3638 break;
3639 case D_JFREEFRAG:
3640 handle_written_jfreefrag(WK_JFREEFRAG(wk));
3641 break;
3642 default:
3643 panic("handle_written_jseg: Unknown type %s",
3644 TYPENAME(wk->wk_type));
3645 /* NOTREACHED */
3646 }
3647 }
3648 /* Release the self reference so the structure may be freed. */
3649 rele_jseg(jseg);
3650 }
3651
3652 /*
3653 * Determine which jsegs are ready for completion processing. Waits for
3654 * synchronize cache to complete as well as forcing in-order completion
3655 * of journal entries.
3656 */
3657 static void
complete_jsegs(jseg)3658 complete_jsegs(jseg)
3659 struct jseg *jseg;
3660 {
3661 struct jblocks *jblocks;
3662 struct jseg *jsegn;
3663
3664 jblocks = jseg->js_jblocks;
3665 /*
3666 * Don't allow out of order completions. If this isn't the first
3667 * block wait for it to write before we're done.
3668 */
3669 if (jseg != jblocks->jb_writeseg)
3670 return;
3671 /* Iterate through available jsegs processing their entries. */
3672 while (jseg && (jseg->js_state & ALLCOMPLETE) == ALLCOMPLETE) {
3673 jblocks->jb_oldestwrseq = jseg->js_oldseq;
3674 jsegn = TAILQ_NEXT(jseg, js_next);
3675 complete_jseg(jseg);
3676 jseg = jsegn;
3677 }
3678 jblocks->jb_writeseg = jseg;
3679 /*
3680 * Attempt to free jsegs now that oldestwrseq may have advanced.
3681 */
3682 free_jsegs(jblocks);
3683 }
3684
3685 /*
3686 * Mark a jseg as DEPCOMPLETE and throw away the buffer. Attempt to handle
3687 * the final completions.
3688 */
3689 static void
handle_written_jseg(jseg,bp)3690 handle_written_jseg(jseg, bp)
3691 struct jseg *jseg;
3692 struct buf *bp;
3693 {
3694
3695 if (jseg->js_refs == 0)
3696 panic("handle_written_jseg: No self-reference on %p", jseg);
3697 jseg->js_state |= DEPCOMPLETE;
3698 /*
3699 * We'll never need this buffer again, set flags so it will be
3700 * discarded.
3701 */
3702 bp->b_flags |= B_INVAL | B_NOCACHE;
3703 pbrelvp(bp);
3704 complete_jsegs(jseg);
3705 }
3706
3707 static inline struct jsegdep *
inoref_jseg(inoref)3708 inoref_jseg(inoref)
3709 struct inoref *inoref;
3710 {
3711 struct jsegdep *jsegdep;
3712
3713 jsegdep = inoref->if_jsegdep;
3714 inoref->if_jsegdep = NULL;
3715
3716 return (jsegdep);
3717 }
3718
3719 /*
3720 * Called once a jremref has made it to stable store. The jremref is marked
3721 * complete and we attempt to free it. Any pagedeps writes sleeping waiting
3722 * for the jremref to complete will be awoken by free_jremref.
3723 */
3724 static void
handle_written_jremref(jremref)3725 handle_written_jremref(jremref)
3726 struct jremref *jremref;
3727 {
3728 struct inodedep *inodedep;
3729 struct jsegdep *jsegdep;
3730 struct dirrem *dirrem;
3731
3732 /* Grab the jsegdep. */
3733 jsegdep = inoref_jseg(&jremref->jr_ref);
3734 /*
3735 * Remove us from the inoref list.
3736 */
3737 if (inodedep_lookup(jremref->jr_list.wk_mp, jremref->jr_ref.if_ino,
3738 0, &inodedep) == 0)
3739 panic("handle_written_jremref: Lost inodedep");
3740 TAILQ_REMOVE(&inodedep->id_inoreflst, &jremref->jr_ref, if_deps);
3741 /*
3742 * Complete the dirrem.
3743 */
3744 dirrem = jremref->jr_dirrem;
3745 jremref->jr_dirrem = NULL;
3746 LIST_REMOVE(jremref, jr_deps);
3747 jsegdep->jd_state |= jremref->jr_state & MKDIR_PARENT;
3748 jwork_insert(&dirrem->dm_jwork, jsegdep);
3749 if (LIST_EMPTY(&dirrem->dm_jremrefhd) &&
3750 (dirrem->dm_state & COMPLETE) != 0)
3751 add_to_worklist(&dirrem->dm_list, 0);
3752 free_jremref(jremref);
3753 }
3754
3755 /*
3756 * Called once a jaddref has made it to stable store. The dependency is
3757 * marked complete and any dependent structures are added to the inode
3758 * bufwait list to be completed as soon as it is written. If a bitmap write
3759 * depends on this entry we move the inode into the inodedephd of the
3760 * bmsafemap dependency and attempt to remove the jaddref from the bmsafemap.
3761 */
3762 static void
handle_written_jaddref(jaddref)3763 handle_written_jaddref(jaddref)
3764 struct jaddref *jaddref;
3765 {
3766 struct jsegdep *jsegdep;
3767 struct inodedep *inodedep;
3768 struct diradd *diradd;
3769 struct mkdir *mkdir;
3770
3771 /* Grab the jsegdep. */
3772 jsegdep = inoref_jseg(&jaddref->ja_ref);
3773 mkdir = NULL;
3774 diradd = NULL;
3775 if (inodedep_lookup(jaddref->ja_list.wk_mp, jaddref->ja_ino,
3776 0, &inodedep) == 0)
3777 panic("handle_written_jaddref: Lost inodedep.");
3778 if (jaddref->ja_diradd == NULL)
3779 panic("handle_written_jaddref: No dependency");
3780 if (jaddref->ja_diradd->da_list.wk_type == D_DIRADD) {
3781 diradd = jaddref->ja_diradd;
3782 WORKLIST_INSERT(&inodedep->id_bufwait, &diradd->da_list);
3783 } else if (jaddref->ja_state & MKDIR_PARENT) {
3784 mkdir = jaddref->ja_mkdir;
3785 WORKLIST_INSERT(&inodedep->id_bufwait, &mkdir->md_list);
3786 } else if (jaddref->ja_state & MKDIR_BODY)
3787 mkdir = jaddref->ja_mkdir;
3788 else
3789 panic("handle_written_jaddref: Unknown dependency %p",
3790 jaddref->ja_diradd);
3791 jaddref->ja_diradd = NULL; /* also clears ja_mkdir */
3792 /*
3793 * Remove us from the inode list.
3794 */
3795 TAILQ_REMOVE(&inodedep->id_inoreflst, &jaddref->ja_ref, if_deps);
3796 /*
3797 * The mkdir may be waiting on the jaddref to clear before freeing.
3798 */
3799 if (mkdir) {
3800 KASSERT(mkdir->md_list.wk_type == D_MKDIR,
3801 ("handle_written_jaddref: Incorrect type for mkdir %s",
3802 TYPENAME(mkdir->md_list.wk_type)));
3803 mkdir->md_jaddref = NULL;
3804 diradd = mkdir->md_diradd;
3805 mkdir->md_state |= DEPCOMPLETE;
3806 complete_mkdir(mkdir);
3807 }
3808 jwork_insert(&diradd->da_jwork, jsegdep);
3809 if (jaddref->ja_state & NEWBLOCK) {
3810 inodedep->id_state |= ONDEPLIST;
3811 LIST_INSERT_HEAD(&inodedep->id_bmsafemap->sm_inodedephd,
3812 inodedep, id_deps);
3813 }
3814 free_jaddref(jaddref);
3815 }
3816
3817 /*
3818 * Called once a jnewblk journal is written. The allocdirect or allocindir
3819 * is placed in the bmsafemap to await notification of a written bitmap. If
3820 * the operation was canceled we add the segdep to the appropriate
3821 * dependency to free the journal space once the canceling operation
3822 * completes.
3823 */
3824 static void
handle_written_jnewblk(jnewblk)3825 handle_written_jnewblk(jnewblk)
3826 struct jnewblk *jnewblk;
3827 {
3828 struct bmsafemap *bmsafemap;
3829 struct freefrag *freefrag;
3830 struct freework *freework;
3831 struct jsegdep *jsegdep;
3832 struct newblk *newblk;
3833
3834 /* Grab the jsegdep. */
3835 jsegdep = jnewblk->jn_jsegdep;
3836 jnewblk->jn_jsegdep = NULL;
3837 if (jnewblk->jn_dep == NULL)
3838 panic("handle_written_jnewblk: No dependency for the segdep.");
3839 switch (jnewblk->jn_dep->wk_type) {
3840 case D_NEWBLK:
3841 case D_ALLOCDIRECT:
3842 case D_ALLOCINDIR:
3843 /*
3844 * Add the written block to the bmsafemap so it can
3845 * be notified when the bitmap is on disk.
3846 */
3847 newblk = WK_NEWBLK(jnewblk->jn_dep);
3848 newblk->nb_jnewblk = NULL;
3849 if ((newblk->nb_state & GOINGAWAY) == 0) {
3850 bmsafemap = newblk->nb_bmsafemap;
3851 newblk->nb_state |= ONDEPLIST;
3852 LIST_INSERT_HEAD(&bmsafemap->sm_newblkhd, newblk,
3853 nb_deps);
3854 }
3855 jwork_insert(&newblk->nb_jwork, jsegdep);
3856 break;
3857 case D_FREEFRAG:
3858 /*
3859 * A newblock being removed by a freefrag when replaced by
3860 * frag extension.
3861 */
3862 freefrag = WK_FREEFRAG(jnewblk->jn_dep);
3863 freefrag->ff_jdep = NULL;
3864 jwork_insert(&freefrag->ff_jwork, jsegdep);
3865 break;
3866 case D_FREEWORK:
3867 /*
3868 * A direct block was removed by truncate.
3869 */
3870 freework = WK_FREEWORK(jnewblk->jn_dep);
3871 freework->fw_jnewblk = NULL;
3872 jwork_insert(&freework->fw_freeblks->fb_jwork, jsegdep);
3873 break;
3874 default:
3875 panic("handle_written_jnewblk: Unknown type %d.",
3876 jnewblk->jn_dep->wk_type);
3877 }
3878 jnewblk->jn_dep = NULL;
3879 free_jnewblk(jnewblk);
3880 }
3881
3882 /*
3883 * Cancel a jfreefrag that won't be needed, probably due to colliding with
3884 * an in-flight allocation that has not yet been committed. Divorce us
3885 * from the freefrag and mark it DEPCOMPLETE so that it may be added
3886 * to the worklist.
3887 */
3888 static void
cancel_jfreefrag(jfreefrag)3889 cancel_jfreefrag(jfreefrag)
3890 struct jfreefrag *jfreefrag;
3891 {
3892 struct freefrag *freefrag;
3893
3894 if (jfreefrag->fr_jsegdep) {
3895 free_jsegdep(jfreefrag->fr_jsegdep);
3896 jfreefrag->fr_jsegdep = NULL;
3897 }
3898 freefrag = jfreefrag->fr_freefrag;
3899 jfreefrag->fr_freefrag = NULL;
3900 free_jfreefrag(jfreefrag);
3901 freefrag->ff_state |= DEPCOMPLETE;
3902 CTR1(KTR_SUJ, "cancel_jfreefrag: blkno %jd", freefrag->ff_blkno);
3903 }
3904
3905 /*
3906 * Free a jfreefrag when the parent freefrag is rendered obsolete.
3907 */
3908 static void
free_jfreefrag(jfreefrag)3909 free_jfreefrag(jfreefrag)
3910 struct jfreefrag *jfreefrag;
3911 {
3912
3913 if (jfreefrag->fr_state & INPROGRESS)
3914 WORKLIST_REMOVE(&jfreefrag->fr_list);
3915 else if (jfreefrag->fr_state & ONWORKLIST)
3916 remove_from_journal(&jfreefrag->fr_list);
3917 if (jfreefrag->fr_freefrag != NULL)
3918 panic("free_jfreefrag: Still attached to a freefrag.");
3919 WORKITEM_FREE(jfreefrag, D_JFREEFRAG);
3920 }
3921
3922 /*
3923 * Called when the journal write for a jfreefrag completes. The parent
3924 * freefrag is added to the worklist if this completes its dependencies.
3925 */
3926 static void
handle_written_jfreefrag(jfreefrag)3927 handle_written_jfreefrag(jfreefrag)
3928 struct jfreefrag *jfreefrag;
3929 {
3930 struct jsegdep *jsegdep;
3931 struct freefrag *freefrag;
3932
3933 /* Grab the jsegdep. */
3934 jsegdep = jfreefrag->fr_jsegdep;
3935 jfreefrag->fr_jsegdep = NULL;
3936 freefrag = jfreefrag->fr_freefrag;
3937 if (freefrag == NULL)
3938 panic("handle_written_jfreefrag: No freefrag.");
3939 freefrag->ff_state |= DEPCOMPLETE;
3940 freefrag->ff_jdep = NULL;
3941 jwork_insert(&freefrag->ff_jwork, jsegdep);
3942 if ((freefrag->ff_state & ALLCOMPLETE) == ALLCOMPLETE)
3943 add_to_worklist(&freefrag->ff_list, 0);
3944 jfreefrag->fr_freefrag = NULL;
3945 free_jfreefrag(jfreefrag);
3946 }
3947
3948 /*
3949 * Called when the journal write for a jfreeblk completes. The jfreeblk
3950 * is removed from the freeblks list of pending journal writes and the
3951 * jsegdep is moved to the freeblks jwork to be completed when all blocks
3952 * have been reclaimed.
3953 */
3954 static void
handle_written_jblkdep(jblkdep)3955 handle_written_jblkdep(jblkdep)
3956 struct jblkdep *jblkdep;
3957 {
3958 struct freeblks *freeblks;
3959 struct jsegdep *jsegdep;
3960
3961 /* Grab the jsegdep. */
3962 jsegdep = jblkdep->jb_jsegdep;
3963 jblkdep->jb_jsegdep = NULL;
3964 freeblks = jblkdep->jb_freeblks;
3965 LIST_REMOVE(jblkdep, jb_deps);
3966 jwork_insert(&freeblks->fb_jwork, jsegdep);
3967 /*
3968 * If the freeblks is all journaled, we can add it to the worklist.
3969 */
3970 if (LIST_EMPTY(&freeblks->fb_jblkdephd) &&
3971 (freeblks->fb_state & ALLCOMPLETE) == ALLCOMPLETE)
3972 add_to_worklist(&freeblks->fb_list, WK_NODELAY);
3973
3974 free_jblkdep(jblkdep);
3975 }
3976
3977 static struct jsegdep *
newjsegdep(struct worklist * wk)3978 newjsegdep(struct worklist *wk)
3979 {
3980 struct jsegdep *jsegdep;
3981
3982 jsegdep = malloc(sizeof(*jsegdep), M_JSEGDEP, M_SOFTDEP_FLAGS);
3983 workitem_alloc(&jsegdep->jd_list, D_JSEGDEP, wk->wk_mp);
3984 jsegdep->jd_seg = NULL;
3985
3986 return (jsegdep);
3987 }
3988
3989 static struct jmvref *
newjmvref(dp,ino,oldoff,newoff)3990 newjmvref(dp, ino, oldoff, newoff)
3991 struct inode *dp;
3992 ino_t ino;
3993 off_t oldoff;
3994 off_t newoff;
3995 {
3996 struct jmvref *jmvref;
3997
3998 jmvref = malloc(sizeof(*jmvref), M_JMVREF, M_SOFTDEP_FLAGS);
3999 workitem_alloc(&jmvref->jm_list, D_JMVREF, ITOVFS(dp));
4000 jmvref->jm_list.wk_state = ATTACHED | DEPCOMPLETE;
4001 jmvref->jm_parent = dp->i_number;
4002 jmvref->jm_ino = ino;
4003 jmvref->jm_oldoff = oldoff;
4004 jmvref->jm_newoff = newoff;
4005
4006 return (jmvref);
4007 }
4008
4009 /*
4010 * Allocate a new jremref that tracks the removal of ip from dp with the
4011 * directory entry offset of diroff. Mark the entry as ATTACHED and
4012 * DEPCOMPLETE as we have all the information required for the journal write
4013 * and the directory has already been removed from the buffer. The caller
4014 * is responsible for linking the jremref into the pagedep and adding it
4015 * to the journal to write. The MKDIR_PARENT flag is set if we're doing
4016 * a DOTDOT addition so handle_workitem_remove() can properly assign
4017 * the jsegdep when we're done.
4018 */
4019 static struct jremref *
newjremref(struct dirrem * dirrem,struct inode * dp,struct inode * ip,off_t diroff,nlink_t nlink)4020 newjremref(struct dirrem *dirrem, struct inode *dp, struct inode *ip,
4021 off_t diroff, nlink_t nlink)
4022 {
4023 struct jremref *jremref;
4024
4025 jremref = malloc(sizeof(*jremref), M_JREMREF, M_SOFTDEP_FLAGS);
4026 workitem_alloc(&jremref->jr_list, D_JREMREF, ITOVFS(dp));
4027 jremref->jr_state = ATTACHED;
4028 newinoref(&jremref->jr_ref, ip->i_number, dp->i_number, diroff,
4029 nlink, ip->i_mode);
4030 jremref->jr_dirrem = dirrem;
4031
4032 return (jremref);
4033 }
4034
4035 static inline void
newinoref(struct inoref * inoref,ino_t ino,ino_t parent,off_t diroff,nlink_t nlink,uint16_t mode)4036 newinoref(struct inoref *inoref, ino_t ino, ino_t parent, off_t diroff,
4037 nlink_t nlink, uint16_t mode)
4038 {
4039
4040 inoref->if_jsegdep = newjsegdep(&inoref->if_list);
4041 inoref->if_diroff = diroff;
4042 inoref->if_ino = ino;
4043 inoref->if_parent = parent;
4044 inoref->if_nlink = nlink;
4045 inoref->if_mode = mode;
4046 }
4047
4048 /*
4049 * Allocate a new jaddref to track the addition of ino to dp at diroff. The
4050 * directory offset may not be known until later. The caller is responsible
4051 * adding the entry to the journal when this information is available. nlink
4052 * should be the link count prior to the addition and mode is only required
4053 * to have the correct FMT.
4054 */
4055 static struct jaddref *
newjaddref(struct inode * dp,ino_t ino,off_t diroff,int16_t nlink,uint16_t mode)4056 newjaddref(struct inode *dp, ino_t ino, off_t diroff, int16_t nlink,
4057 uint16_t mode)
4058 {
4059 struct jaddref *jaddref;
4060
4061 jaddref = malloc(sizeof(*jaddref), M_JADDREF, M_SOFTDEP_FLAGS);
4062 workitem_alloc(&jaddref->ja_list, D_JADDREF, ITOVFS(dp));
4063 jaddref->ja_state = ATTACHED;
4064 jaddref->ja_mkdir = NULL;
4065 newinoref(&jaddref->ja_ref, ino, dp->i_number, diroff, nlink, mode);
4066
4067 return (jaddref);
4068 }
4069
4070 /*
4071 * Create a new free dependency for a freework. The caller is responsible
4072 * for adjusting the reference count when it has the lock held. The freedep
4073 * will track an outstanding bitmap write that will ultimately clear the
4074 * freework to continue.
4075 */
4076 static struct freedep *
newfreedep(struct freework * freework)4077 newfreedep(struct freework *freework)
4078 {
4079 struct freedep *freedep;
4080
4081 freedep = malloc(sizeof(*freedep), M_FREEDEP, M_SOFTDEP_FLAGS);
4082 workitem_alloc(&freedep->fd_list, D_FREEDEP, freework->fw_list.wk_mp);
4083 freedep->fd_freework = freework;
4084
4085 return (freedep);
4086 }
4087
4088 /*
4089 * Free a freedep structure once the buffer it is linked to is written. If
4090 * this is the last reference to the freework schedule it for completion.
4091 */
4092 static void
free_freedep(freedep)4093 free_freedep(freedep)
4094 struct freedep *freedep;
4095 {
4096 struct freework *freework;
4097
4098 freework = freedep->fd_freework;
4099 freework->fw_freeblks->fb_cgwait--;
4100 if (--freework->fw_ref == 0)
4101 freework_enqueue(freework);
4102 WORKITEM_FREE(freedep, D_FREEDEP);
4103 }
4104
4105 /*
4106 * Allocate a new freework structure that may be a level in an indirect
4107 * when parent is not NULL or a top level block when it is. The top level
4108 * freework structures are allocated without the per-filesystem lock held
4109 * and before the freeblks is visible outside of softdep_setup_freeblocks().
4110 */
4111 static struct freework *
newfreework(ump,freeblks,parent,lbn,nb,frags,off,journal)4112 newfreework(ump, freeblks, parent, lbn, nb, frags, off, journal)
4113 struct ufsmount *ump;
4114 struct freeblks *freeblks;
4115 struct freework *parent;
4116 ufs_lbn_t lbn;
4117 ufs2_daddr_t nb;
4118 int frags;
4119 int off;
4120 int journal;
4121 {
4122 struct freework *freework;
4123
4124 freework = malloc(sizeof(*freework), M_FREEWORK, M_SOFTDEP_FLAGS);
4125 workitem_alloc(&freework->fw_list, D_FREEWORK, freeblks->fb_list.wk_mp);
4126 freework->fw_state = ATTACHED;
4127 freework->fw_jnewblk = NULL;
4128 freework->fw_freeblks = freeblks;
4129 freework->fw_parent = parent;
4130 freework->fw_lbn = lbn;
4131 freework->fw_blkno = nb;
4132 freework->fw_frags = frags;
4133 freework->fw_indir = NULL;
4134 freework->fw_ref = (MOUNTEDSUJ(UFSTOVFS(ump)) == 0 ||
4135 lbn >= -UFS_NXADDR) ? 0 : NINDIR(ump->um_fs) + 1;
4136 freework->fw_start = freework->fw_off = off;
4137 if (journal)
4138 newjfreeblk(freeblks, lbn, nb, frags);
4139 if (parent == NULL) {
4140 ACQUIRE_LOCK(ump);
4141 WORKLIST_INSERT(&freeblks->fb_freeworkhd, &freework->fw_list);
4142 freeblks->fb_ref++;
4143 FREE_LOCK(ump);
4144 }
4145
4146 return (freework);
4147 }
4148
4149 /*
4150 * Eliminate a jfreeblk for a block that does not need journaling.
4151 */
4152 static void
cancel_jfreeblk(freeblks,blkno)4153 cancel_jfreeblk(freeblks, blkno)
4154 struct freeblks *freeblks;
4155 ufs2_daddr_t blkno;
4156 {
4157 struct jfreeblk *jfreeblk;
4158 struct jblkdep *jblkdep;
4159
4160 LIST_FOREACH(jblkdep, &freeblks->fb_jblkdephd, jb_deps) {
4161 if (jblkdep->jb_list.wk_type != D_JFREEBLK)
4162 continue;
4163 jfreeblk = WK_JFREEBLK(&jblkdep->jb_list);
4164 if (jfreeblk->jf_blkno == blkno)
4165 break;
4166 }
4167 if (jblkdep == NULL)
4168 return;
4169 CTR1(KTR_SUJ, "cancel_jfreeblk: blkno %jd", blkno);
4170 free_jsegdep(jblkdep->jb_jsegdep);
4171 LIST_REMOVE(jblkdep, jb_deps);
4172 WORKITEM_FREE(jfreeblk, D_JFREEBLK);
4173 }
4174
4175 /*
4176 * Allocate a new jfreeblk to journal top level block pointer when truncating
4177 * a file. The caller must add this to the worklist when the per-filesystem
4178 * lock is held.
4179 */
4180 static struct jfreeblk *
newjfreeblk(freeblks,lbn,blkno,frags)4181 newjfreeblk(freeblks, lbn, blkno, frags)
4182 struct freeblks *freeblks;
4183 ufs_lbn_t lbn;
4184 ufs2_daddr_t blkno;
4185 int frags;
4186 {
4187 struct jfreeblk *jfreeblk;
4188
4189 jfreeblk = malloc(sizeof(*jfreeblk), M_JFREEBLK, M_SOFTDEP_FLAGS);
4190 workitem_alloc(&jfreeblk->jf_dep.jb_list, D_JFREEBLK,
4191 freeblks->fb_list.wk_mp);
4192 jfreeblk->jf_dep.jb_jsegdep = newjsegdep(&jfreeblk->jf_dep.jb_list);
4193 jfreeblk->jf_dep.jb_freeblks = freeblks;
4194 jfreeblk->jf_ino = freeblks->fb_inum;
4195 jfreeblk->jf_lbn = lbn;
4196 jfreeblk->jf_blkno = blkno;
4197 jfreeblk->jf_frags = frags;
4198 LIST_INSERT_HEAD(&freeblks->fb_jblkdephd, &jfreeblk->jf_dep, jb_deps);
4199
4200 return (jfreeblk);
4201 }
4202
4203 /*
4204 * The journal is only prepared to handle full-size block numbers, so we
4205 * have to adjust the record to reflect the change to a full-size block.
4206 * For example, suppose we have a block made up of fragments 8-15 and
4207 * want to free its last two fragments. We are given a request that says:
4208 * FREEBLK ino=5, blkno=14, lbn=0, frags=2, oldfrags=0
4209 * where frags are the number of fragments to free and oldfrags are the
4210 * number of fragments to keep. To block align it, we have to change it to
4211 * have a valid full-size blkno, so it becomes:
4212 * FREEBLK ino=5, blkno=8, lbn=0, frags=2, oldfrags=6
4213 */
4214 static void
adjust_newfreework(freeblks,frag_offset)4215 adjust_newfreework(freeblks, frag_offset)
4216 struct freeblks *freeblks;
4217 int frag_offset;
4218 {
4219 struct jfreeblk *jfreeblk;
4220
4221 KASSERT((LIST_FIRST(&freeblks->fb_jblkdephd) != NULL &&
4222 LIST_FIRST(&freeblks->fb_jblkdephd)->jb_list.wk_type == D_JFREEBLK),
4223 ("adjust_newfreework: Missing freeblks dependency"));
4224
4225 jfreeblk = WK_JFREEBLK(LIST_FIRST(&freeblks->fb_jblkdephd));
4226 jfreeblk->jf_blkno -= frag_offset;
4227 jfreeblk->jf_frags += frag_offset;
4228 }
4229
4230 /*
4231 * Allocate a new jtrunc to track a partial truncation.
4232 */
4233 static struct jtrunc *
newjtrunc(freeblks,size,extsize)4234 newjtrunc(freeblks, size, extsize)
4235 struct freeblks *freeblks;
4236 off_t size;
4237 int extsize;
4238 {
4239 struct jtrunc *jtrunc;
4240
4241 jtrunc = malloc(sizeof(*jtrunc), M_JTRUNC, M_SOFTDEP_FLAGS);
4242 workitem_alloc(&jtrunc->jt_dep.jb_list, D_JTRUNC,
4243 freeblks->fb_list.wk_mp);
4244 jtrunc->jt_dep.jb_jsegdep = newjsegdep(&jtrunc->jt_dep.jb_list);
4245 jtrunc->jt_dep.jb_freeblks = freeblks;
4246 jtrunc->jt_ino = freeblks->fb_inum;
4247 jtrunc->jt_size = size;
4248 jtrunc->jt_extsize = extsize;
4249 LIST_INSERT_HEAD(&freeblks->fb_jblkdephd, &jtrunc->jt_dep, jb_deps);
4250
4251 return (jtrunc);
4252 }
4253
4254 /*
4255 * If we're canceling a new bitmap we have to search for another ref
4256 * to move into the bmsafemap dep. This might be better expressed
4257 * with another structure.
4258 */
4259 static void
move_newblock_dep(jaddref,inodedep)4260 move_newblock_dep(jaddref, inodedep)
4261 struct jaddref *jaddref;
4262 struct inodedep *inodedep;
4263 {
4264 struct inoref *inoref;
4265 struct jaddref *jaddrefn;
4266
4267 jaddrefn = NULL;
4268 for (inoref = TAILQ_NEXT(&jaddref->ja_ref, if_deps); inoref;
4269 inoref = TAILQ_NEXT(inoref, if_deps)) {
4270 if ((jaddref->ja_state & NEWBLOCK) &&
4271 inoref->if_list.wk_type == D_JADDREF) {
4272 jaddrefn = (struct jaddref *)inoref;
4273 break;
4274 }
4275 }
4276 if (jaddrefn == NULL)
4277 return;
4278 jaddrefn->ja_state &= ~(ATTACHED | UNDONE);
4279 jaddrefn->ja_state |= jaddref->ja_state &
4280 (ATTACHED | UNDONE | NEWBLOCK);
4281 jaddref->ja_state &= ~(ATTACHED | UNDONE | NEWBLOCK);
4282 jaddref->ja_state |= ATTACHED;
4283 LIST_REMOVE(jaddref, ja_bmdeps);
4284 LIST_INSERT_HEAD(&inodedep->id_bmsafemap->sm_jaddrefhd, jaddrefn,
4285 ja_bmdeps);
4286 }
4287
4288 /*
4289 * Cancel a jaddref either before it has been written or while it is being
4290 * written. This happens when a link is removed before the add reaches
4291 * the disk. The jaddref dependency is kept linked into the bmsafemap
4292 * and inode to prevent the link count or bitmap from reaching the disk
4293 * until handle_workitem_remove() re-adjusts the counts and bitmaps as
4294 * required.
4295 *
4296 * Returns 1 if the canceled addref requires journaling of the remove and
4297 * 0 otherwise.
4298 */
4299 static int
cancel_jaddref(jaddref,inodedep,wkhd)4300 cancel_jaddref(jaddref, inodedep, wkhd)
4301 struct jaddref *jaddref;
4302 struct inodedep *inodedep;
4303 struct workhead *wkhd;
4304 {
4305 struct inoref *inoref;
4306 struct jsegdep *jsegdep;
4307 int needsj;
4308
4309 KASSERT((jaddref->ja_state & COMPLETE) == 0,
4310 ("cancel_jaddref: Canceling complete jaddref"));
4311 if (jaddref->ja_state & (INPROGRESS | COMPLETE))
4312 needsj = 1;
4313 else
4314 needsj = 0;
4315 if (inodedep == NULL)
4316 if (inodedep_lookup(jaddref->ja_list.wk_mp, jaddref->ja_ino,
4317 0, &inodedep) == 0)
4318 panic("cancel_jaddref: Lost inodedep");
4319 /*
4320 * We must adjust the nlink of any reference operation that follows
4321 * us so that it is consistent with the in-memory reference. This
4322 * ensures that inode nlink rollbacks always have the correct link.
4323 */
4324 if (needsj == 0) {
4325 for (inoref = TAILQ_NEXT(&jaddref->ja_ref, if_deps); inoref;
4326 inoref = TAILQ_NEXT(inoref, if_deps)) {
4327 if (inoref->if_state & GOINGAWAY)
4328 break;
4329 inoref->if_nlink--;
4330 }
4331 }
4332 jsegdep = inoref_jseg(&jaddref->ja_ref);
4333 if (jaddref->ja_state & NEWBLOCK)
4334 move_newblock_dep(jaddref, inodedep);
4335 wake_worklist(&jaddref->ja_list);
4336 jaddref->ja_mkdir = NULL;
4337 if (jaddref->ja_state & INPROGRESS) {
4338 jaddref->ja_state &= ~INPROGRESS;
4339 WORKLIST_REMOVE(&jaddref->ja_list);
4340 jwork_insert(wkhd, jsegdep);
4341 } else {
4342 free_jsegdep(jsegdep);
4343 if (jaddref->ja_state & DEPCOMPLETE)
4344 remove_from_journal(&jaddref->ja_list);
4345 }
4346 jaddref->ja_state |= (GOINGAWAY | DEPCOMPLETE);
4347 /*
4348 * Leave NEWBLOCK jaddrefs on the inodedep so handle_workitem_remove
4349 * can arrange for them to be freed with the bitmap. Otherwise we
4350 * no longer need this addref attached to the inoreflst and it
4351 * will incorrectly adjust nlink if we leave it.
4352 */
4353 if ((jaddref->ja_state & NEWBLOCK) == 0) {
4354 TAILQ_REMOVE(&inodedep->id_inoreflst, &jaddref->ja_ref,
4355 if_deps);
4356 jaddref->ja_state |= COMPLETE;
4357 free_jaddref(jaddref);
4358 return (needsj);
4359 }
4360 /*
4361 * Leave the head of the list for jsegdeps for fast merging.
4362 */
4363 if (LIST_FIRST(wkhd) != NULL) {
4364 jaddref->ja_state |= ONWORKLIST;
4365 LIST_INSERT_AFTER(LIST_FIRST(wkhd), &jaddref->ja_list, wk_list);
4366 } else
4367 WORKLIST_INSERT(wkhd, &jaddref->ja_list);
4368
4369 return (needsj);
4370 }
4371
4372 /*
4373 * Attempt to free a jaddref structure when some work completes. This
4374 * should only succeed once the entry is written and all dependencies have
4375 * been notified.
4376 */
4377 static void
free_jaddref(jaddref)4378 free_jaddref(jaddref)
4379 struct jaddref *jaddref;
4380 {
4381
4382 if ((jaddref->ja_state & ALLCOMPLETE) != ALLCOMPLETE)
4383 return;
4384 if (jaddref->ja_ref.if_jsegdep)
4385 panic("free_jaddref: segdep attached to jaddref %p(0x%X)\n",
4386 jaddref, jaddref->ja_state);
4387 if (jaddref->ja_state & NEWBLOCK)
4388 LIST_REMOVE(jaddref, ja_bmdeps);
4389 if (jaddref->ja_state & (INPROGRESS | ONWORKLIST))
4390 panic("free_jaddref: Bad state %p(0x%X)",
4391 jaddref, jaddref->ja_state);
4392 if (jaddref->ja_mkdir != NULL)
4393 panic("free_jaddref: Work pending, 0x%X\n", jaddref->ja_state);
4394 WORKITEM_FREE(jaddref, D_JADDREF);
4395 }
4396
4397 /*
4398 * Free a jremref structure once it has been written or discarded.
4399 */
4400 static void
free_jremref(jremref)4401 free_jremref(jremref)
4402 struct jremref *jremref;
4403 {
4404
4405 if (jremref->jr_ref.if_jsegdep)
4406 free_jsegdep(jremref->jr_ref.if_jsegdep);
4407 if (jremref->jr_state & INPROGRESS)
4408 panic("free_jremref: IO still pending");
4409 WORKITEM_FREE(jremref, D_JREMREF);
4410 }
4411
4412 /*
4413 * Free a jnewblk structure.
4414 */
4415 static void
free_jnewblk(jnewblk)4416 free_jnewblk(jnewblk)
4417 struct jnewblk *jnewblk;
4418 {
4419
4420 if ((jnewblk->jn_state & ALLCOMPLETE) != ALLCOMPLETE)
4421 return;
4422 LIST_REMOVE(jnewblk, jn_deps);
4423 if (jnewblk->jn_dep != NULL)
4424 panic("free_jnewblk: Dependency still attached.");
4425 WORKITEM_FREE(jnewblk, D_JNEWBLK);
4426 }
4427
4428 /*
4429 * Cancel a jnewblk which has been been made redundant by frag extension.
4430 */
4431 static void
cancel_jnewblk(jnewblk,wkhd)4432 cancel_jnewblk(jnewblk, wkhd)
4433 struct jnewblk *jnewblk;
4434 struct workhead *wkhd;
4435 {
4436 struct jsegdep *jsegdep;
4437
4438 CTR1(KTR_SUJ, "cancel_jnewblk: blkno %jd", jnewblk->jn_blkno);
4439 jsegdep = jnewblk->jn_jsegdep;
4440 if (jnewblk->jn_jsegdep == NULL || jnewblk->jn_dep == NULL)
4441 panic("cancel_jnewblk: Invalid state");
4442 jnewblk->jn_jsegdep = NULL;
4443 jnewblk->jn_dep = NULL;
4444 jnewblk->jn_state |= GOINGAWAY;
4445 if (jnewblk->jn_state & INPROGRESS) {
4446 jnewblk->jn_state &= ~INPROGRESS;
4447 WORKLIST_REMOVE(&jnewblk->jn_list);
4448 jwork_insert(wkhd, jsegdep);
4449 } else {
4450 free_jsegdep(jsegdep);
4451 remove_from_journal(&jnewblk->jn_list);
4452 }
4453 wake_worklist(&jnewblk->jn_list);
4454 WORKLIST_INSERT(wkhd, &jnewblk->jn_list);
4455 }
4456
4457 static void
free_jblkdep(jblkdep)4458 free_jblkdep(jblkdep)
4459 struct jblkdep *jblkdep;
4460 {
4461
4462 if (jblkdep->jb_list.wk_type == D_JFREEBLK)
4463 WORKITEM_FREE(jblkdep, D_JFREEBLK);
4464 else if (jblkdep->jb_list.wk_type == D_JTRUNC)
4465 WORKITEM_FREE(jblkdep, D_JTRUNC);
4466 else
4467 panic("free_jblkdep: Unexpected type %s",
4468 TYPENAME(jblkdep->jb_list.wk_type));
4469 }
4470
4471 /*
4472 * Free a single jseg once it is no longer referenced in memory or on
4473 * disk. Reclaim journal blocks and dependencies waiting for the segment
4474 * to disappear.
4475 */
4476 static void
free_jseg(jseg,jblocks)4477 free_jseg(jseg, jblocks)
4478 struct jseg *jseg;
4479 struct jblocks *jblocks;
4480 {
4481 struct freework *freework;
4482
4483 /*
4484 * Free freework structures that were lingering to indicate freed
4485 * indirect blocks that forced journal write ordering on reallocate.
4486 */
4487 while ((freework = LIST_FIRST(&jseg->js_indirs)) != NULL)
4488 indirblk_remove(freework);
4489 if (jblocks->jb_oldestseg == jseg)
4490 jblocks->jb_oldestseg = TAILQ_NEXT(jseg, js_next);
4491 TAILQ_REMOVE(&jblocks->jb_segs, jseg, js_next);
4492 jblocks_free(jblocks, jseg->js_list.wk_mp, jseg->js_size);
4493 KASSERT(LIST_EMPTY(&jseg->js_entries),
4494 ("free_jseg: Freed jseg has valid entries."));
4495 WORKITEM_FREE(jseg, D_JSEG);
4496 }
4497
4498 /*
4499 * Free all jsegs that meet the criteria for being reclaimed and update
4500 * oldestseg.
4501 */
4502 static void
free_jsegs(jblocks)4503 free_jsegs(jblocks)
4504 struct jblocks *jblocks;
4505 {
4506 struct jseg *jseg;
4507
4508 /*
4509 * Free only those jsegs which have none allocated before them to
4510 * preserve the journal space ordering.
4511 */
4512 while ((jseg = TAILQ_FIRST(&jblocks->jb_segs)) != NULL) {
4513 /*
4514 * Only reclaim space when nothing depends on this journal
4515 * set and another set has written that it is no longer
4516 * valid.
4517 */
4518 if (jseg->js_refs != 0) {
4519 jblocks->jb_oldestseg = jseg;
4520 return;
4521 }
4522 if ((jseg->js_state & ALLCOMPLETE) != ALLCOMPLETE)
4523 break;
4524 if (jseg->js_seq > jblocks->jb_oldestwrseq)
4525 break;
4526 /*
4527 * We can free jsegs that didn't write entries when
4528 * oldestwrseq == js_seq.
4529 */
4530 if (jseg->js_seq == jblocks->jb_oldestwrseq &&
4531 jseg->js_cnt != 0)
4532 break;
4533 free_jseg(jseg, jblocks);
4534 }
4535 /*
4536 * If we exited the loop above we still must discover the
4537 * oldest valid segment.
4538 */
4539 if (jseg)
4540 for (jseg = jblocks->jb_oldestseg; jseg != NULL;
4541 jseg = TAILQ_NEXT(jseg, js_next))
4542 if (jseg->js_refs != 0)
4543 break;
4544 jblocks->jb_oldestseg = jseg;
4545 /*
4546 * The journal has no valid records but some jsegs may still be
4547 * waiting on oldestwrseq to advance. We force a small record
4548 * out to permit these lingering records to be reclaimed.
4549 */
4550 if (jblocks->jb_oldestseg == NULL && !TAILQ_EMPTY(&jblocks->jb_segs))
4551 jblocks->jb_needseg = 1;
4552 }
4553
4554 /*
4555 * Release one reference to a jseg and free it if the count reaches 0. This
4556 * should eventually reclaim journal space as well.
4557 */
4558 static void
rele_jseg(jseg)4559 rele_jseg(jseg)
4560 struct jseg *jseg;
4561 {
4562
4563 KASSERT(jseg->js_refs > 0,
4564 ("free_jseg: Invalid refcnt %d", jseg->js_refs));
4565 if (--jseg->js_refs != 0)
4566 return;
4567 free_jsegs(jseg->js_jblocks);
4568 }
4569
4570 /*
4571 * Release a jsegdep and decrement the jseg count.
4572 */
4573 static void
free_jsegdep(jsegdep)4574 free_jsegdep(jsegdep)
4575 struct jsegdep *jsegdep;
4576 {
4577
4578 if (jsegdep->jd_seg)
4579 rele_jseg(jsegdep->jd_seg);
4580 WORKITEM_FREE(jsegdep, D_JSEGDEP);
4581 }
4582
4583 /*
4584 * Wait for a journal item to make it to disk. Initiate journal processing
4585 * if required.
4586 */
4587 static int
jwait(wk,waitfor)4588 jwait(wk, waitfor)
4589 struct worklist *wk;
4590 int waitfor;
4591 {
4592
4593 LOCK_OWNED(VFSTOUFS(wk->wk_mp));
4594 /*
4595 * Blocking journal waits cause slow synchronous behavior. Record
4596 * stats on the frequency of these blocking operations.
4597 */
4598 if (waitfor == MNT_WAIT) {
4599 stat_journal_wait++;
4600 switch (wk->wk_type) {
4601 case D_JREMREF:
4602 case D_JMVREF:
4603 stat_jwait_filepage++;
4604 break;
4605 case D_JTRUNC:
4606 case D_JFREEBLK:
4607 stat_jwait_freeblks++;
4608 break;
4609 case D_JNEWBLK:
4610 stat_jwait_newblk++;
4611 break;
4612 case D_JADDREF:
4613 stat_jwait_inode++;
4614 break;
4615 default:
4616 break;
4617 }
4618 }
4619 /*
4620 * If IO has not started we process the journal. We can't mark the
4621 * worklist item as IOWAITING because we drop the lock while
4622 * processing the journal and the worklist entry may be freed after
4623 * this point. The caller may call back in and re-issue the request.
4624 */
4625 if ((wk->wk_state & INPROGRESS) == 0) {
4626 softdep_process_journal(wk->wk_mp, wk, waitfor);
4627 if (waitfor != MNT_WAIT)
4628 return (EBUSY);
4629 return (0);
4630 }
4631 if (waitfor != MNT_WAIT)
4632 return (EBUSY);
4633 wait_worklist(wk, "jwait");
4634 return (0);
4635 }
4636
4637 /*
4638 * Lookup an inodedep based on an inode pointer and set the nlinkdelta as
4639 * appropriate. This is a convenience function to reduce duplicate code
4640 * for the setup and revert functions below.
4641 */
4642 static struct inodedep *
inodedep_lookup_ip(ip)4643 inodedep_lookup_ip(ip)
4644 struct inode *ip;
4645 {
4646 struct inodedep *inodedep;
4647
4648 KASSERT(ip->i_nlink >= ip->i_effnlink,
4649 ("inodedep_lookup_ip: bad delta"));
4650 (void) inodedep_lookup(ITOVFS(ip), ip->i_number, DEPALLOC,
4651 &inodedep);
4652 inodedep->id_nlinkdelta = ip->i_nlink - ip->i_effnlink;
4653 KASSERT((inodedep->id_state & UNLINKED) == 0, ("inode unlinked"));
4654
4655 return (inodedep);
4656 }
4657
4658 /*
4659 * Called prior to creating a new inode and linking it to a directory. The
4660 * jaddref structure must already be allocated by softdep_setup_inomapdep
4661 * and it is discovered here so we can initialize the mode and update
4662 * nlinkdelta.
4663 */
4664 void
softdep_setup_create(dp,ip)4665 softdep_setup_create(dp, ip)
4666 struct inode *dp;
4667 struct inode *ip;
4668 {
4669 struct inodedep *inodedep;
4670 struct jaddref *jaddref;
4671 struct vnode *dvp;
4672
4673 KASSERT(MOUNTEDSOFTDEP(ITOVFS(dp)) != 0,
4674 ("softdep_setup_create called on non-softdep filesystem"));
4675 KASSERT(ip->i_nlink == 1,
4676 ("softdep_setup_create: Invalid link count."));
4677 dvp = ITOV(dp);
4678 ACQUIRE_LOCK(ITOUMP(dp));
4679 inodedep = inodedep_lookup_ip(ip);
4680 if (DOINGSUJ(dvp)) {
4681 jaddref = (struct jaddref *)TAILQ_LAST(&inodedep->id_inoreflst,
4682 inoreflst);
4683 KASSERT(jaddref != NULL && jaddref->ja_parent == dp->i_number,
4684 ("softdep_setup_create: No addref structure present."));
4685 }
4686 softdep_prelink(dvp, NULL);
4687 FREE_LOCK(ITOUMP(dp));
4688 }
4689
4690 /*
4691 * Create a jaddref structure to track the addition of a DOTDOT link when
4692 * we are reparenting an inode as part of a rename. This jaddref will be
4693 * found by softdep_setup_directory_change. Adjusts nlinkdelta for
4694 * non-journaling softdep.
4695 */
4696 void
softdep_setup_dotdot_link(dp,ip)4697 softdep_setup_dotdot_link(dp, ip)
4698 struct inode *dp;
4699 struct inode *ip;
4700 {
4701 struct inodedep *inodedep;
4702 struct jaddref *jaddref;
4703 struct vnode *dvp;
4704
4705 KASSERT(MOUNTEDSOFTDEP(ITOVFS(dp)) != 0,
4706 ("softdep_setup_dotdot_link called on non-softdep filesystem"));
4707 dvp = ITOV(dp);
4708 jaddref = NULL;
4709 /*
4710 * We don't set MKDIR_PARENT as this is not tied to a mkdir and
4711 * is used as a normal link would be.
4712 */
4713 if (DOINGSUJ(dvp))
4714 jaddref = newjaddref(ip, dp->i_number, DOTDOT_OFFSET,
4715 dp->i_effnlink - 1, dp->i_mode);
4716 ACQUIRE_LOCK(ITOUMP(dp));
4717 inodedep = inodedep_lookup_ip(dp);
4718 if (jaddref)
4719 TAILQ_INSERT_TAIL(&inodedep->id_inoreflst, &jaddref->ja_ref,
4720 if_deps);
4721 softdep_prelink(dvp, ITOV(ip));
4722 FREE_LOCK(ITOUMP(dp));
4723 }
4724
4725 /*
4726 * Create a jaddref structure to track a new link to an inode. The directory
4727 * offset is not known until softdep_setup_directory_add or
4728 * softdep_setup_directory_change. Adjusts nlinkdelta for non-journaling
4729 * softdep.
4730 */
4731 void
softdep_setup_link(dp,ip)4732 softdep_setup_link(dp, ip)
4733 struct inode *dp;
4734 struct inode *ip;
4735 {
4736 struct inodedep *inodedep;
4737 struct jaddref *jaddref;
4738 struct vnode *dvp;
4739
4740 KASSERT(MOUNTEDSOFTDEP(ITOVFS(dp)) != 0,
4741 ("softdep_setup_link called on non-softdep filesystem"));
4742 dvp = ITOV(dp);
4743 jaddref = NULL;
4744 if (DOINGSUJ(dvp))
4745 jaddref = newjaddref(dp, ip->i_number, 0, ip->i_effnlink - 1,
4746 ip->i_mode);
4747 ACQUIRE_LOCK(ITOUMP(dp));
4748 inodedep = inodedep_lookup_ip(ip);
4749 if (jaddref)
4750 TAILQ_INSERT_TAIL(&inodedep->id_inoreflst, &jaddref->ja_ref,
4751 if_deps);
4752 softdep_prelink(dvp, ITOV(ip));
4753 FREE_LOCK(ITOUMP(dp));
4754 }
4755
4756 /*
4757 * Called to create the jaddref structures to track . and .. references as
4758 * well as lookup and further initialize the incomplete jaddref created
4759 * by softdep_setup_inomapdep when the inode was allocated. Adjusts
4760 * nlinkdelta for non-journaling softdep.
4761 */
4762 void
softdep_setup_mkdir(dp,ip)4763 softdep_setup_mkdir(dp, ip)
4764 struct inode *dp;
4765 struct inode *ip;
4766 {
4767 struct inodedep *inodedep;
4768 struct jaddref *dotdotaddref;
4769 struct jaddref *dotaddref;
4770 struct jaddref *jaddref;
4771 struct vnode *dvp;
4772
4773 KASSERT(MOUNTEDSOFTDEP(ITOVFS(dp)) != 0,
4774 ("softdep_setup_mkdir called on non-softdep filesystem"));
4775 dvp = ITOV(dp);
4776 dotaddref = dotdotaddref = NULL;
4777 if (DOINGSUJ(dvp)) {
4778 dotaddref = newjaddref(ip, ip->i_number, DOT_OFFSET, 1,
4779 ip->i_mode);
4780 dotaddref->ja_state |= MKDIR_BODY;
4781 dotdotaddref = newjaddref(ip, dp->i_number, DOTDOT_OFFSET,
4782 dp->i_effnlink - 1, dp->i_mode);
4783 dotdotaddref->ja_state |= MKDIR_PARENT;
4784 }
4785 ACQUIRE_LOCK(ITOUMP(dp));
4786 inodedep = inodedep_lookup_ip(ip);
4787 if (DOINGSUJ(dvp)) {
4788 jaddref = (struct jaddref *)TAILQ_LAST(&inodedep->id_inoreflst,
4789 inoreflst);
4790 KASSERT(jaddref != NULL,
4791 ("softdep_setup_mkdir: No addref structure present."));
4792 KASSERT(jaddref->ja_parent == dp->i_number,
4793 ("softdep_setup_mkdir: bad parent %ju",
4794 (uintmax_t)jaddref->ja_parent));
4795 TAILQ_INSERT_BEFORE(&jaddref->ja_ref, &dotaddref->ja_ref,
4796 if_deps);
4797 }
4798 inodedep = inodedep_lookup_ip(dp);
4799 if (DOINGSUJ(dvp))
4800 TAILQ_INSERT_TAIL(&inodedep->id_inoreflst,
4801 &dotdotaddref->ja_ref, if_deps);
4802 softdep_prelink(ITOV(dp), NULL);
4803 FREE_LOCK(ITOUMP(dp));
4804 }
4805
4806 /*
4807 * Called to track nlinkdelta of the inode and parent directories prior to
4808 * unlinking a directory.
4809 */
4810 void
softdep_setup_rmdir(dp,ip)4811 softdep_setup_rmdir(dp, ip)
4812 struct inode *dp;
4813 struct inode *ip;
4814 {
4815 struct vnode *dvp;
4816
4817 KASSERT(MOUNTEDSOFTDEP(ITOVFS(dp)) != 0,
4818 ("softdep_setup_rmdir called on non-softdep filesystem"));
4819 dvp = ITOV(dp);
4820 ACQUIRE_LOCK(ITOUMP(dp));
4821 (void) inodedep_lookup_ip(ip);
4822 (void) inodedep_lookup_ip(dp);
4823 softdep_prelink(dvp, ITOV(ip));
4824 FREE_LOCK(ITOUMP(dp));
4825 }
4826
4827 /*
4828 * Called to track nlinkdelta of the inode and parent directories prior to
4829 * unlink.
4830 */
4831 void
softdep_setup_unlink(dp,ip)4832 softdep_setup_unlink(dp, ip)
4833 struct inode *dp;
4834 struct inode *ip;
4835 {
4836 struct vnode *dvp;
4837
4838 KASSERT(MOUNTEDSOFTDEP(ITOVFS(dp)) != 0,
4839 ("softdep_setup_unlink called on non-softdep filesystem"));
4840 dvp = ITOV(dp);
4841 ACQUIRE_LOCK(ITOUMP(dp));
4842 (void) inodedep_lookup_ip(ip);
4843 (void) inodedep_lookup_ip(dp);
4844 softdep_prelink(dvp, ITOV(ip));
4845 FREE_LOCK(ITOUMP(dp));
4846 }
4847
4848 /*
4849 * Called to release the journal structures created by a failed non-directory
4850 * creation. Adjusts nlinkdelta for non-journaling softdep.
4851 */
4852 void
softdep_revert_create(dp,ip)4853 softdep_revert_create(dp, ip)
4854 struct inode *dp;
4855 struct inode *ip;
4856 {
4857 struct inodedep *inodedep;
4858 struct jaddref *jaddref;
4859 struct vnode *dvp;
4860
4861 KASSERT(MOUNTEDSOFTDEP(ITOVFS((dp))) != 0,
4862 ("softdep_revert_create called on non-softdep filesystem"));
4863 dvp = ITOV(dp);
4864 ACQUIRE_LOCK(ITOUMP(dp));
4865 inodedep = inodedep_lookup_ip(ip);
4866 if (DOINGSUJ(dvp)) {
4867 jaddref = (struct jaddref *)TAILQ_LAST(&inodedep->id_inoreflst,
4868 inoreflst);
4869 KASSERT(jaddref->ja_parent == dp->i_number,
4870 ("softdep_revert_create: addref parent mismatch"));
4871 cancel_jaddref(jaddref, inodedep, &inodedep->id_inowait);
4872 }
4873 FREE_LOCK(ITOUMP(dp));
4874 }
4875
4876 /*
4877 * Called to release the journal structures created by a failed link
4878 * addition. Adjusts nlinkdelta for non-journaling softdep.
4879 */
4880 void
softdep_revert_link(dp,ip)4881 softdep_revert_link(dp, ip)
4882 struct inode *dp;
4883 struct inode *ip;
4884 {
4885 struct inodedep *inodedep;
4886 struct jaddref *jaddref;
4887 struct vnode *dvp;
4888
4889 KASSERT(MOUNTEDSOFTDEP(ITOVFS(dp)) != 0,
4890 ("softdep_revert_link called on non-softdep filesystem"));
4891 dvp = ITOV(dp);
4892 ACQUIRE_LOCK(ITOUMP(dp));
4893 inodedep = inodedep_lookup_ip(ip);
4894 if (DOINGSUJ(dvp)) {
4895 jaddref = (struct jaddref *)TAILQ_LAST(&inodedep->id_inoreflst,
4896 inoreflst);
4897 KASSERT(jaddref->ja_parent == dp->i_number,
4898 ("softdep_revert_link: addref parent mismatch"));
4899 cancel_jaddref(jaddref, inodedep, &inodedep->id_inowait);
4900 }
4901 FREE_LOCK(ITOUMP(dp));
4902 }
4903
4904 /*
4905 * Called to release the journal structures created by a failed mkdir
4906 * attempt. Adjusts nlinkdelta for non-journaling softdep.
4907 */
4908 void
softdep_revert_mkdir(dp,ip)4909 softdep_revert_mkdir(dp, ip)
4910 struct inode *dp;
4911 struct inode *ip;
4912 {
4913 struct inodedep *inodedep;
4914 struct jaddref *jaddref;
4915 struct jaddref *dotaddref;
4916 struct vnode *dvp;
4917
4918 KASSERT(MOUNTEDSOFTDEP(ITOVFS(dp)) != 0,
4919 ("softdep_revert_mkdir called on non-softdep filesystem"));
4920 dvp = ITOV(dp);
4921
4922 ACQUIRE_LOCK(ITOUMP(dp));
4923 inodedep = inodedep_lookup_ip(dp);
4924 if (DOINGSUJ(dvp)) {
4925 jaddref = (struct jaddref *)TAILQ_LAST(&inodedep->id_inoreflst,
4926 inoreflst);
4927 KASSERT(jaddref->ja_parent == ip->i_number,
4928 ("softdep_revert_mkdir: dotdot addref parent mismatch"));
4929 cancel_jaddref(jaddref, inodedep, &inodedep->id_inowait);
4930 }
4931 inodedep = inodedep_lookup_ip(ip);
4932 if (DOINGSUJ(dvp)) {
4933 jaddref = (struct jaddref *)TAILQ_LAST(&inodedep->id_inoreflst,
4934 inoreflst);
4935 KASSERT(jaddref->ja_parent == dp->i_number,
4936 ("softdep_revert_mkdir: addref parent mismatch"));
4937 dotaddref = (struct jaddref *)TAILQ_PREV(&jaddref->ja_ref,
4938 inoreflst, if_deps);
4939 cancel_jaddref(jaddref, inodedep, &inodedep->id_inowait);
4940 KASSERT(dotaddref->ja_parent == ip->i_number,
4941 ("softdep_revert_mkdir: dot addref parent mismatch"));
4942 cancel_jaddref(dotaddref, inodedep, &inodedep->id_inowait);
4943 }
4944 FREE_LOCK(ITOUMP(dp));
4945 }
4946
4947 /*
4948 * Called to correct nlinkdelta after a failed rmdir.
4949 */
4950 void
softdep_revert_rmdir(dp,ip)4951 softdep_revert_rmdir(dp, ip)
4952 struct inode *dp;
4953 struct inode *ip;
4954 {
4955
4956 KASSERT(MOUNTEDSOFTDEP(ITOVFS(dp)) != 0,
4957 ("softdep_revert_rmdir called on non-softdep filesystem"));
4958 ACQUIRE_LOCK(ITOUMP(dp));
4959 (void) inodedep_lookup_ip(ip);
4960 (void) inodedep_lookup_ip(dp);
4961 FREE_LOCK(ITOUMP(dp));
4962 }
4963
4964 /*
4965 * Protecting the freemaps (or bitmaps).
4966 *
4967 * To eliminate the need to execute fsck before mounting a filesystem
4968 * after a power failure, one must (conservatively) guarantee that the
4969 * on-disk copy of the bitmaps never indicate that a live inode or block is
4970 * free. So, when a block or inode is allocated, the bitmap should be
4971 * updated (on disk) before any new pointers. When a block or inode is
4972 * freed, the bitmap should not be updated until all pointers have been
4973 * reset. The latter dependency is handled by the delayed de-allocation
4974 * approach described below for block and inode de-allocation. The former
4975 * dependency is handled by calling the following procedure when a block or
4976 * inode is allocated. When an inode is allocated an "inodedep" is created
4977 * with its DEPCOMPLETE flag cleared until its bitmap is written to disk.
4978 * Each "inodedep" is also inserted into the hash indexing structure so
4979 * that any additional link additions can be made dependent on the inode
4980 * allocation.
4981 *
4982 * The ufs filesystem maintains a number of free block counts (e.g., per
4983 * cylinder group, per cylinder and per <cylinder, rotational position> pair)
4984 * in addition to the bitmaps. These counts are used to improve efficiency
4985 * during allocation and therefore must be consistent with the bitmaps.
4986 * There is no convenient way to guarantee post-crash consistency of these
4987 * counts with simple update ordering, for two main reasons: (1) The counts
4988 * and bitmaps for a single cylinder group block are not in the same disk
4989 * sector. If a disk write is interrupted (e.g., by power failure), one may
4990 * be written and the other not. (2) Some of the counts are located in the
4991 * superblock rather than the cylinder group block. So, we focus our soft
4992 * updates implementation on protecting the bitmaps. When mounting a
4993 * filesystem, we recompute the auxiliary counts from the bitmaps.
4994 */
4995
4996 /*
4997 * Called just after updating the cylinder group block to allocate an inode.
4998 */
4999 void
softdep_setup_inomapdep(bp,ip,newinum,mode)5000 softdep_setup_inomapdep(bp, ip, newinum, mode)
5001 struct buf *bp; /* buffer for cylgroup block with inode map */
5002 struct inode *ip; /* inode related to allocation */
5003 ino_t newinum; /* new inode number being allocated */
5004 int mode;
5005 {
5006 struct inodedep *inodedep;
5007 struct bmsafemap *bmsafemap;
5008 struct jaddref *jaddref;
5009 struct mount *mp;
5010 struct fs *fs;
5011
5012 mp = ITOVFS(ip);
5013 KASSERT(MOUNTEDSOFTDEP(mp) != 0,
5014 ("softdep_setup_inomapdep called on non-softdep filesystem"));
5015 fs = VFSTOUFS(mp)->um_fs;
5016 jaddref = NULL;
5017
5018 /*
5019 * Allocate the journal reference add structure so that the bitmap
5020 * can be dependent on it.
5021 */
5022 if (MOUNTEDSUJ(mp)) {
5023 jaddref = newjaddref(ip, newinum, 0, 0, mode);
5024 jaddref->ja_state |= NEWBLOCK;
5025 }
5026
5027 /*
5028 * Create a dependency for the newly allocated inode.
5029 * Panic if it already exists as something is seriously wrong.
5030 * Otherwise add it to the dependency list for the buffer holding
5031 * the cylinder group map from which it was allocated.
5032 *
5033 * We have to preallocate a bmsafemap entry in case it is needed
5034 * in bmsafemap_lookup since once we allocate the inodedep, we
5035 * have to finish initializing it before we can FREE_LOCK().
5036 * By preallocating, we avoid FREE_LOCK() while doing a malloc
5037 * in bmsafemap_lookup. We cannot call bmsafemap_lookup before
5038 * creating the inodedep as it can be freed during the time
5039 * that we FREE_LOCK() while allocating the inodedep. We must
5040 * call workitem_alloc() before entering the locked section as
5041 * it also acquires the lock and we must avoid trying doing so
5042 * recursively.
5043 */
5044 bmsafemap = malloc(sizeof(struct bmsafemap),
5045 M_BMSAFEMAP, M_SOFTDEP_FLAGS);
5046 workitem_alloc(&bmsafemap->sm_list, D_BMSAFEMAP, mp);
5047 ACQUIRE_LOCK(ITOUMP(ip));
5048 if ((inodedep_lookup(mp, newinum, DEPALLOC, &inodedep)))
5049 panic("softdep_setup_inomapdep: dependency %p for new"
5050 "inode already exists", inodedep);
5051 bmsafemap = bmsafemap_lookup(mp, bp, ino_to_cg(fs, newinum), bmsafemap);
5052 if (jaddref) {
5053 LIST_INSERT_HEAD(&bmsafemap->sm_jaddrefhd, jaddref, ja_bmdeps);
5054 TAILQ_INSERT_TAIL(&inodedep->id_inoreflst, &jaddref->ja_ref,
5055 if_deps);
5056 } else {
5057 inodedep->id_state |= ONDEPLIST;
5058 LIST_INSERT_HEAD(&bmsafemap->sm_inodedephd, inodedep, id_deps);
5059 }
5060 inodedep->id_bmsafemap = bmsafemap;
5061 inodedep->id_state &= ~DEPCOMPLETE;
5062 FREE_LOCK(ITOUMP(ip));
5063 }
5064
5065 /*
5066 * Called just after updating the cylinder group block to
5067 * allocate block or fragment.
5068 */
5069 void
softdep_setup_blkmapdep(bp,mp,newblkno,frags,oldfrags)5070 softdep_setup_blkmapdep(bp, mp, newblkno, frags, oldfrags)
5071 struct buf *bp; /* buffer for cylgroup block with block map */
5072 struct mount *mp; /* filesystem doing allocation */
5073 ufs2_daddr_t newblkno; /* number of newly allocated block */
5074 int frags; /* Number of fragments. */
5075 int oldfrags; /* Previous number of fragments for extend. */
5076 {
5077 struct newblk *newblk;
5078 struct bmsafemap *bmsafemap;
5079 struct jnewblk *jnewblk;
5080 struct ufsmount *ump;
5081 struct fs *fs;
5082
5083 KASSERT(MOUNTEDSOFTDEP(mp) != 0,
5084 ("softdep_setup_blkmapdep called on non-softdep filesystem"));
5085 ump = VFSTOUFS(mp);
5086 fs = ump->um_fs;
5087 jnewblk = NULL;
5088 /*
5089 * Create a dependency for the newly allocated block.
5090 * Add it to the dependency list for the buffer holding
5091 * the cylinder group map from which it was allocated.
5092 */
5093 if (MOUNTEDSUJ(mp)) {
5094 jnewblk = malloc(sizeof(*jnewblk), M_JNEWBLK, M_SOFTDEP_FLAGS);
5095 workitem_alloc(&jnewblk->jn_list, D_JNEWBLK, mp);
5096 jnewblk->jn_jsegdep = newjsegdep(&jnewblk->jn_list);
5097 jnewblk->jn_state = ATTACHED;
5098 jnewblk->jn_blkno = newblkno;
5099 jnewblk->jn_frags = frags;
5100 jnewblk->jn_oldfrags = oldfrags;
5101 #ifdef SUJ_DEBUG
5102 {
5103 struct cg *cgp;
5104 uint8_t *blksfree;
5105 long bno;
5106 int i;
5107
5108 cgp = (struct cg *)bp->b_data;
5109 blksfree = cg_blksfree(cgp);
5110 bno = dtogd(fs, jnewblk->jn_blkno);
5111 for (i = jnewblk->jn_oldfrags; i < jnewblk->jn_frags;
5112 i++) {
5113 if (isset(blksfree, bno + i))
5114 panic("softdep_setup_blkmapdep: "
5115 "free fragment %d from %d-%d "
5116 "state 0x%X dep %p", i,
5117 jnewblk->jn_oldfrags,
5118 jnewblk->jn_frags,
5119 jnewblk->jn_state,
5120 jnewblk->jn_dep);
5121 }
5122 }
5123 #endif
5124 }
5125
5126 CTR3(KTR_SUJ,
5127 "softdep_setup_blkmapdep: blkno %jd frags %d oldfrags %d",
5128 newblkno, frags, oldfrags);
5129 ACQUIRE_LOCK(ump);
5130 if (newblk_lookup(mp, newblkno, DEPALLOC, &newblk) != 0)
5131 panic("softdep_setup_blkmapdep: found block");
5132 newblk->nb_bmsafemap = bmsafemap = bmsafemap_lookup(mp, bp,
5133 dtog(fs, newblkno), NULL);
5134 if (jnewblk) {
5135 jnewblk->jn_dep = (struct worklist *)newblk;
5136 LIST_INSERT_HEAD(&bmsafemap->sm_jnewblkhd, jnewblk, jn_deps);
5137 } else {
5138 newblk->nb_state |= ONDEPLIST;
5139 LIST_INSERT_HEAD(&bmsafemap->sm_newblkhd, newblk, nb_deps);
5140 }
5141 newblk->nb_bmsafemap = bmsafemap;
5142 newblk->nb_jnewblk = jnewblk;
5143 FREE_LOCK(ump);
5144 }
5145
5146 #define BMSAFEMAP_HASH(ump, cg) \
5147 (&(ump)->bmsafemap_hashtbl[(cg) & (ump)->bmsafemap_hash_size])
5148
5149 static int
bmsafemap_find(bmsafemaphd,cg,bmsafemapp)5150 bmsafemap_find(bmsafemaphd, cg, bmsafemapp)
5151 struct bmsafemap_hashhead *bmsafemaphd;
5152 int cg;
5153 struct bmsafemap **bmsafemapp;
5154 {
5155 struct bmsafemap *bmsafemap;
5156
5157 LIST_FOREACH(bmsafemap, bmsafemaphd, sm_hash)
5158 if (bmsafemap->sm_cg == cg)
5159 break;
5160 if (bmsafemap) {
5161 *bmsafemapp = bmsafemap;
5162 return (1);
5163 }
5164 *bmsafemapp = NULL;
5165
5166 return (0);
5167 }
5168
5169 /*
5170 * Find the bmsafemap associated with a cylinder group buffer.
5171 * If none exists, create one. The buffer must be locked when
5172 * this routine is called and this routine must be called with
5173 * the softdep lock held. To avoid giving up the lock while
5174 * allocating a new bmsafemap, a preallocated bmsafemap may be
5175 * provided. If it is provided but not needed, it is freed.
5176 */
5177 static struct bmsafemap *
bmsafemap_lookup(mp,bp,cg,newbmsafemap)5178 bmsafemap_lookup(mp, bp, cg, newbmsafemap)
5179 struct mount *mp;
5180 struct buf *bp;
5181 int cg;
5182 struct bmsafemap *newbmsafemap;
5183 {
5184 struct bmsafemap_hashhead *bmsafemaphd;
5185 struct bmsafemap *bmsafemap, *collision;
5186 struct worklist *wk;
5187 struct ufsmount *ump;
5188
5189 ump = VFSTOUFS(mp);
5190 LOCK_OWNED(ump);
5191 KASSERT(bp != NULL, ("bmsafemap_lookup: missing buffer"));
5192 LIST_FOREACH(wk, &bp->b_dep, wk_list) {
5193 if (wk->wk_type == D_BMSAFEMAP) {
5194 if (newbmsafemap)
5195 WORKITEM_FREE(newbmsafemap, D_BMSAFEMAP);
5196 return (WK_BMSAFEMAP(wk));
5197 }
5198 }
5199 bmsafemaphd = BMSAFEMAP_HASH(ump, cg);
5200 if (bmsafemap_find(bmsafemaphd, cg, &bmsafemap) == 1) {
5201 if (newbmsafemap)
5202 WORKITEM_FREE(newbmsafemap, D_BMSAFEMAP);
5203 return (bmsafemap);
5204 }
5205 if (newbmsafemap) {
5206 bmsafemap = newbmsafemap;
5207 } else {
5208 FREE_LOCK(ump);
5209 bmsafemap = malloc(sizeof(struct bmsafemap),
5210 M_BMSAFEMAP, M_SOFTDEP_FLAGS);
5211 workitem_alloc(&bmsafemap->sm_list, D_BMSAFEMAP, mp);
5212 ACQUIRE_LOCK(ump);
5213 }
5214 bmsafemap->sm_buf = bp;
5215 LIST_INIT(&bmsafemap->sm_inodedephd);
5216 LIST_INIT(&bmsafemap->sm_inodedepwr);
5217 LIST_INIT(&bmsafemap->sm_newblkhd);
5218 LIST_INIT(&bmsafemap->sm_newblkwr);
5219 LIST_INIT(&bmsafemap->sm_jaddrefhd);
5220 LIST_INIT(&bmsafemap->sm_jnewblkhd);
5221 LIST_INIT(&bmsafemap->sm_freehd);
5222 LIST_INIT(&bmsafemap->sm_freewr);
5223 if (bmsafemap_find(bmsafemaphd, cg, &collision) == 1) {
5224 WORKITEM_FREE(bmsafemap, D_BMSAFEMAP);
5225 return (collision);
5226 }
5227 bmsafemap->sm_cg = cg;
5228 LIST_INSERT_HEAD(bmsafemaphd, bmsafemap, sm_hash);
5229 LIST_INSERT_HEAD(&ump->softdep_dirtycg, bmsafemap, sm_next);
5230 WORKLIST_INSERT(&bp->b_dep, &bmsafemap->sm_list);
5231 return (bmsafemap);
5232 }
5233
5234 /*
5235 * Direct block allocation dependencies.
5236 *
5237 * When a new block is allocated, the corresponding disk locations must be
5238 * initialized (with zeros or new data) before the on-disk inode points to
5239 * them. Also, the freemap from which the block was allocated must be
5240 * updated (on disk) before the inode's pointer. These two dependencies are
5241 * independent of each other and are needed for all file blocks and indirect
5242 * blocks that are pointed to directly by the inode. Just before the
5243 * "in-core" version of the inode is updated with a newly allocated block
5244 * number, a procedure (below) is called to setup allocation dependency
5245 * structures. These structures are removed when the corresponding
5246 * dependencies are satisfied or when the block allocation becomes obsolete
5247 * (i.e., the file is deleted, the block is de-allocated, or the block is a
5248 * fragment that gets upgraded). All of these cases are handled in
5249 * procedures described later.
5250 *
5251 * When a file extension causes a fragment to be upgraded, either to a larger
5252 * fragment or to a full block, the on-disk location may change (if the
5253 * previous fragment could not simply be extended). In this case, the old
5254 * fragment must be de-allocated, but not until after the inode's pointer has
5255 * been updated. In most cases, this is handled by later procedures, which
5256 * will construct a "freefrag" structure to be added to the workitem queue
5257 * when the inode update is complete (or obsolete). The main exception to
5258 * this is when an allocation occurs while a pending allocation dependency
5259 * (for the same block pointer) remains. This case is handled in the main
5260 * allocation dependency setup procedure by immediately freeing the
5261 * unreferenced fragments.
5262 */
5263 void
softdep_setup_allocdirect(ip,off,newblkno,oldblkno,newsize,oldsize,bp)5264 softdep_setup_allocdirect(ip, off, newblkno, oldblkno, newsize, oldsize, bp)
5265 struct inode *ip; /* inode to which block is being added */
5266 ufs_lbn_t off; /* block pointer within inode */
5267 ufs2_daddr_t newblkno; /* disk block number being added */
5268 ufs2_daddr_t oldblkno; /* previous block number, 0 unless frag */
5269 long newsize; /* size of new block */
5270 long oldsize; /* size of new block */
5271 struct buf *bp; /* bp for allocated block */
5272 {
5273 struct allocdirect *adp, *oldadp;
5274 struct allocdirectlst *adphead;
5275 struct freefrag *freefrag;
5276 struct inodedep *inodedep;
5277 struct pagedep *pagedep;
5278 struct jnewblk *jnewblk;
5279 struct newblk *newblk;
5280 struct mount *mp;
5281 ufs_lbn_t lbn;
5282
5283 lbn = bp->b_lblkno;
5284 mp = ITOVFS(ip);
5285 KASSERT(MOUNTEDSOFTDEP(mp) != 0,
5286 ("softdep_setup_allocdirect called on non-softdep filesystem"));
5287 if (oldblkno && oldblkno != newblkno)
5288 /*
5289 * The usual case is that a smaller fragment that
5290 * was just allocated has been replaced with a bigger
5291 * fragment or a full-size block. If it is marked as
5292 * B_DELWRI, the current contents have not been written
5293 * to disk. It is possible that the block was written
5294 * earlier, but very uncommon. If the block has never
5295 * been written, there is no need to send a BIO_DELETE
5296 * for it when it is freed. The gain from avoiding the
5297 * TRIMs for the common case of unwritten blocks far
5298 * exceeds the cost of the write amplification for the
5299 * uncommon case of failing to send a TRIM for a block
5300 * that had been written.
5301 */
5302 freefrag = newfreefrag(ip, oldblkno, oldsize, lbn,
5303 (bp->b_flags & B_DELWRI) != 0 ? NOTRIM_KEY : SINGLETON_KEY);
5304 else
5305 freefrag = NULL;
5306
5307 CTR6(KTR_SUJ,
5308 "softdep_setup_allocdirect: ino %d blkno %jd oldblkno %jd "
5309 "off %jd newsize %ld oldsize %d",
5310 ip->i_number, newblkno, oldblkno, off, newsize, oldsize);
5311 ACQUIRE_LOCK(ITOUMP(ip));
5312 if (off >= UFS_NDADDR) {
5313 if (lbn > 0)
5314 panic("softdep_setup_allocdirect: bad lbn %jd, off %jd",
5315 lbn, off);
5316 /* allocating an indirect block */
5317 if (oldblkno != 0)
5318 panic("softdep_setup_allocdirect: non-zero indir");
5319 } else {
5320 if (off != lbn)
5321 panic("softdep_setup_allocdirect: lbn %jd != off %jd",
5322 lbn, off);
5323 /*
5324 * Allocating a direct block.
5325 *
5326 * If we are allocating a directory block, then we must
5327 * allocate an associated pagedep to track additions and
5328 * deletions.
5329 */
5330 if ((ip->i_mode & IFMT) == IFDIR)
5331 pagedep_lookup(mp, bp, ip->i_number, off, DEPALLOC,
5332 &pagedep);
5333 }
5334 if (newblk_lookup(mp, newblkno, 0, &newblk) == 0)
5335 panic("softdep_setup_allocdirect: lost block");
5336 KASSERT(newblk->nb_list.wk_type == D_NEWBLK,
5337 ("softdep_setup_allocdirect: newblk already initialized"));
5338 /*
5339 * Convert the newblk to an allocdirect.
5340 */
5341 WORKITEM_REASSIGN(newblk, D_ALLOCDIRECT);
5342 adp = (struct allocdirect *)newblk;
5343 newblk->nb_freefrag = freefrag;
5344 adp->ad_offset = off;
5345 adp->ad_oldblkno = oldblkno;
5346 adp->ad_newsize = newsize;
5347 adp->ad_oldsize = oldsize;
5348
5349 /*
5350 * Finish initializing the journal.
5351 */
5352 if ((jnewblk = newblk->nb_jnewblk) != NULL) {
5353 jnewblk->jn_ino = ip->i_number;
5354 jnewblk->jn_lbn = lbn;
5355 add_to_journal(&jnewblk->jn_list);
5356 }
5357 if (freefrag && freefrag->ff_jdep != NULL &&
5358 freefrag->ff_jdep->wk_type == D_JFREEFRAG)
5359 add_to_journal(freefrag->ff_jdep);
5360 inodedep_lookup(mp, ip->i_number, DEPALLOC, &inodedep);
5361 adp->ad_inodedep = inodedep;
5362
5363 WORKLIST_INSERT(&bp->b_dep, &newblk->nb_list);
5364 /*
5365 * The list of allocdirects must be kept in sorted and ascending
5366 * order so that the rollback routines can quickly determine the
5367 * first uncommitted block (the size of the file stored on disk
5368 * ends at the end of the lowest committed fragment, or if there
5369 * are no fragments, at the end of the highest committed block).
5370 * Since files generally grow, the typical case is that the new
5371 * block is to be added at the end of the list. We speed this
5372 * special case by checking against the last allocdirect in the
5373 * list before laboriously traversing the list looking for the
5374 * insertion point.
5375 */
5376 adphead = &inodedep->id_newinoupdt;
5377 oldadp = TAILQ_LAST(adphead, allocdirectlst);
5378 if (oldadp == NULL || oldadp->ad_offset <= off) {
5379 /* insert at end of list */
5380 TAILQ_INSERT_TAIL(adphead, adp, ad_next);
5381 if (oldadp != NULL && oldadp->ad_offset == off)
5382 allocdirect_merge(adphead, adp, oldadp);
5383 FREE_LOCK(ITOUMP(ip));
5384 return;
5385 }
5386 TAILQ_FOREACH(oldadp, adphead, ad_next) {
5387 if (oldadp->ad_offset >= off)
5388 break;
5389 }
5390 if (oldadp == NULL)
5391 panic("softdep_setup_allocdirect: lost entry");
5392 /* insert in middle of list */
5393 TAILQ_INSERT_BEFORE(oldadp, adp, ad_next);
5394 if (oldadp->ad_offset == off)
5395 allocdirect_merge(adphead, adp, oldadp);
5396
5397 FREE_LOCK(ITOUMP(ip));
5398 }
5399
5400 /*
5401 * Merge a newer and older journal record to be stored either in a
5402 * newblock or freefrag. This handles aggregating journal records for
5403 * fragment allocation into a second record as well as replacing a
5404 * journal free with an aborted journal allocation. A segment for the
5405 * oldest record will be placed on wkhd if it has been written. If not
5406 * the segment for the newer record will suffice.
5407 */
5408 static struct worklist *
jnewblk_merge(new,old,wkhd)5409 jnewblk_merge(new, old, wkhd)
5410 struct worklist *new;
5411 struct worklist *old;
5412 struct workhead *wkhd;
5413 {
5414 struct jnewblk *njnewblk;
5415 struct jnewblk *jnewblk;
5416
5417 /* Handle NULLs to simplify callers. */
5418 if (new == NULL)
5419 return (old);
5420 if (old == NULL)
5421 return (new);
5422 /* Replace a jfreefrag with a jnewblk. */
5423 if (new->wk_type == D_JFREEFRAG) {
5424 if (WK_JNEWBLK(old)->jn_blkno != WK_JFREEFRAG(new)->fr_blkno)
5425 panic("jnewblk_merge: blkno mismatch: %p, %p",
5426 old, new);
5427 cancel_jfreefrag(WK_JFREEFRAG(new));
5428 return (old);
5429 }
5430 if (old->wk_type != D_JNEWBLK || new->wk_type != D_JNEWBLK)
5431 panic("jnewblk_merge: Bad type: old %d new %d\n",
5432 old->wk_type, new->wk_type);
5433 /*
5434 * Handle merging of two jnewblk records that describe
5435 * different sets of fragments in the same block.
5436 */
5437 jnewblk = WK_JNEWBLK(old);
5438 njnewblk = WK_JNEWBLK(new);
5439 if (jnewblk->jn_blkno != njnewblk->jn_blkno)
5440 panic("jnewblk_merge: Merging disparate blocks.");
5441 /*
5442 * The record may be rolled back in the cg.
5443 */
5444 if (jnewblk->jn_state & UNDONE) {
5445 jnewblk->jn_state &= ~UNDONE;
5446 njnewblk->jn_state |= UNDONE;
5447 njnewblk->jn_state &= ~ATTACHED;
5448 }
5449 /*
5450 * We modify the newer addref and free the older so that if neither
5451 * has been written the most up-to-date copy will be on disk. If
5452 * both have been written but rolled back we only temporarily need
5453 * one of them to fix the bits when the cg write completes.
5454 */
5455 jnewblk->jn_state |= ATTACHED | COMPLETE;
5456 njnewblk->jn_oldfrags = jnewblk->jn_oldfrags;
5457 cancel_jnewblk(jnewblk, wkhd);
5458 WORKLIST_REMOVE(&jnewblk->jn_list);
5459 free_jnewblk(jnewblk);
5460 return (new);
5461 }
5462
5463 /*
5464 * Replace an old allocdirect dependency with a newer one.
5465 */
5466 static void
allocdirect_merge(adphead,newadp,oldadp)5467 allocdirect_merge(adphead, newadp, oldadp)
5468 struct allocdirectlst *adphead; /* head of list holding allocdirects */
5469 struct allocdirect *newadp; /* allocdirect being added */
5470 struct allocdirect *oldadp; /* existing allocdirect being checked */
5471 {
5472 struct worklist *wk;
5473 struct freefrag *freefrag;
5474
5475 freefrag = NULL;
5476 LOCK_OWNED(VFSTOUFS(newadp->ad_list.wk_mp));
5477 if (newadp->ad_oldblkno != oldadp->ad_newblkno ||
5478 newadp->ad_oldsize != oldadp->ad_newsize ||
5479 newadp->ad_offset >= UFS_NDADDR)
5480 panic("%s %jd != new %jd || old size %ld != new %ld",
5481 "allocdirect_merge: old blkno",
5482 (intmax_t)newadp->ad_oldblkno,
5483 (intmax_t)oldadp->ad_newblkno,
5484 newadp->ad_oldsize, oldadp->ad_newsize);
5485 newadp->ad_oldblkno = oldadp->ad_oldblkno;
5486 newadp->ad_oldsize = oldadp->ad_oldsize;
5487 /*
5488 * If the old dependency had a fragment to free or had never
5489 * previously had a block allocated, then the new dependency
5490 * can immediately post its freefrag and adopt the old freefrag.
5491 * This action is done by swapping the freefrag dependencies.
5492 * The new dependency gains the old one's freefrag, and the
5493 * old one gets the new one and then immediately puts it on
5494 * the worklist when it is freed by free_newblk. It is
5495 * not possible to do this swap when the old dependency had a
5496 * non-zero size but no previous fragment to free. This condition
5497 * arises when the new block is an extension of the old block.
5498 * Here, the first part of the fragment allocated to the new
5499 * dependency is part of the block currently claimed on disk by
5500 * the old dependency, so cannot legitimately be freed until the
5501 * conditions for the new dependency are fulfilled.
5502 */
5503 freefrag = newadp->ad_freefrag;
5504 if (oldadp->ad_freefrag != NULL || oldadp->ad_oldblkno == 0) {
5505 newadp->ad_freefrag = oldadp->ad_freefrag;
5506 oldadp->ad_freefrag = freefrag;
5507 }
5508 /*
5509 * If we are tracking a new directory-block allocation,
5510 * move it from the old allocdirect to the new allocdirect.
5511 */
5512 if ((wk = LIST_FIRST(&oldadp->ad_newdirblk)) != NULL) {
5513 WORKLIST_REMOVE(wk);
5514 if (!LIST_EMPTY(&oldadp->ad_newdirblk))
5515 panic("allocdirect_merge: extra newdirblk");
5516 WORKLIST_INSERT(&newadp->ad_newdirblk, wk);
5517 }
5518 TAILQ_REMOVE(adphead, oldadp, ad_next);
5519 /*
5520 * We need to move any journal dependencies over to the freefrag
5521 * that releases this block if it exists. Otherwise we are
5522 * extending an existing block and we'll wait until that is
5523 * complete to release the journal space and extend the
5524 * new journal to cover this old space as well.
5525 */
5526 if (freefrag == NULL) {
5527 if (oldadp->ad_newblkno != newadp->ad_newblkno)
5528 panic("allocdirect_merge: %jd != %jd",
5529 oldadp->ad_newblkno, newadp->ad_newblkno);
5530 newadp->ad_block.nb_jnewblk = (struct jnewblk *)
5531 jnewblk_merge(&newadp->ad_block.nb_jnewblk->jn_list,
5532 &oldadp->ad_block.nb_jnewblk->jn_list,
5533 &newadp->ad_block.nb_jwork);
5534 oldadp->ad_block.nb_jnewblk = NULL;
5535 cancel_newblk(&oldadp->ad_block, NULL,
5536 &newadp->ad_block.nb_jwork);
5537 } else {
5538 wk = (struct worklist *) cancel_newblk(&oldadp->ad_block,
5539 &freefrag->ff_list, &freefrag->ff_jwork);
5540 freefrag->ff_jdep = jnewblk_merge(freefrag->ff_jdep, wk,
5541 &freefrag->ff_jwork);
5542 }
5543 free_newblk(&oldadp->ad_block);
5544 }
5545
5546 /*
5547 * Allocate a jfreefrag structure to journal a single block free.
5548 */
5549 static struct jfreefrag *
newjfreefrag(freefrag,ip,blkno,size,lbn)5550 newjfreefrag(freefrag, ip, blkno, size, lbn)
5551 struct freefrag *freefrag;
5552 struct inode *ip;
5553 ufs2_daddr_t blkno;
5554 long size;
5555 ufs_lbn_t lbn;
5556 {
5557 struct jfreefrag *jfreefrag;
5558 struct fs *fs;
5559
5560 fs = ITOFS(ip);
5561 jfreefrag = malloc(sizeof(struct jfreefrag), M_JFREEFRAG,
5562 M_SOFTDEP_FLAGS);
5563 workitem_alloc(&jfreefrag->fr_list, D_JFREEFRAG, ITOVFS(ip));
5564 jfreefrag->fr_jsegdep = newjsegdep(&jfreefrag->fr_list);
5565 jfreefrag->fr_state = ATTACHED | DEPCOMPLETE;
5566 jfreefrag->fr_ino = ip->i_number;
5567 jfreefrag->fr_lbn = lbn;
5568 jfreefrag->fr_blkno = blkno;
5569 jfreefrag->fr_frags = numfrags(fs, size);
5570 jfreefrag->fr_freefrag = freefrag;
5571
5572 return (jfreefrag);
5573 }
5574
5575 /*
5576 * Allocate a new freefrag structure.
5577 */
5578 static struct freefrag *
newfreefrag(ip,blkno,size,lbn,key)5579 newfreefrag(ip, blkno, size, lbn, key)
5580 struct inode *ip;
5581 ufs2_daddr_t blkno;
5582 long size;
5583 ufs_lbn_t lbn;
5584 u_long key;
5585 {
5586 struct freefrag *freefrag;
5587 struct ufsmount *ump;
5588 struct fs *fs;
5589
5590 CTR4(KTR_SUJ, "newfreefrag: ino %d blkno %jd size %ld lbn %jd",
5591 ip->i_number, blkno, size, lbn);
5592 ump = ITOUMP(ip);
5593 fs = ump->um_fs;
5594 if (fragnum(fs, blkno) + numfrags(fs, size) > fs->fs_frag)
5595 panic("newfreefrag: frag size");
5596 freefrag = malloc(sizeof(struct freefrag),
5597 M_FREEFRAG, M_SOFTDEP_FLAGS);
5598 workitem_alloc(&freefrag->ff_list, D_FREEFRAG, UFSTOVFS(ump));
5599 freefrag->ff_state = ATTACHED;
5600 LIST_INIT(&freefrag->ff_jwork);
5601 freefrag->ff_inum = ip->i_number;
5602 freefrag->ff_vtype = ITOV(ip)->v_type;
5603 freefrag->ff_blkno = blkno;
5604 freefrag->ff_fragsize = size;
5605 freefrag->ff_key = key;
5606
5607 if (MOUNTEDSUJ(UFSTOVFS(ump))) {
5608 freefrag->ff_jdep = (struct worklist *)
5609 newjfreefrag(freefrag, ip, blkno, size, lbn);
5610 } else {
5611 freefrag->ff_state |= DEPCOMPLETE;
5612 freefrag->ff_jdep = NULL;
5613 }
5614
5615 return (freefrag);
5616 }
5617
5618 /*
5619 * This workitem de-allocates fragments that were replaced during
5620 * file block allocation.
5621 */
5622 static void
handle_workitem_freefrag(freefrag)5623 handle_workitem_freefrag(freefrag)
5624 struct freefrag *freefrag;
5625 {
5626 struct ufsmount *ump = VFSTOUFS(freefrag->ff_list.wk_mp);
5627 struct workhead wkhd;
5628
5629 CTR3(KTR_SUJ,
5630 "handle_workitem_freefrag: ino %d blkno %jd size %ld",
5631 freefrag->ff_inum, freefrag->ff_blkno, freefrag->ff_fragsize);
5632 /*
5633 * It would be illegal to add new completion items to the
5634 * freefrag after it was schedule to be done so it must be
5635 * safe to modify the list head here.
5636 */
5637 LIST_INIT(&wkhd);
5638 ACQUIRE_LOCK(ump);
5639 LIST_SWAP(&freefrag->ff_jwork, &wkhd, worklist, wk_list);
5640 /*
5641 * If the journal has not been written we must cancel it here.
5642 */
5643 if (freefrag->ff_jdep) {
5644 if (freefrag->ff_jdep->wk_type != D_JNEWBLK)
5645 panic("handle_workitem_freefrag: Unexpected type %d\n",
5646 freefrag->ff_jdep->wk_type);
5647 cancel_jnewblk(WK_JNEWBLK(freefrag->ff_jdep), &wkhd);
5648 }
5649 FREE_LOCK(ump);
5650 ffs_blkfree(ump, ump->um_fs, ump->um_devvp, freefrag->ff_blkno,
5651 freefrag->ff_fragsize, freefrag->ff_inum, freefrag->ff_vtype,
5652 &wkhd, freefrag->ff_key);
5653 ACQUIRE_LOCK(ump);
5654 WORKITEM_FREE(freefrag, D_FREEFRAG);
5655 FREE_LOCK(ump);
5656 }
5657
5658 /*
5659 * Set up a dependency structure for an external attributes data block.
5660 * This routine follows much of the structure of softdep_setup_allocdirect.
5661 * See the description of softdep_setup_allocdirect above for details.
5662 */
5663 void
softdep_setup_allocext(ip,off,newblkno,oldblkno,newsize,oldsize,bp)5664 softdep_setup_allocext(ip, off, newblkno, oldblkno, newsize, oldsize, bp)
5665 struct inode *ip;
5666 ufs_lbn_t off;
5667 ufs2_daddr_t newblkno;
5668 ufs2_daddr_t oldblkno;
5669 long newsize;
5670 long oldsize;
5671 struct buf *bp;
5672 {
5673 struct allocdirect *adp, *oldadp;
5674 struct allocdirectlst *adphead;
5675 struct freefrag *freefrag;
5676 struct inodedep *inodedep;
5677 struct jnewblk *jnewblk;
5678 struct newblk *newblk;
5679 struct mount *mp;
5680 struct ufsmount *ump;
5681 ufs_lbn_t lbn;
5682
5683 mp = ITOVFS(ip);
5684 ump = VFSTOUFS(mp);
5685 KASSERT(MOUNTEDSOFTDEP(mp) != 0,
5686 ("softdep_setup_allocext called on non-softdep filesystem"));
5687 KASSERT(off < UFS_NXADDR,
5688 ("softdep_setup_allocext: lbn %lld > UFS_NXADDR", (long long)off));
5689
5690 lbn = bp->b_lblkno;
5691 if (oldblkno && oldblkno != newblkno)
5692 /*
5693 * The usual case is that a smaller fragment that
5694 * was just allocated has been replaced with a bigger
5695 * fragment or a full-size block. If it is marked as
5696 * B_DELWRI, the current contents have not been written
5697 * to disk. It is possible that the block was written
5698 * earlier, but very uncommon. If the block has never
5699 * been written, there is no need to send a BIO_DELETE
5700 * for it when it is freed. The gain from avoiding the
5701 * TRIMs for the common case of unwritten blocks far
5702 * exceeds the cost of the write amplification for the
5703 * uncommon case of failing to send a TRIM for a block
5704 * that had been written.
5705 */
5706 freefrag = newfreefrag(ip, oldblkno, oldsize, lbn,
5707 (bp->b_flags & B_DELWRI) != 0 ? NOTRIM_KEY : SINGLETON_KEY);
5708 else
5709 freefrag = NULL;
5710
5711 ACQUIRE_LOCK(ump);
5712 if (newblk_lookup(mp, newblkno, 0, &newblk) == 0)
5713 panic("softdep_setup_allocext: lost block");
5714 KASSERT(newblk->nb_list.wk_type == D_NEWBLK,
5715 ("softdep_setup_allocext: newblk already initialized"));
5716 /*
5717 * Convert the newblk to an allocdirect.
5718 */
5719 WORKITEM_REASSIGN(newblk, D_ALLOCDIRECT);
5720 adp = (struct allocdirect *)newblk;
5721 newblk->nb_freefrag = freefrag;
5722 adp->ad_offset = off;
5723 adp->ad_oldblkno = oldblkno;
5724 adp->ad_newsize = newsize;
5725 adp->ad_oldsize = oldsize;
5726 adp->ad_state |= EXTDATA;
5727
5728 /*
5729 * Finish initializing the journal.
5730 */
5731 if ((jnewblk = newblk->nb_jnewblk) != NULL) {
5732 jnewblk->jn_ino = ip->i_number;
5733 jnewblk->jn_lbn = lbn;
5734 add_to_journal(&jnewblk->jn_list);
5735 }
5736 if (freefrag && freefrag->ff_jdep != NULL &&
5737 freefrag->ff_jdep->wk_type == D_JFREEFRAG)
5738 add_to_journal(freefrag->ff_jdep);
5739 inodedep_lookup(mp, ip->i_number, DEPALLOC, &inodedep);
5740 adp->ad_inodedep = inodedep;
5741
5742 WORKLIST_INSERT(&bp->b_dep, &newblk->nb_list);
5743 /*
5744 * The list of allocdirects must be kept in sorted and ascending
5745 * order so that the rollback routines can quickly determine the
5746 * first uncommitted block (the size of the file stored on disk
5747 * ends at the end of the lowest committed fragment, or if there
5748 * are no fragments, at the end of the highest committed block).
5749 * Since files generally grow, the typical case is that the new
5750 * block is to be added at the end of the list. We speed this
5751 * special case by checking against the last allocdirect in the
5752 * list before laboriously traversing the list looking for the
5753 * insertion point.
5754 */
5755 adphead = &inodedep->id_newextupdt;
5756 oldadp = TAILQ_LAST(adphead, allocdirectlst);
5757 if (oldadp == NULL || oldadp->ad_offset <= off) {
5758 /* insert at end of list */
5759 TAILQ_INSERT_TAIL(adphead, adp, ad_next);
5760 if (oldadp != NULL && oldadp->ad_offset == off)
5761 allocdirect_merge(adphead, adp, oldadp);
5762 FREE_LOCK(ump);
5763 return;
5764 }
5765 TAILQ_FOREACH(oldadp, adphead, ad_next) {
5766 if (oldadp->ad_offset >= off)
5767 break;
5768 }
5769 if (oldadp == NULL)
5770 panic("softdep_setup_allocext: lost entry");
5771 /* insert in middle of list */
5772 TAILQ_INSERT_BEFORE(oldadp, adp, ad_next);
5773 if (oldadp->ad_offset == off)
5774 allocdirect_merge(adphead, adp, oldadp);
5775 FREE_LOCK(ump);
5776 }
5777
5778 /*
5779 * Indirect block allocation dependencies.
5780 *
5781 * The same dependencies that exist for a direct block also exist when
5782 * a new block is allocated and pointed to by an entry in a block of
5783 * indirect pointers. The undo/redo states described above are also
5784 * used here. Because an indirect block contains many pointers that
5785 * may have dependencies, a second copy of the entire in-memory indirect
5786 * block is kept. The buffer cache copy is always completely up-to-date.
5787 * The second copy, which is used only as a source for disk writes,
5788 * contains only the safe pointers (i.e., those that have no remaining
5789 * update dependencies). The second copy is freed when all pointers
5790 * are safe. The cache is not allowed to replace indirect blocks with
5791 * pending update dependencies. If a buffer containing an indirect
5792 * block with dependencies is written, these routines will mark it
5793 * dirty again. It can only be successfully written once all the
5794 * dependencies are removed. The ffs_fsync routine in conjunction with
5795 * softdep_sync_metadata work together to get all the dependencies
5796 * removed so that a file can be successfully written to disk. Three
5797 * procedures are used when setting up indirect block pointer
5798 * dependencies. The division is necessary because of the organization
5799 * of the "balloc" routine and because of the distinction between file
5800 * pages and file metadata blocks.
5801 */
5802
5803 /*
5804 * Allocate a new allocindir structure.
5805 */
5806 static struct allocindir *
newallocindir(ip,ptrno,newblkno,oldblkno,lbn)5807 newallocindir(ip, ptrno, newblkno, oldblkno, lbn)
5808 struct inode *ip; /* inode for file being extended */
5809 int ptrno; /* offset of pointer in indirect block */
5810 ufs2_daddr_t newblkno; /* disk block number being added */
5811 ufs2_daddr_t oldblkno; /* previous block number, 0 if none */
5812 ufs_lbn_t lbn;
5813 {
5814 struct newblk *newblk;
5815 struct allocindir *aip;
5816 struct freefrag *freefrag;
5817 struct jnewblk *jnewblk;
5818
5819 if (oldblkno)
5820 freefrag = newfreefrag(ip, oldblkno, ITOFS(ip)->fs_bsize, lbn,
5821 SINGLETON_KEY);
5822 else
5823 freefrag = NULL;
5824 ACQUIRE_LOCK(ITOUMP(ip));
5825 if (newblk_lookup(ITOVFS(ip), newblkno, 0, &newblk) == 0)
5826 panic("new_allocindir: lost block");
5827 KASSERT(newblk->nb_list.wk_type == D_NEWBLK,
5828 ("newallocindir: newblk already initialized"));
5829 WORKITEM_REASSIGN(newblk, D_ALLOCINDIR);
5830 newblk->nb_freefrag = freefrag;
5831 aip = (struct allocindir *)newblk;
5832 aip->ai_offset = ptrno;
5833 aip->ai_oldblkno = oldblkno;
5834 aip->ai_lbn = lbn;
5835 if ((jnewblk = newblk->nb_jnewblk) != NULL) {
5836 jnewblk->jn_ino = ip->i_number;
5837 jnewblk->jn_lbn = lbn;
5838 add_to_journal(&jnewblk->jn_list);
5839 }
5840 if (freefrag && freefrag->ff_jdep != NULL &&
5841 freefrag->ff_jdep->wk_type == D_JFREEFRAG)
5842 add_to_journal(freefrag->ff_jdep);
5843 return (aip);
5844 }
5845
5846 /*
5847 * Called just before setting an indirect block pointer
5848 * to a newly allocated file page.
5849 */
5850 void
softdep_setup_allocindir_page(ip,lbn,bp,ptrno,newblkno,oldblkno,nbp)5851 softdep_setup_allocindir_page(ip, lbn, bp, ptrno, newblkno, oldblkno, nbp)
5852 struct inode *ip; /* inode for file being extended */
5853 ufs_lbn_t lbn; /* allocated block number within file */
5854 struct buf *bp; /* buffer with indirect blk referencing page */
5855 int ptrno; /* offset of pointer in indirect block */
5856 ufs2_daddr_t newblkno; /* disk block number being added */
5857 ufs2_daddr_t oldblkno; /* previous block number, 0 if none */
5858 struct buf *nbp; /* buffer holding allocated page */
5859 {
5860 struct inodedep *inodedep;
5861 struct freefrag *freefrag;
5862 struct allocindir *aip;
5863 struct pagedep *pagedep;
5864 struct mount *mp;
5865 struct ufsmount *ump;
5866
5867 mp = ITOVFS(ip);
5868 ump = VFSTOUFS(mp);
5869 KASSERT(MOUNTEDSOFTDEP(mp) != 0,
5870 ("softdep_setup_allocindir_page called on non-softdep filesystem"));
5871 KASSERT(lbn == nbp->b_lblkno,
5872 ("softdep_setup_allocindir_page: lbn %jd != lblkno %jd",
5873 lbn, bp->b_lblkno));
5874 CTR4(KTR_SUJ,
5875 "softdep_setup_allocindir_page: ino %d blkno %jd oldblkno %jd "
5876 "lbn %jd", ip->i_number, newblkno, oldblkno, lbn);
5877 ASSERT_VOP_LOCKED(ITOV(ip), "softdep_setup_allocindir_page");
5878 aip = newallocindir(ip, ptrno, newblkno, oldblkno, lbn);
5879 (void) inodedep_lookup(mp, ip->i_number, DEPALLOC, &inodedep);
5880 /*
5881 * If we are allocating a directory page, then we must
5882 * allocate an associated pagedep to track additions and
5883 * deletions.
5884 */
5885 if ((ip->i_mode & IFMT) == IFDIR)
5886 pagedep_lookup(mp, nbp, ip->i_number, lbn, DEPALLOC, &pagedep);
5887 WORKLIST_INSERT(&nbp->b_dep, &aip->ai_block.nb_list);
5888 freefrag = setup_allocindir_phase2(bp, ip, inodedep, aip, lbn);
5889 FREE_LOCK(ump);
5890 if (freefrag)
5891 handle_workitem_freefrag(freefrag);
5892 }
5893
5894 /*
5895 * Called just before setting an indirect block pointer to a
5896 * newly allocated indirect block.
5897 */
5898 void
softdep_setup_allocindir_meta(nbp,ip,bp,ptrno,newblkno)5899 softdep_setup_allocindir_meta(nbp, ip, bp, ptrno, newblkno)
5900 struct buf *nbp; /* newly allocated indirect block */
5901 struct inode *ip; /* inode for file being extended */
5902 struct buf *bp; /* indirect block referencing allocated block */
5903 int ptrno; /* offset of pointer in indirect block */
5904 ufs2_daddr_t newblkno; /* disk block number being added */
5905 {
5906 struct inodedep *inodedep;
5907 struct allocindir *aip;
5908 struct ufsmount *ump;
5909 ufs_lbn_t lbn;
5910
5911 ump = ITOUMP(ip);
5912 KASSERT(MOUNTEDSOFTDEP(UFSTOVFS(ump)) != 0,
5913 ("softdep_setup_allocindir_meta called on non-softdep filesystem"));
5914 CTR3(KTR_SUJ,
5915 "softdep_setup_allocindir_meta: ino %d blkno %jd ptrno %d",
5916 ip->i_number, newblkno, ptrno);
5917 lbn = nbp->b_lblkno;
5918 ASSERT_VOP_LOCKED(ITOV(ip), "softdep_setup_allocindir_meta");
5919 aip = newallocindir(ip, ptrno, newblkno, 0, lbn);
5920 inodedep_lookup(UFSTOVFS(ump), ip->i_number, DEPALLOC, &inodedep);
5921 WORKLIST_INSERT(&nbp->b_dep, &aip->ai_block.nb_list);
5922 if (setup_allocindir_phase2(bp, ip, inodedep, aip, lbn))
5923 panic("softdep_setup_allocindir_meta: Block already existed");
5924 FREE_LOCK(ump);
5925 }
5926
5927 static void
indirdep_complete(indirdep)5928 indirdep_complete(indirdep)
5929 struct indirdep *indirdep;
5930 {
5931 struct allocindir *aip;
5932
5933 LIST_REMOVE(indirdep, ir_next);
5934 indirdep->ir_state |= DEPCOMPLETE;
5935
5936 while ((aip = LIST_FIRST(&indirdep->ir_completehd)) != NULL) {
5937 LIST_REMOVE(aip, ai_next);
5938 free_newblk(&aip->ai_block);
5939 }
5940 /*
5941 * If this indirdep is not attached to a buf it was simply waiting
5942 * on completion to clear completehd. free_indirdep() asserts
5943 * that nothing is dangling.
5944 */
5945 if ((indirdep->ir_state & ONWORKLIST) == 0)
5946 free_indirdep(indirdep);
5947 }
5948
5949 static struct indirdep *
indirdep_lookup(mp,ip,bp)5950 indirdep_lookup(mp, ip, bp)
5951 struct mount *mp;
5952 struct inode *ip;
5953 struct buf *bp;
5954 {
5955 struct indirdep *indirdep, *newindirdep;
5956 struct newblk *newblk;
5957 struct ufsmount *ump;
5958 struct worklist *wk;
5959 struct fs *fs;
5960 ufs2_daddr_t blkno;
5961
5962 ump = VFSTOUFS(mp);
5963 LOCK_OWNED(ump);
5964 indirdep = NULL;
5965 newindirdep = NULL;
5966 fs = ump->um_fs;
5967 for (;;) {
5968 LIST_FOREACH(wk, &bp->b_dep, wk_list) {
5969 if (wk->wk_type != D_INDIRDEP)
5970 continue;
5971 indirdep = WK_INDIRDEP(wk);
5972 break;
5973 }
5974 /* Found on the buffer worklist, no new structure to free. */
5975 if (indirdep != NULL && newindirdep == NULL)
5976 return (indirdep);
5977 if (indirdep != NULL && newindirdep != NULL)
5978 panic("indirdep_lookup: simultaneous create");
5979 /* None found on the buffer and a new structure is ready. */
5980 if (indirdep == NULL && newindirdep != NULL)
5981 break;
5982 /* None found and no new structure available. */
5983 FREE_LOCK(ump);
5984 newindirdep = malloc(sizeof(struct indirdep),
5985 M_INDIRDEP, M_SOFTDEP_FLAGS);
5986 workitem_alloc(&newindirdep->ir_list, D_INDIRDEP, mp);
5987 newindirdep->ir_state = ATTACHED;
5988 if (I_IS_UFS1(ip))
5989 newindirdep->ir_state |= UFS1FMT;
5990 TAILQ_INIT(&newindirdep->ir_trunc);
5991 newindirdep->ir_saveddata = NULL;
5992 LIST_INIT(&newindirdep->ir_deplisthd);
5993 LIST_INIT(&newindirdep->ir_donehd);
5994 LIST_INIT(&newindirdep->ir_writehd);
5995 LIST_INIT(&newindirdep->ir_completehd);
5996 if (bp->b_blkno == bp->b_lblkno) {
5997 ufs_bmaparray(bp->b_vp, bp->b_lblkno, &blkno, bp,
5998 NULL, NULL);
5999 bp->b_blkno = blkno;
6000 }
6001 newindirdep->ir_freeblks = NULL;
6002 newindirdep->ir_savebp =
6003 getblk(ump->um_devvp, bp->b_blkno, bp->b_bcount, 0, 0, 0);
6004 newindirdep->ir_bp = bp;
6005 BUF_KERNPROC(newindirdep->ir_savebp);
6006 bcopy(bp->b_data, newindirdep->ir_savebp->b_data, bp->b_bcount);
6007 ACQUIRE_LOCK(ump);
6008 }
6009 indirdep = newindirdep;
6010 WORKLIST_INSERT(&bp->b_dep, &indirdep->ir_list);
6011 /*
6012 * If the block is not yet allocated we don't set DEPCOMPLETE so
6013 * that we don't free dependencies until the pointers are valid.
6014 * This could search b_dep for D_ALLOCDIRECT/D_ALLOCINDIR rather
6015 * than using the hash.
6016 */
6017 if (newblk_lookup(mp, dbtofsb(fs, bp->b_blkno), 0, &newblk))
6018 LIST_INSERT_HEAD(&newblk->nb_indirdeps, indirdep, ir_next);
6019 else
6020 indirdep->ir_state |= DEPCOMPLETE;
6021 return (indirdep);
6022 }
6023
6024 /*
6025 * Called to finish the allocation of the "aip" allocated
6026 * by one of the two routines above.
6027 */
6028 static struct freefrag *
setup_allocindir_phase2(bp,ip,inodedep,aip,lbn)6029 setup_allocindir_phase2(bp, ip, inodedep, aip, lbn)
6030 struct buf *bp; /* in-memory copy of the indirect block */
6031 struct inode *ip; /* inode for file being extended */
6032 struct inodedep *inodedep; /* Inodedep for ip */
6033 struct allocindir *aip; /* allocindir allocated by the above routines */
6034 ufs_lbn_t lbn; /* Logical block number for this block. */
6035 {
6036 struct fs *fs;
6037 struct indirdep *indirdep;
6038 struct allocindir *oldaip;
6039 struct freefrag *freefrag;
6040 struct mount *mp;
6041 struct ufsmount *ump;
6042
6043 mp = ITOVFS(ip);
6044 ump = VFSTOUFS(mp);
6045 LOCK_OWNED(ump);
6046 fs = ump->um_fs;
6047 if (bp->b_lblkno >= 0)
6048 panic("setup_allocindir_phase2: not indir blk");
6049 KASSERT(aip->ai_offset >= 0 && aip->ai_offset < NINDIR(fs),
6050 ("setup_allocindir_phase2: Bad offset %d", aip->ai_offset));
6051 indirdep = indirdep_lookup(mp, ip, bp);
6052 KASSERT(indirdep->ir_savebp != NULL,
6053 ("setup_allocindir_phase2 NULL ir_savebp"));
6054 aip->ai_indirdep = indirdep;
6055 /*
6056 * Check for an unwritten dependency for this indirect offset. If
6057 * there is, merge the old dependency into the new one. This happens
6058 * as a result of reallocblk only.
6059 */
6060 freefrag = NULL;
6061 if (aip->ai_oldblkno != 0) {
6062 LIST_FOREACH(oldaip, &indirdep->ir_deplisthd, ai_next) {
6063 if (oldaip->ai_offset == aip->ai_offset) {
6064 freefrag = allocindir_merge(aip, oldaip);
6065 goto done;
6066 }
6067 }
6068 LIST_FOREACH(oldaip, &indirdep->ir_donehd, ai_next) {
6069 if (oldaip->ai_offset == aip->ai_offset) {
6070 freefrag = allocindir_merge(aip, oldaip);
6071 goto done;
6072 }
6073 }
6074 }
6075 done:
6076 LIST_INSERT_HEAD(&indirdep->ir_deplisthd, aip, ai_next);
6077 return (freefrag);
6078 }
6079
6080 /*
6081 * Merge two allocindirs which refer to the same block. Move newblock
6082 * dependencies and setup the freefrags appropriately.
6083 */
6084 static struct freefrag *
allocindir_merge(aip,oldaip)6085 allocindir_merge(aip, oldaip)
6086 struct allocindir *aip;
6087 struct allocindir *oldaip;
6088 {
6089 struct freefrag *freefrag;
6090 struct worklist *wk;
6091
6092 if (oldaip->ai_newblkno != aip->ai_oldblkno)
6093 panic("allocindir_merge: blkno");
6094 aip->ai_oldblkno = oldaip->ai_oldblkno;
6095 freefrag = aip->ai_freefrag;
6096 aip->ai_freefrag = oldaip->ai_freefrag;
6097 oldaip->ai_freefrag = NULL;
6098 KASSERT(freefrag != NULL, ("setup_allocindir_phase2: No freefrag"));
6099 /*
6100 * If we are tracking a new directory-block allocation,
6101 * move it from the old allocindir to the new allocindir.
6102 */
6103 if ((wk = LIST_FIRST(&oldaip->ai_newdirblk)) != NULL) {
6104 WORKLIST_REMOVE(wk);
6105 if (!LIST_EMPTY(&oldaip->ai_newdirblk))
6106 panic("allocindir_merge: extra newdirblk");
6107 WORKLIST_INSERT(&aip->ai_newdirblk, wk);
6108 }
6109 /*
6110 * We can skip journaling for this freefrag and just complete
6111 * any pending journal work for the allocindir that is being
6112 * removed after the freefrag completes.
6113 */
6114 if (freefrag->ff_jdep)
6115 cancel_jfreefrag(WK_JFREEFRAG(freefrag->ff_jdep));
6116 LIST_REMOVE(oldaip, ai_next);
6117 freefrag->ff_jdep = (struct worklist *)cancel_newblk(&oldaip->ai_block,
6118 &freefrag->ff_list, &freefrag->ff_jwork);
6119 free_newblk(&oldaip->ai_block);
6120
6121 return (freefrag);
6122 }
6123
6124 static inline void
setup_freedirect(freeblks,ip,i,needj)6125 setup_freedirect(freeblks, ip, i, needj)
6126 struct freeblks *freeblks;
6127 struct inode *ip;
6128 int i;
6129 int needj;
6130 {
6131 struct ufsmount *ump;
6132 ufs2_daddr_t blkno;
6133 int frags;
6134
6135 blkno = DIP(ip, i_db[i]);
6136 if (blkno == 0)
6137 return;
6138 DIP_SET(ip, i_db[i], 0);
6139 ump = ITOUMP(ip);
6140 frags = sblksize(ump->um_fs, ip->i_size, i);
6141 frags = numfrags(ump->um_fs, frags);
6142 newfreework(ump, freeblks, NULL, i, blkno, frags, 0, needj);
6143 }
6144
6145 static inline void
setup_freeext(freeblks,ip,i,needj)6146 setup_freeext(freeblks, ip, i, needj)
6147 struct freeblks *freeblks;
6148 struct inode *ip;
6149 int i;
6150 int needj;
6151 {
6152 struct ufsmount *ump;
6153 ufs2_daddr_t blkno;
6154 int frags;
6155
6156 blkno = ip->i_din2->di_extb[i];
6157 if (blkno == 0)
6158 return;
6159 ip->i_din2->di_extb[i] = 0;
6160 ump = ITOUMP(ip);
6161 frags = sblksize(ump->um_fs, ip->i_din2->di_extsize, i);
6162 frags = numfrags(ump->um_fs, frags);
6163 newfreework(ump, freeblks, NULL, -1 - i, blkno, frags, 0, needj);
6164 }
6165
6166 static inline void
setup_freeindir(freeblks,ip,i,lbn,needj)6167 setup_freeindir(freeblks, ip, i, lbn, needj)
6168 struct freeblks *freeblks;
6169 struct inode *ip;
6170 int i;
6171 ufs_lbn_t lbn;
6172 int needj;
6173 {
6174 struct ufsmount *ump;
6175 ufs2_daddr_t blkno;
6176
6177 blkno = DIP(ip, i_ib[i]);
6178 if (blkno == 0)
6179 return;
6180 DIP_SET(ip, i_ib[i], 0);
6181 ump = ITOUMP(ip);
6182 newfreework(ump, freeblks, NULL, lbn, blkno, ump->um_fs->fs_frag,
6183 0, needj);
6184 }
6185
6186 static inline struct freeblks *
newfreeblks(mp,ip)6187 newfreeblks(mp, ip)
6188 struct mount *mp;
6189 struct inode *ip;
6190 {
6191 struct freeblks *freeblks;
6192
6193 freeblks = malloc(sizeof(struct freeblks),
6194 M_FREEBLKS, M_SOFTDEP_FLAGS|M_ZERO);
6195 workitem_alloc(&freeblks->fb_list, D_FREEBLKS, mp);
6196 LIST_INIT(&freeblks->fb_jblkdephd);
6197 LIST_INIT(&freeblks->fb_jwork);
6198 freeblks->fb_ref = 0;
6199 freeblks->fb_cgwait = 0;
6200 freeblks->fb_state = ATTACHED;
6201 freeblks->fb_uid = ip->i_uid;
6202 freeblks->fb_inum = ip->i_number;
6203 freeblks->fb_vtype = ITOV(ip)->v_type;
6204 freeblks->fb_modrev = DIP(ip, i_modrev);
6205 freeblks->fb_devvp = ITODEVVP(ip);
6206 freeblks->fb_chkcnt = 0;
6207 freeblks->fb_len = 0;
6208
6209 return (freeblks);
6210 }
6211
6212 static void
trunc_indirdep(indirdep,freeblks,bp,off)6213 trunc_indirdep(indirdep, freeblks, bp, off)
6214 struct indirdep *indirdep;
6215 struct freeblks *freeblks;
6216 struct buf *bp;
6217 int off;
6218 {
6219 struct allocindir *aip, *aipn;
6220
6221 /*
6222 * The first set of allocindirs won't be in savedbp.
6223 */
6224 LIST_FOREACH_SAFE(aip, &indirdep->ir_deplisthd, ai_next, aipn)
6225 if (aip->ai_offset > off)
6226 cancel_allocindir(aip, bp, freeblks, 1);
6227 LIST_FOREACH_SAFE(aip, &indirdep->ir_donehd, ai_next, aipn)
6228 if (aip->ai_offset > off)
6229 cancel_allocindir(aip, bp, freeblks, 1);
6230 /*
6231 * These will exist in savedbp.
6232 */
6233 LIST_FOREACH_SAFE(aip, &indirdep->ir_writehd, ai_next, aipn)
6234 if (aip->ai_offset > off)
6235 cancel_allocindir(aip, NULL, freeblks, 0);
6236 LIST_FOREACH_SAFE(aip, &indirdep->ir_completehd, ai_next, aipn)
6237 if (aip->ai_offset > off)
6238 cancel_allocindir(aip, NULL, freeblks, 0);
6239 }
6240
6241 /*
6242 * Follow the chain of indirects down to lastlbn creating a freework
6243 * structure for each. This will be used to start indir_trunc() at
6244 * the right offset and create the journal records for the parrtial
6245 * truncation. A second step will handle the truncated dependencies.
6246 */
6247 static int
setup_trunc_indir(freeblks,ip,lbn,lastlbn,blkno)6248 setup_trunc_indir(freeblks, ip, lbn, lastlbn, blkno)
6249 struct freeblks *freeblks;
6250 struct inode *ip;
6251 ufs_lbn_t lbn;
6252 ufs_lbn_t lastlbn;
6253 ufs2_daddr_t blkno;
6254 {
6255 struct indirdep *indirdep;
6256 struct indirdep *indirn;
6257 struct freework *freework;
6258 struct newblk *newblk;
6259 struct mount *mp;
6260 struct ufsmount *ump;
6261 struct buf *bp;
6262 uint8_t *start;
6263 uint8_t *end;
6264 ufs_lbn_t lbnadd;
6265 int level;
6266 int error;
6267 int off;
6268
6269
6270 freework = NULL;
6271 if (blkno == 0)
6272 return (0);
6273 mp = freeblks->fb_list.wk_mp;
6274 ump = VFSTOUFS(mp);
6275 bp = getblk(ITOV(ip), lbn, mp->mnt_stat.f_iosize, 0, 0, 0);
6276 if ((bp->b_flags & B_CACHE) == 0) {
6277 bp->b_blkno = blkptrtodb(VFSTOUFS(mp), blkno);
6278 bp->b_iocmd = BIO_READ;
6279 bp->b_flags &= ~B_INVAL;
6280 bp->b_ioflags &= ~BIO_ERROR;
6281 vfs_busy_pages(bp, 0);
6282 bp->b_iooffset = dbtob(bp->b_blkno);
6283 bstrategy(bp);
6284 #ifdef RACCT
6285 if (racct_enable) {
6286 PROC_LOCK(curproc);
6287 racct_add_buf(curproc, bp, 0);
6288 PROC_UNLOCK(curproc);
6289 }
6290 #endif /* RACCT */
6291 curthread->td_ru.ru_inblock++;
6292 error = bufwait(bp);
6293 if (error) {
6294 brelse(bp);
6295 return (error);
6296 }
6297 }
6298 level = lbn_level(lbn);
6299 lbnadd = lbn_offset(ump->um_fs, level);
6300 /*
6301 * Compute the offset of the last block we want to keep. Store
6302 * in the freework the first block we want to completely free.
6303 */
6304 off = (lastlbn - -(lbn + level)) / lbnadd;
6305 if (off + 1 == NINDIR(ump->um_fs))
6306 goto nowork;
6307 freework = newfreework(ump, freeblks, NULL, lbn, blkno, 0, off + 1, 0);
6308 /*
6309 * Link the freework into the indirdep. This will prevent any new
6310 * allocations from proceeding until we are finished with the
6311 * truncate and the block is written.
6312 */
6313 ACQUIRE_LOCK(ump);
6314 indirdep = indirdep_lookup(mp, ip, bp);
6315 if (indirdep->ir_freeblks)
6316 panic("setup_trunc_indir: indirdep already truncated.");
6317 TAILQ_INSERT_TAIL(&indirdep->ir_trunc, freework, fw_next);
6318 freework->fw_indir = indirdep;
6319 /*
6320 * Cancel any allocindirs that will not make it to disk.
6321 * We have to do this for all copies of the indirdep that
6322 * live on this newblk.
6323 */
6324 if ((indirdep->ir_state & DEPCOMPLETE) == 0) {
6325 if (newblk_lookup(mp, dbtofsb(ump->um_fs, bp->b_blkno), 0,
6326 &newblk) == 0)
6327 panic("setup_trunc_indir: lost block");
6328 LIST_FOREACH(indirn, &newblk->nb_indirdeps, ir_next)
6329 trunc_indirdep(indirn, freeblks, bp, off);
6330 } else
6331 trunc_indirdep(indirdep, freeblks, bp, off);
6332 FREE_LOCK(ump);
6333 /*
6334 * Creation is protected by the buf lock. The saveddata is only
6335 * needed if a full truncation follows a partial truncation but it
6336 * is difficult to allocate in that case so we fetch it anyway.
6337 */
6338 if (indirdep->ir_saveddata == NULL)
6339 indirdep->ir_saveddata = malloc(bp->b_bcount, M_INDIRDEP,
6340 M_SOFTDEP_FLAGS);
6341 nowork:
6342 /* Fetch the blkno of the child and the zero start offset. */
6343 if (I_IS_UFS1(ip)) {
6344 blkno = ((ufs1_daddr_t *)bp->b_data)[off];
6345 start = (uint8_t *)&((ufs1_daddr_t *)bp->b_data)[off+1];
6346 } else {
6347 blkno = ((ufs2_daddr_t *)bp->b_data)[off];
6348 start = (uint8_t *)&((ufs2_daddr_t *)bp->b_data)[off+1];
6349 }
6350 if (freework) {
6351 /* Zero the truncated pointers. */
6352 end = bp->b_data + bp->b_bcount;
6353 bzero(start, end - start);
6354 bdwrite(bp);
6355 } else
6356 bqrelse(bp);
6357 if (level == 0)
6358 return (0);
6359 lbn++; /* adjust level */
6360 lbn -= (off * lbnadd);
6361 return setup_trunc_indir(freeblks, ip, lbn, lastlbn, blkno);
6362 }
6363
6364 /*
6365 * Complete the partial truncation of an indirect block setup by
6366 * setup_trunc_indir(). This zeros the truncated pointers in the saved
6367 * copy and writes them to disk before the freeblks is allowed to complete.
6368 */
6369 static void
complete_trunc_indir(freework)6370 complete_trunc_indir(freework)
6371 struct freework *freework;
6372 {
6373 struct freework *fwn;
6374 struct indirdep *indirdep;
6375 struct ufsmount *ump;
6376 struct buf *bp;
6377 uintptr_t start;
6378 int count;
6379
6380 ump = VFSTOUFS(freework->fw_list.wk_mp);
6381 LOCK_OWNED(ump);
6382 indirdep = freework->fw_indir;
6383 for (;;) {
6384 bp = indirdep->ir_bp;
6385 /* See if the block was discarded. */
6386 if (bp == NULL)
6387 break;
6388 /* Inline part of getdirtybuf(). We dont want bremfree. */
6389 if (BUF_LOCK(bp, LK_EXCLUSIVE | LK_NOWAIT, NULL) == 0)
6390 break;
6391 if (BUF_LOCK(bp, LK_EXCLUSIVE | LK_SLEEPFAIL | LK_INTERLOCK,
6392 LOCK_PTR(ump)) == 0)
6393 BUF_UNLOCK(bp);
6394 ACQUIRE_LOCK(ump);
6395 }
6396 freework->fw_state |= DEPCOMPLETE;
6397 TAILQ_REMOVE(&indirdep->ir_trunc, freework, fw_next);
6398 /*
6399 * Zero the pointers in the saved copy.
6400 */
6401 if (indirdep->ir_state & UFS1FMT)
6402 start = sizeof(ufs1_daddr_t);
6403 else
6404 start = sizeof(ufs2_daddr_t);
6405 start *= freework->fw_start;
6406 count = indirdep->ir_savebp->b_bcount - start;
6407 start += (uintptr_t)indirdep->ir_savebp->b_data;
6408 bzero((char *)start, count);
6409 /*
6410 * We need to start the next truncation in the list if it has not
6411 * been started yet.
6412 */
6413 fwn = TAILQ_FIRST(&indirdep->ir_trunc);
6414 if (fwn != NULL) {
6415 if (fwn->fw_freeblks == indirdep->ir_freeblks)
6416 TAILQ_REMOVE(&indirdep->ir_trunc, fwn, fw_next);
6417 if ((fwn->fw_state & ONWORKLIST) == 0)
6418 freework_enqueue(fwn);
6419 }
6420 /*
6421 * If bp is NULL the block was fully truncated, restore
6422 * the saved block list otherwise free it if it is no
6423 * longer needed.
6424 */
6425 if (TAILQ_EMPTY(&indirdep->ir_trunc)) {
6426 if (bp == NULL)
6427 bcopy(indirdep->ir_saveddata,
6428 indirdep->ir_savebp->b_data,
6429 indirdep->ir_savebp->b_bcount);
6430 free(indirdep->ir_saveddata, M_INDIRDEP);
6431 indirdep->ir_saveddata = NULL;
6432 }
6433 /*
6434 * When bp is NULL there is a full truncation pending. We
6435 * must wait for this full truncation to be journaled before
6436 * we can release this freework because the disk pointers will
6437 * never be written as zero.
6438 */
6439 if (bp == NULL) {
6440 if (LIST_EMPTY(&indirdep->ir_freeblks->fb_jblkdephd))
6441 handle_written_freework(freework);
6442 else
6443 WORKLIST_INSERT(&indirdep->ir_freeblks->fb_freeworkhd,
6444 &freework->fw_list);
6445 } else {
6446 /* Complete when the real copy is written. */
6447 WORKLIST_INSERT(&bp->b_dep, &freework->fw_list);
6448 BUF_UNLOCK(bp);
6449 }
6450 }
6451
6452 /*
6453 * Calculate the number of blocks we are going to release where datablocks
6454 * is the current total and length is the new file size.
6455 */
6456 static ufs2_daddr_t
blkcount(fs,datablocks,length)6457 blkcount(fs, datablocks, length)
6458 struct fs *fs;
6459 ufs2_daddr_t datablocks;
6460 off_t length;
6461 {
6462 off_t totblks, numblks;
6463
6464 totblks = 0;
6465 numblks = howmany(length, fs->fs_bsize);
6466 if (numblks <= UFS_NDADDR) {
6467 totblks = howmany(length, fs->fs_fsize);
6468 goto out;
6469 }
6470 totblks = blkstofrags(fs, numblks);
6471 numblks -= UFS_NDADDR;
6472 /*
6473 * Count all single, then double, then triple indirects required.
6474 * Subtracting one indirects worth of blocks for each pass
6475 * acknowledges one of each pointed to by the inode.
6476 */
6477 for (;;) {
6478 totblks += blkstofrags(fs, howmany(numblks, NINDIR(fs)));
6479 numblks -= NINDIR(fs);
6480 if (numblks <= 0)
6481 break;
6482 numblks = howmany(numblks, NINDIR(fs));
6483 }
6484 out:
6485 totblks = fsbtodb(fs, totblks);
6486 /*
6487 * Handle sparse files. We can't reclaim more blocks than the inode
6488 * references. We will correct it later in handle_complete_freeblks()
6489 * when we know the real count.
6490 */
6491 if (totblks > datablocks)
6492 return (0);
6493 return (datablocks - totblks);
6494 }
6495
6496 /*
6497 * Handle freeblocks for journaled softupdate filesystems.
6498 *
6499 * Contrary to normal softupdates, we must preserve the block pointers in
6500 * indirects until their subordinates are free. This is to avoid journaling
6501 * every block that is freed which may consume more space than the journal
6502 * itself. The recovery program will see the free block journals at the
6503 * base of the truncated area and traverse them to reclaim space. The
6504 * pointers in the inode may be cleared immediately after the journal
6505 * records are written because each direct and indirect pointer in the
6506 * inode is recorded in a journal. This permits full truncation to proceed
6507 * asynchronously. The write order is journal -> inode -> cgs -> indirects.
6508 *
6509 * The algorithm is as follows:
6510 * 1) Traverse the in-memory state and create journal entries to release
6511 * the relevant blocks and full indirect trees.
6512 * 2) Traverse the indirect block chain adding partial truncation freework
6513 * records to indirects in the path to lastlbn. The freework will
6514 * prevent new allocation dependencies from being satisfied in this
6515 * indirect until the truncation completes.
6516 * 3) Read and lock the inode block, performing an update with the new size
6517 * and pointers. This prevents truncated data from becoming valid on
6518 * disk through step 4.
6519 * 4) Reap unsatisfied dependencies that are beyond the truncated area,
6520 * eliminate journal work for those records that do not require it.
6521 * 5) Schedule the journal records to be written followed by the inode block.
6522 * 6) Allocate any necessary frags for the end of file.
6523 * 7) Zero any partially truncated blocks.
6524 *
6525 * From this truncation proceeds asynchronously using the freework and
6526 * indir_trunc machinery. The file will not be extended again into a
6527 * partially truncated indirect block until all work is completed but
6528 * the normal dependency mechanism ensures that it is rolled back/forward
6529 * as appropriate. Further truncation may occur without delay and is
6530 * serialized in indir_trunc().
6531 */
6532 void
softdep_journal_freeblocks(ip,cred,length,flags)6533 softdep_journal_freeblocks(ip, cred, length, flags)
6534 struct inode *ip; /* The inode whose length is to be reduced */
6535 struct ucred *cred;
6536 off_t length; /* The new length for the file */
6537 int flags; /* IO_EXT and/or IO_NORMAL */
6538 {
6539 struct freeblks *freeblks, *fbn;
6540 struct worklist *wk, *wkn;
6541 struct inodedep *inodedep;
6542 struct jblkdep *jblkdep;
6543 struct allocdirect *adp, *adpn;
6544 struct ufsmount *ump;
6545 struct fs *fs;
6546 struct buf *bp;
6547 struct vnode *vp;
6548 struct mount *mp;
6549 ufs2_daddr_t extblocks, datablocks;
6550 ufs_lbn_t tmpval, lbn, lastlbn;
6551 int frags, lastoff, iboff, allocblock, needj, error, i;
6552
6553 ump = ITOUMP(ip);
6554 mp = UFSTOVFS(ump);
6555 fs = ump->um_fs;
6556 KASSERT(MOUNTEDSOFTDEP(mp) != 0,
6557 ("softdep_journal_freeblocks called on non-softdep filesystem"));
6558 vp = ITOV(ip);
6559 needj = 1;
6560 iboff = -1;
6561 allocblock = 0;
6562 extblocks = 0;
6563 datablocks = 0;
6564 frags = 0;
6565 freeblks = newfreeblks(mp, ip);
6566 ACQUIRE_LOCK(ump);
6567 /*
6568 * If we're truncating a removed file that will never be written
6569 * we don't need to journal the block frees. The canceled journals
6570 * for the allocations will suffice.
6571 */
6572 inodedep_lookup(mp, ip->i_number, DEPALLOC, &inodedep);
6573 if ((inodedep->id_state & (UNLINKED | DEPCOMPLETE)) == UNLINKED &&
6574 length == 0)
6575 needj = 0;
6576 CTR3(KTR_SUJ, "softdep_journal_freeblks: ip %d length %ld needj %d",
6577 ip->i_number, length, needj);
6578 FREE_LOCK(ump);
6579 /*
6580 * Calculate the lbn that we are truncating to. This results in -1
6581 * if we're truncating the 0 bytes. So it is the last lbn we want
6582 * to keep, not the first lbn we want to truncate.
6583 */
6584 lastlbn = lblkno(fs, length + fs->fs_bsize - 1) - 1;
6585 lastoff = blkoff(fs, length);
6586 /*
6587 * Compute frags we are keeping in lastlbn. 0 means all.
6588 */
6589 if (lastlbn >= 0 && lastlbn < UFS_NDADDR) {
6590 frags = fragroundup(fs, lastoff);
6591 /* adp offset of last valid allocdirect. */
6592 iboff = lastlbn;
6593 } else if (lastlbn > 0)
6594 iboff = UFS_NDADDR;
6595 if (fs->fs_magic == FS_UFS2_MAGIC)
6596 extblocks = btodb(fragroundup(fs, ip->i_din2->di_extsize));
6597 /*
6598 * Handle normal data blocks and indirects. This section saves
6599 * values used after the inode update to complete frag and indirect
6600 * truncation.
6601 */
6602 if ((flags & IO_NORMAL) != 0) {
6603 /*
6604 * Handle truncation of whole direct and indirect blocks.
6605 */
6606 for (i = iboff + 1; i < UFS_NDADDR; i++)
6607 setup_freedirect(freeblks, ip, i, needj);
6608 for (i = 0, tmpval = NINDIR(fs), lbn = UFS_NDADDR;
6609 i < UFS_NIADDR;
6610 i++, lbn += tmpval, tmpval *= NINDIR(fs)) {
6611 /* Release a whole indirect tree. */
6612 if (lbn > lastlbn) {
6613 setup_freeindir(freeblks, ip, i, -lbn -i,
6614 needj);
6615 continue;
6616 }
6617 iboff = i + UFS_NDADDR;
6618 /*
6619 * Traverse partially truncated indirect tree.
6620 */
6621 if (lbn <= lastlbn && lbn + tmpval - 1 > lastlbn)
6622 setup_trunc_indir(freeblks, ip, -lbn - i,
6623 lastlbn, DIP(ip, i_ib[i]));
6624 }
6625 /*
6626 * Handle partial truncation to a frag boundary.
6627 */
6628 if (frags) {
6629 ufs2_daddr_t blkno;
6630 long oldfrags;
6631
6632 oldfrags = blksize(fs, ip, lastlbn);
6633 blkno = DIP(ip, i_db[lastlbn]);
6634 if (blkno && oldfrags != frags) {
6635 oldfrags -= frags;
6636 oldfrags = numfrags(fs, oldfrags);
6637 blkno += numfrags(fs, frags);
6638 newfreework(ump, freeblks, NULL, lastlbn,
6639 blkno, oldfrags, 0, needj);
6640 if (needj)
6641 adjust_newfreework(freeblks,
6642 numfrags(fs, frags));
6643 } else if (blkno == 0)
6644 allocblock = 1;
6645 }
6646 /*
6647 * Add a journal record for partial truncate if we are
6648 * handling indirect blocks. Non-indirects need no extra
6649 * journaling.
6650 */
6651 if (length != 0 && lastlbn >= UFS_NDADDR) {
6652 ip->i_flag |= IN_TRUNCATED;
6653 newjtrunc(freeblks, length, 0);
6654 }
6655 ip->i_size = length;
6656 DIP_SET(ip, i_size, ip->i_size);
6657 datablocks = DIP(ip, i_blocks) - extblocks;
6658 if (length != 0)
6659 datablocks = blkcount(fs, datablocks, length);
6660 freeblks->fb_len = length;
6661 }
6662 if ((flags & IO_EXT) != 0) {
6663 for (i = 0; i < UFS_NXADDR; i++)
6664 setup_freeext(freeblks, ip, i, needj);
6665 ip->i_din2->di_extsize = 0;
6666 datablocks += extblocks;
6667 }
6668 #ifdef QUOTA
6669 /* Reference the quotas in case the block count is wrong in the end. */
6670 quotaref(vp, freeblks->fb_quota);
6671 (void) chkdq(ip, -datablocks, NOCRED, FORCE);
6672 #endif
6673 freeblks->fb_chkcnt = -datablocks;
6674 UFS_LOCK(ump);
6675 fs->fs_pendingblocks += datablocks;
6676 UFS_UNLOCK(ump);
6677 DIP_SET(ip, i_blocks, DIP(ip, i_blocks) - datablocks);
6678 /*
6679 * Handle truncation of incomplete alloc direct dependencies. We
6680 * hold the inode block locked to prevent incomplete dependencies
6681 * from reaching the disk while we are eliminating those that
6682 * have been truncated. This is a partially inlined ffs_update().
6683 */
6684 ufs_itimes(vp);
6685 ip->i_flag &= ~(IN_LAZYACCESS | IN_LAZYMOD | IN_MODIFIED);
6686 error = bread(ump->um_devvp, fsbtodb(fs, ino_to_fsba(fs, ip->i_number)),
6687 (int)fs->fs_bsize, cred, &bp);
6688 if (error) {
6689 brelse(bp);
6690 softdep_error("softdep_journal_freeblocks", error);
6691 return;
6692 }
6693 if (bp->b_bufsize == fs->fs_bsize)
6694 bp->b_flags |= B_CLUSTEROK;
6695 softdep_update_inodeblock(ip, bp, 0);
6696 if (ump->um_fstype == UFS1)
6697 *((struct ufs1_dinode *)bp->b_data +
6698 ino_to_fsbo(fs, ip->i_number)) = *ip->i_din1;
6699 else
6700 *((struct ufs2_dinode *)bp->b_data +
6701 ino_to_fsbo(fs, ip->i_number)) = *ip->i_din2;
6702 ACQUIRE_LOCK(ump);
6703 (void) inodedep_lookup(mp, ip->i_number, DEPALLOC, &inodedep);
6704 if ((inodedep->id_state & IOSTARTED) != 0)
6705 panic("softdep_setup_freeblocks: inode busy");
6706 /*
6707 * Add the freeblks structure to the list of operations that
6708 * must await the zero'ed inode being written to disk. If we
6709 * still have a bitmap dependency (needj), then the inode
6710 * has never been written to disk, so we can process the
6711 * freeblks below once we have deleted the dependencies.
6712 */
6713 if (needj)
6714 WORKLIST_INSERT(&bp->b_dep, &freeblks->fb_list);
6715 else
6716 freeblks->fb_state |= COMPLETE;
6717 if ((flags & IO_NORMAL) != 0) {
6718 TAILQ_FOREACH_SAFE(adp, &inodedep->id_inoupdt, ad_next, adpn) {
6719 if (adp->ad_offset > iboff)
6720 cancel_allocdirect(&inodedep->id_inoupdt, adp,
6721 freeblks);
6722 /*
6723 * Truncate the allocdirect. We could eliminate
6724 * or modify journal records as well.
6725 */
6726 else if (adp->ad_offset == iboff && frags)
6727 adp->ad_newsize = frags;
6728 }
6729 }
6730 if ((flags & IO_EXT) != 0)
6731 while ((adp = TAILQ_FIRST(&inodedep->id_extupdt)) != NULL)
6732 cancel_allocdirect(&inodedep->id_extupdt, adp,
6733 freeblks);
6734 /*
6735 * Scan the bufwait list for newblock dependencies that will never
6736 * make it to disk.
6737 */
6738 LIST_FOREACH_SAFE(wk, &inodedep->id_bufwait, wk_list, wkn) {
6739 if (wk->wk_type != D_ALLOCDIRECT)
6740 continue;
6741 adp = WK_ALLOCDIRECT(wk);
6742 if (((flags & IO_NORMAL) != 0 && (adp->ad_offset > iboff)) ||
6743 ((flags & IO_EXT) != 0 && (adp->ad_state & EXTDATA))) {
6744 cancel_jfreeblk(freeblks, adp->ad_newblkno);
6745 cancel_newblk(WK_NEWBLK(wk), NULL, &freeblks->fb_jwork);
6746 WORKLIST_INSERT(&freeblks->fb_freeworkhd, wk);
6747 }
6748 }
6749 /*
6750 * Add journal work.
6751 */
6752 LIST_FOREACH(jblkdep, &freeblks->fb_jblkdephd, jb_deps)
6753 add_to_journal(&jblkdep->jb_list);
6754 FREE_LOCK(ump);
6755 bdwrite(bp);
6756 /*
6757 * Truncate dependency structures beyond length.
6758 */
6759 trunc_dependencies(ip, freeblks, lastlbn, frags, flags);
6760 /*
6761 * This is only set when we need to allocate a fragment because
6762 * none existed at the end of a frag-sized file. It handles only
6763 * allocating a new, zero filled block.
6764 */
6765 if (allocblock) {
6766 ip->i_size = length - lastoff;
6767 DIP_SET(ip, i_size, ip->i_size);
6768 error = UFS_BALLOC(vp, length - 1, 1, cred, BA_CLRBUF, &bp);
6769 if (error != 0) {
6770 softdep_error("softdep_journal_freeblks", error);
6771 return;
6772 }
6773 ip->i_size = length;
6774 DIP_SET(ip, i_size, length);
6775 ip->i_flag |= IN_CHANGE | IN_UPDATE;
6776 allocbuf(bp, frags);
6777 ffs_update(vp, 0);
6778 bawrite(bp);
6779 } else if (lastoff != 0 && vp->v_type != VDIR) {
6780 int size;
6781
6782 /*
6783 * Zero the end of a truncated frag or block.
6784 */
6785 size = sblksize(fs, length, lastlbn);
6786 error = bread(vp, lastlbn, size, cred, &bp);
6787 if (error) {
6788 softdep_error("softdep_journal_freeblks", error);
6789 return;
6790 }
6791 bzero((char *)bp->b_data + lastoff, size - lastoff);
6792 bawrite(bp);
6793
6794 }
6795 ACQUIRE_LOCK(ump);
6796 inodedep_lookup(mp, ip->i_number, DEPALLOC, &inodedep);
6797 TAILQ_INSERT_TAIL(&inodedep->id_freeblklst, freeblks, fb_next);
6798 freeblks->fb_state |= DEPCOMPLETE | ONDEPLIST;
6799 /*
6800 * We zero earlier truncations so they don't erroneously
6801 * update i_blocks.
6802 */
6803 if (freeblks->fb_len == 0 && (flags & IO_NORMAL) != 0)
6804 TAILQ_FOREACH(fbn, &inodedep->id_freeblklst, fb_next)
6805 fbn->fb_len = 0;
6806 if ((freeblks->fb_state & ALLCOMPLETE) == ALLCOMPLETE &&
6807 LIST_EMPTY(&freeblks->fb_jblkdephd))
6808 freeblks->fb_state |= INPROGRESS;
6809 else
6810 freeblks = NULL;
6811 FREE_LOCK(ump);
6812 if (freeblks)
6813 handle_workitem_freeblocks(freeblks, 0);
6814 trunc_pages(ip, length, extblocks, flags);
6815
6816 }
6817
6818 /*
6819 * Flush a JOP_SYNC to the journal.
6820 */
6821 void
softdep_journal_fsync(ip)6822 softdep_journal_fsync(ip)
6823 struct inode *ip;
6824 {
6825 struct jfsync *jfsync;
6826 struct ufsmount *ump;
6827
6828 ump = ITOUMP(ip);
6829 KASSERT(MOUNTEDSOFTDEP(UFSTOVFS(ump)) != 0,
6830 ("softdep_journal_fsync called on non-softdep filesystem"));
6831 if ((ip->i_flag & IN_TRUNCATED) == 0)
6832 return;
6833 ip->i_flag &= ~IN_TRUNCATED;
6834 jfsync = malloc(sizeof(*jfsync), M_JFSYNC, M_SOFTDEP_FLAGS | M_ZERO);
6835 workitem_alloc(&jfsync->jfs_list, D_JFSYNC, UFSTOVFS(ump));
6836 jfsync->jfs_size = ip->i_size;
6837 jfsync->jfs_ino = ip->i_number;
6838 ACQUIRE_LOCK(ump);
6839 add_to_journal(&jfsync->jfs_list);
6840 jwait(&jfsync->jfs_list, MNT_WAIT);
6841 FREE_LOCK(ump);
6842 }
6843
6844 /*
6845 * Block de-allocation dependencies.
6846 *
6847 * When blocks are de-allocated, the on-disk pointers must be nullified before
6848 * the blocks are made available for use by other files. (The true
6849 * requirement is that old pointers must be nullified before new on-disk
6850 * pointers are set. We chose this slightly more stringent requirement to
6851 * reduce complexity.) Our implementation handles this dependency by updating
6852 * the inode (or indirect block) appropriately but delaying the actual block
6853 * de-allocation (i.e., freemap and free space count manipulation) until
6854 * after the updated versions reach stable storage. After the disk is
6855 * updated, the blocks can be safely de-allocated whenever it is convenient.
6856 * This implementation handles only the common case of reducing a file's
6857 * length to zero. Other cases are handled by the conventional synchronous
6858 * write approach.
6859 *
6860 * The ffs implementation with which we worked double-checks
6861 * the state of the block pointers and file size as it reduces
6862 * a file's length. Some of this code is replicated here in our
6863 * soft updates implementation. The freeblks->fb_chkcnt field is
6864 * used to transfer a part of this information to the procedure
6865 * that eventually de-allocates the blocks.
6866 *
6867 * This routine should be called from the routine that shortens
6868 * a file's length, before the inode's size or block pointers
6869 * are modified. It will save the block pointer information for
6870 * later release and zero the inode so that the calling routine
6871 * can release it.
6872 */
6873 void
softdep_setup_freeblocks(ip,length,flags)6874 softdep_setup_freeblocks(ip, length, flags)
6875 struct inode *ip; /* The inode whose length is to be reduced */
6876 off_t length; /* The new length for the file */
6877 int flags; /* IO_EXT and/or IO_NORMAL */
6878 {
6879 struct ufs1_dinode *dp1;
6880 struct ufs2_dinode *dp2;
6881 struct freeblks *freeblks;
6882 struct inodedep *inodedep;
6883 struct allocdirect *adp;
6884 struct ufsmount *ump;
6885 struct buf *bp;
6886 struct fs *fs;
6887 ufs2_daddr_t extblocks, datablocks;
6888 struct mount *mp;
6889 int i, delay, error;
6890 ufs_lbn_t tmpval;
6891 ufs_lbn_t lbn;
6892
6893 ump = ITOUMP(ip);
6894 mp = UFSTOVFS(ump);
6895 KASSERT(MOUNTEDSOFTDEP(mp) != 0,
6896 ("softdep_setup_freeblocks called on non-softdep filesystem"));
6897 CTR2(KTR_SUJ, "softdep_setup_freeblks: ip %d length %ld",
6898 ip->i_number, length);
6899 KASSERT(length == 0, ("softdep_setup_freeblocks: non-zero length"));
6900 fs = ump->um_fs;
6901 if ((error = bread(ump->um_devvp,
6902 fsbtodb(fs, ino_to_fsba(fs, ip->i_number)),
6903 (int)fs->fs_bsize, NOCRED, &bp)) != 0) {
6904 brelse(bp);
6905 softdep_error("softdep_setup_freeblocks", error);
6906 return;
6907 }
6908 freeblks = newfreeblks(mp, ip);
6909 extblocks = 0;
6910 datablocks = 0;
6911 if (fs->fs_magic == FS_UFS2_MAGIC)
6912 extblocks = btodb(fragroundup(fs, ip->i_din2->di_extsize));
6913 if ((flags & IO_NORMAL) != 0) {
6914 for (i = 0; i < UFS_NDADDR; i++)
6915 setup_freedirect(freeblks, ip, i, 0);
6916 for (i = 0, tmpval = NINDIR(fs), lbn = UFS_NDADDR;
6917 i < UFS_NIADDR;
6918 i++, lbn += tmpval, tmpval *= NINDIR(fs))
6919 setup_freeindir(freeblks, ip, i, -lbn -i, 0);
6920 ip->i_size = 0;
6921 DIP_SET(ip, i_size, 0);
6922 datablocks = DIP(ip, i_blocks) - extblocks;
6923 }
6924 if ((flags & IO_EXT) != 0) {
6925 for (i = 0; i < UFS_NXADDR; i++)
6926 setup_freeext(freeblks, ip, i, 0);
6927 ip->i_din2->di_extsize = 0;
6928 datablocks += extblocks;
6929 }
6930 #ifdef QUOTA
6931 /* Reference the quotas in case the block count is wrong in the end. */
6932 quotaref(ITOV(ip), freeblks->fb_quota);
6933 (void) chkdq(ip, -datablocks, NOCRED, FORCE);
6934 #endif
6935 freeblks->fb_chkcnt = -datablocks;
6936 UFS_LOCK(ump);
6937 fs->fs_pendingblocks += datablocks;
6938 UFS_UNLOCK(ump);
6939 DIP_SET(ip, i_blocks, DIP(ip, i_blocks) - datablocks);
6940 /*
6941 * Push the zero'ed inode to its disk buffer so that we are free
6942 * to delete its dependencies below. Once the dependencies are gone
6943 * the buffer can be safely released.
6944 */
6945 if (ump->um_fstype == UFS1) {
6946 dp1 = ((struct ufs1_dinode *)bp->b_data +
6947 ino_to_fsbo(fs, ip->i_number));
6948 ip->i_din1->di_freelink = dp1->di_freelink;
6949 *dp1 = *ip->i_din1;
6950 } else {
6951 dp2 = ((struct ufs2_dinode *)bp->b_data +
6952 ino_to_fsbo(fs, ip->i_number));
6953 ip->i_din2->di_freelink = dp2->di_freelink;
6954 *dp2 = *ip->i_din2;
6955 }
6956 /*
6957 * Find and eliminate any inode dependencies.
6958 */
6959 ACQUIRE_LOCK(ump);
6960 (void) inodedep_lookup(mp, ip->i_number, DEPALLOC, &inodedep);
6961 if ((inodedep->id_state & IOSTARTED) != 0)
6962 panic("softdep_setup_freeblocks: inode busy");
6963 /*
6964 * Add the freeblks structure to the list of operations that
6965 * must await the zero'ed inode being written to disk. If we
6966 * still have a bitmap dependency (delay == 0), then the inode
6967 * has never been written to disk, so we can process the
6968 * freeblks below once we have deleted the dependencies.
6969 */
6970 delay = (inodedep->id_state & DEPCOMPLETE);
6971 if (delay)
6972 WORKLIST_INSERT(&bp->b_dep, &freeblks->fb_list);
6973 else
6974 freeblks->fb_state |= COMPLETE;
6975 /*
6976 * Because the file length has been truncated to zero, any
6977 * pending block allocation dependency structures associated
6978 * with this inode are obsolete and can simply be de-allocated.
6979 * We must first merge the two dependency lists to get rid of
6980 * any duplicate freefrag structures, then purge the merged list.
6981 * If we still have a bitmap dependency, then the inode has never
6982 * been written to disk, so we can free any fragments without delay.
6983 */
6984 if (flags & IO_NORMAL) {
6985 merge_inode_lists(&inodedep->id_newinoupdt,
6986 &inodedep->id_inoupdt);
6987 while ((adp = TAILQ_FIRST(&inodedep->id_inoupdt)) != NULL)
6988 cancel_allocdirect(&inodedep->id_inoupdt, adp,
6989 freeblks);
6990 }
6991 if (flags & IO_EXT) {
6992 merge_inode_lists(&inodedep->id_newextupdt,
6993 &inodedep->id_extupdt);
6994 while ((adp = TAILQ_FIRST(&inodedep->id_extupdt)) != NULL)
6995 cancel_allocdirect(&inodedep->id_extupdt, adp,
6996 freeblks);
6997 }
6998 FREE_LOCK(ump);
6999 bdwrite(bp);
7000 trunc_dependencies(ip, freeblks, -1, 0, flags);
7001 ACQUIRE_LOCK(ump);
7002 if (inodedep_lookup(mp, ip->i_number, 0, &inodedep) != 0)
7003 (void) free_inodedep(inodedep);
7004 freeblks->fb_state |= DEPCOMPLETE;
7005 /*
7006 * If the inode with zeroed block pointers is now on disk
7007 * we can start freeing blocks.
7008 */
7009 if ((freeblks->fb_state & ALLCOMPLETE) == ALLCOMPLETE)
7010 freeblks->fb_state |= INPROGRESS;
7011 else
7012 freeblks = NULL;
7013 FREE_LOCK(ump);
7014 if (freeblks)
7015 handle_workitem_freeblocks(freeblks, 0);
7016 trunc_pages(ip, length, extblocks, flags);
7017 }
7018
7019 /*
7020 * Eliminate pages from the page cache that back parts of this inode and
7021 * adjust the vnode pager's idea of our size. This prevents stale data
7022 * from hanging around in the page cache.
7023 */
7024 static void
trunc_pages(ip,length,extblocks,flags)7025 trunc_pages(ip, length, extblocks, flags)
7026 struct inode *ip;
7027 off_t length;
7028 ufs2_daddr_t extblocks;
7029 int flags;
7030 {
7031 struct vnode *vp;
7032 struct fs *fs;
7033 ufs_lbn_t lbn;
7034 off_t end, extend;
7035
7036 vp = ITOV(ip);
7037 fs = ITOFS(ip);
7038 extend = OFF_TO_IDX(lblktosize(fs, -extblocks));
7039 if ((flags & IO_EXT) != 0)
7040 vn_pages_remove(vp, extend, 0);
7041 if ((flags & IO_NORMAL) == 0)
7042 return;
7043 BO_LOCK(&vp->v_bufobj);
7044 drain_output(vp);
7045 BO_UNLOCK(&vp->v_bufobj);
7046 /*
7047 * The vnode pager eliminates file pages we eliminate indirects
7048 * below.
7049 */
7050 vnode_pager_setsize(vp, length);
7051 /*
7052 * Calculate the end based on the last indirect we want to keep. If
7053 * the block extends into indirects we can just use the negative of
7054 * its lbn. Doubles and triples exist at lower numbers so we must
7055 * be careful not to remove those, if they exist. double and triple
7056 * indirect lbns do not overlap with others so it is not important
7057 * to verify how many levels are required.
7058 */
7059 lbn = lblkno(fs, length);
7060 if (lbn >= UFS_NDADDR) {
7061 /* Calculate the virtual lbn of the triple indirect. */
7062 lbn = -lbn - (UFS_NIADDR - 1);
7063 end = OFF_TO_IDX(lblktosize(fs, lbn));
7064 } else
7065 end = extend;
7066 vn_pages_remove(vp, OFF_TO_IDX(OFF_MAX), end);
7067 }
7068
7069 /*
7070 * See if the buf bp is in the range eliminated by truncation.
7071 */
7072 static int
trunc_check_buf(bp,blkoffp,lastlbn,lastoff,flags)7073 trunc_check_buf(bp, blkoffp, lastlbn, lastoff, flags)
7074 struct buf *bp;
7075 int *blkoffp;
7076 ufs_lbn_t lastlbn;
7077 int lastoff;
7078 int flags;
7079 {
7080 ufs_lbn_t lbn;
7081
7082 *blkoffp = 0;
7083 /* Only match ext/normal blocks as appropriate. */
7084 if (((flags & IO_EXT) == 0 && (bp->b_xflags & BX_ALTDATA)) ||
7085 ((flags & IO_NORMAL) == 0 && (bp->b_xflags & BX_ALTDATA) == 0))
7086 return (0);
7087 /* ALTDATA is always a full truncation. */
7088 if ((bp->b_xflags & BX_ALTDATA) != 0)
7089 return (1);
7090 /* -1 is full truncation. */
7091 if (lastlbn == -1)
7092 return (1);
7093 /*
7094 * If this is a partial truncate we only want those
7095 * blocks and indirect blocks that cover the range
7096 * we're after.
7097 */
7098 lbn = bp->b_lblkno;
7099 if (lbn < 0)
7100 lbn = -(lbn + lbn_level(lbn));
7101 if (lbn < lastlbn)
7102 return (0);
7103 /* Here we only truncate lblkno if it's partial. */
7104 if (lbn == lastlbn) {
7105 if (lastoff == 0)
7106 return (0);
7107 *blkoffp = lastoff;
7108 }
7109 return (1);
7110 }
7111
7112 /*
7113 * Eliminate any dependencies that exist in memory beyond lblkno:off
7114 */
7115 static void
trunc_dependencies(ip,freeblks,lastlbn,lastoff,flags)7116 trunc_dependencies(ip, freeblks, lastlbn, lastoff, flags)
7117 struct inode *ip;
7118 struct freeblks *freeblks;
7119 ufs_lbn_t lastlbn;
7120 int lastoff;
7121 int flags;
7122 {
7123 struct bufobj *bo;
7124 struct vnode *vp;
7125 struct buf *bp;
7126 int blkoff;
7127
7128 /*
7129 * We must wait for any I/O in progress to finish so that
7130 * all potential buffers on the dirty list will be visible.
7131 * Once they are all there, walk the list and get rid of
7132 * any dependencies.
7133 */
7134 vp = ITOV(ip);
7135 bo = &vp->v_bufobj;
7136 BO_LOCK(bo);
7137 drain_output(vp);
7138 TAILQ_FOREACH(bp, &bo->bo_dirty.bv_hd, b_bobufs)
7139 bp->b_vflags &= ~BV_SCANNED;
7140 restart:
7141 TAILQ_FOREACH(bp, &bo->bo_dirty.bv_hd, b_bobufs) {
7142 if (bp->b_vflags & BV_SCANNED)
7143 continue;
7144 if (!trunc_check_buf(bp, &blkoff, lastlbn, lastoff, flags)) {
7145 bp->b_vflags |= BV_SCANNED;
7146 continue;
7147 }
7148 KASSERT(bp->b_bufobj == bo, ("Wrong object in buffer"));
7149 if ((bp = getdirtybuf(bp, BO_LOCKPTR(bo), MNT_WAIT)) == NULL)
7150 goto restart;
7151 BO_UNLOCK(bo);
7152 if (deallocate_dependencies(bp, freeblks, blkoff))
7153 bqrelse(bp);
7154 else
7155 brelse(bp);
7156 BO_LOCK(bo);
7157 goto restart;
7158 }
7159 /*
7160 * Now do the work of vtruncbuf while also matching indirect blocks.
7161 */
7162 TAILQ_FOREACH(bp, &bo->bo_clean.bv_hd, b_bobufs)
7163 bp->b_vflags &= ~BV_SCANNED;
7164 cleanrestart:
7165 TAILQ_FOREACH(bp, &bo->bo_clean.bv_hd, b_bobufs) {
7166 if (bp->b_vflags & BV_SCANNED)
7167 continue;
7168 if (!trunc_check_buf(bp, &blkoff, lastlbn, lastoff, flags)) {
7169 bp->b_vflags |= BV_SCANNED;
7170 continue;
7171 }
7172 if (BUF_LOCK(bp,
7173 LK_EXCLUSIVE | LK_SLEEPFAIL | LK_INTERLOCK,
7174 BO_LOCKPTR(bo)) == ENOLCK) {
7175 BO_LOCK(bo);
7176 goto cleanrestart;
7177 }
7178 bp->b_vflags |= BV_SCANNED;
7179 bremfree(bp);
7180 if (blkoff != 0) {
7181 allocbuf(bp, blkoff);
7182 bqrelse(bp);
7183 } else {
7184 bp->b_flags |= B_INVAL | B_NOCACHE | B_RELBUF;
7185 brelse(bp);
7186 }
7187 BO_LOCK(bo);
7188 goto cleanrestart;
7189 }
7190 drain_output(vp);
7191 BO_UNLOCK(bo);
7192 }
7193
7194 static int
cancel_pagedep(pagedep,freeblks,blkoff)7195 cancel_pagedep(pagedep, freeblks, blkoff)
7196 struct pagedep *pagedep;
7197 struct freeblks *freeblks;
7198 int blkoff;
7199 {
7200 struct jremref *jremref;
7201 struct jmvref *jmvref;
7202 struct dirrem *dirrem, *tmp;
7203 int i;
7204
7205 /*
7206 * Copy any directory remove dependencies to the list
7207 * to be processed after the freeblks proceeds. If
7208 * directory entry never made it to disk they
7209 * can be dumped directly onto the work list.
7210 */
7211 LIST_FOREACH_SAFE(dirrem, &pagedep->pd_dirremhd, dm_next, tmp) {
7212 /* Skip this directory removal if it is intended to remain. */
7213 if (dirrem->dm_offset < blkoff)
7214 continue;
7215 /*
7216 * If there are any dirrems we wait for the journal write
7217 * to complete and then restart the buf scan as the lock
7218 * has been dropped.
7219 */
7220 while ((jremref = LIST_FIRST(&dirrem->dm_jremrefhd)) != NULL) {
7221 jwait(&jremref->jr_list, MNT_WAIT);
7222 return (ERESTART);
7223 }
7224 LIST_REMOVE(dirrem, dm_next);
7225 dirrem->dm_dirinum = pagedep->pd_ino;
7226 WORKLIST_INSERT(&freeblks->fb_freeworkhd, &dirrem->dm_list);
7227 }
7228 while ((jmvref = LIST_FIRST(&pagedep->pd_jmvrefhd)) != NULL) {
7229 jwait(&jmvref->jm_list, MNT_WAIT);
7230 return (ERESTART);
7231 }
7232 /*
7233 * When we're partially truncating a pagedep we just want to flush
7234 * journal entries and return. There can not be any adds in the
7235 * truncated portion of the directory and newblk must remain if
7236 * part of the block remains.
7237 */
7238 if (blkoff != 0) {
7239 struct diradd *dap;
7240
7241 LIST_FOREACH(dap, &pagedep->pd_pendinghd, da_pdlist)
7242 if (dap->da_offset > blkoff)
7243 panic("cancel_pagedep: diradd %p off %d > %d",
7244 dap, dap->da_offset, blkoff);
7245 for (i = 0; i < DAHASHSZ; i++)
7246 LIST_FOREACH(dap, &pagedep->pd_diraddhd[i], da_pdlist)
7247 if (dap->da_offset > blkoff)
7248 panic("cancel_pagedep: diradd %p off %d > %d",
7249 dap, dap->da_offset, blkoff);
7250 return (0);
7251 }
7252 /*
7253 * There should be no directory add dependencies present
7254 * as the directory could not be truncated until all
7255 * children were removed.
7256 */
7257 KASSERT(LIST_FIRST(&pagedep->pd_pendinghd) == NULL,
7258 ("deallocate_dependencies: pendinghd != NULL"));
7259 for (i = 0; i < DAHASHSZ; i++)
7260 KASSERT(LIST_FIRST(&pagedep->pd_diraddhd[i]) == NULL,
7261 ("deallocate_dependencies: diraddhd != NULL"));
7262 if ((pagedep->pd_state & NEWBLOCK) != 0)
7263 free_newdirblk(pagedep->pd_newdirblk);
7264 if (free_pagedep(pagedep) == 0)
7265 panic("Failed to free pagedep %p", pagedep);
7266 return (0);
7267 }
7268
7269 /*
7270 * Reclaim any dependency structures from a buffer that is about to
7271 * be reallocated to a new vnode. The buffer must be locked, thus,
7272 * no I/O completion operations can occur while we are manipulating
7273 * its associated dependencies. The mutex is held so that other I/O's
7274 * associated with related dependencies do not occur.
7275 */
7276 static int
deallocate_dependencies(bp,freeblks,off)7277 deallocate_dependencies(bp, freeblks, off)
7278 struct buf *bp;
7279 struct freeblks *freeblks;
7280 int off;
7281 {
7282 struct indirdep *indirdep;
7283 struct pagedep *pagedep;
7284 struct worklist *wk, *wkn;
7285 struct ufsmount *ump;
7286
7287 ump = softdep_bp_to_mp(bp);
7288 if (ump == NULL)
7289 goto done;
7290 ACQUIRE_LOCK(ump);
7291 LIST_FOREACH_SAFE(wk, &bp->b_dep, wk_list, wkn) {
7292 switch (wk->wk_type) {
7293 case D_INDIRDEP:
7294 indirdep = WK_INDIRDEP(wk);
7295 if (bp->b_lblkno >= 0 ||
7296 bp->b_blkno != indirdep->ir_savebp->b_lblkno)
7297 panic("deallocate_dependencies: not indir");
7298 cancel_indirdep(indirdep, bp, freeblks);
7299 continue;
7300
7301 case D_PAGEDEP:
7302 pagedep = WK_PAGEDEP(wk);
7303 if (cancel_pagedep(pagedep, freeblks, off)) {
7304 FREE_LOCK(ump);
7305 return (ERESTART);
7306 }
7307 continue;
7308
7309 case D_ALLOCINDIR:
7310 /*
7311 * Simply remove the allocindir, we'll find it via
7312 * the indirdep where we can clear pointers if
7313 * needed.
7314 */
7315 WORKLIST_REMOVE(wk);
7316 continue;
7317
7318 case D_FREEWORK:
7319 /*
7320 * A truncation is waiting for the zero'd pointers
7321 * to be written. It can be freed when the freeblks
7322 * is journaled.
7323 */
7324 WORKLIST_REMOVE(wk);
7325 wk->wk_state |= ONDEPLIST;
7326 WORKLIST_INSERT(&freeblks->fb_freeworkhd, wk);
7327 break;
7328
7329 case D_ALLOCDIRECT:
7330 if (off != 0)
7331 continue;
7332 /* FALLTHROUGH */
7333 default:
7334 panic("deallocate_dependencies: Unexpected type %s",
7335 TYPENAME(wk->wk_type));
7336 /* NOTREACHED */
7337 }
7338 }
7339 FREE_LOCK(ump);
7340 done:
7341 /*
7342 * Don't throw away this buf, we were partially truncating and
7343 * some deps may always remain.
7344 */
7345 if (off) {
7346 allocbuf(bp, off);
7347 bp->b_vflags |= BV_SCANNED;
7348 return (EBUSY);
7349 }
7350 bp->b_flags |= B_INVAL | B_NOCACHE;
7351
7352 return (0);
7353 }
7354
7355 /*
7356 * An allocdirect is being canceled due to a truncate. We must make sure
7357 * the journal entry is released in concert with the blkfree that releases
7358 * the storage. Completed journal entries must not be released until the
7359 * space is no longer pointed to by the inode or in the bitmap.
7360 */
7361 static void
cancel_allocdirect(adphead,adp,freeblks)7362 cancel_allocdirect(adphead, adp, freeblks)
7363 struct allocdirectlst *adphead;
7364 struct allocdirect *adp;
7365 struct freeblks *freeblks;
7366 {
7367 struct freework *freework;
7368 struct newblk *newblk;
7369 struct worklist *wk;
7370
7371 TAILQ_REMOVE(adphead, adp, ad_next);
7372 newblk = (struct newblk *)adp;
7373 freework = NULL;
7374 /*
7375 * Find the correct freework structure.
7376 */
7377 LIST_FOREACH(wk, &freeblks->fb_freeworkhd, wk_list) {
7378 if (wk->wk_type != D_FREEWORK)
7379 continue;
7380 freework = WK_FREEWORK(wk);
7381 if (freework->fw_blkno == newblk->nb_newblkno)
7382 break;
7383 }
7384 if (freework == NULL)
7385 panic("cancel_allocdirect: Freework not found");
7386 /*
7387 * If a newblk exists at all we still have the journal entry that
7388 * initiated the allocation so we do not need to journal the free.
7389 */
7390 cancel_jfreeblk(freeblks, freework->fw_blkno);
7391 /*
7392 * If the journal hasn't been written the jnewblk must be passed
7393 * to the call to ffs_blkfree that reclaims the space. We accomplish
7394 * this by linking the journal dependency into the freework to be
7395 * freed when freework_freeblock() is called. If the journal has
7396 * been written we can simply reclaim the journal space when the
7397 * freeblks work is complete.
7398 */
7399 freework->fw_jnewblk = cancel_newblk(newblk, &freework->fw_list,
7400 &freeblks->fb_jwork);
7401 WORKLIST_INSERT(&freeblks->fb_freeworkhd, &newblk->nb_list);
7402 }
7403
7404
7405 /*
7406 * Cancel a new block allocation. May be an indirect or direct block. We
7407 * remove it from various lists and return any journal record that needs to
7408 * be resolved by the caller.
7409 *
7410 * A special consideration is made for indirects which were never pointed
7411 * at on disk and will never be found once this block is released.
7412 */
7413 static struct jnewblk *
cancel_newblk(newblk,wk,wkhd)7414 cancel_newblk(newblk, wk, wkhd)
7415 struct newblk *newblk;
7416 struct worklist *wk;
7417 struct workhead *wkhd;
7418 {
7419 struct jnewblk *jnewblk;
7420
7421 CTR1(KTR_SUJ, "cancel_newblk: blkno %jd", newblk->nb_newblkno);
7422
7423 newblk->nb_state |= GOINGAWAY;
7424 /*
7425 * Previously we traversed the completedhd on each indirdep
7426 * attached to this newblk to cancel them and gather journal
7427 * work. Since we need only the oldest journal segment and
7428 * the lowest point on the tree will always have the oldest
7429 * journal segment we are free to release the segments
7430 * of any subordinates and may leave the indirdep list to
7431 * indirdep_complete() when this newblk is freed.
7432 */
7433 if (newblk->nb_state & ONDEPLIST) {
7434 newblk->nb_state &= ~ONDEPLIST;
7435 LIST_REMOVE(newblk, nb_deps);
7436 }
7437 if (newblk->nb_state & ONWORKLIST)
7438 WORKLIST_REMOVE(&newblk->nb_list);
7439 /*
7440 * If the journal entry hasn't been written we save a pointer to
7441 * the dependency that frees it until it is written or the
7442 * superseding operation completes.
7443 */
7444 jnewblk = newblk->nb_jnewblk;
7445 if (jnewblk != NULL && wk != NULL) {
7446 newblk->nb_jnewblk = NULL;
7447 jnewblk->jn_dep = wk;
7448 }
7449 if (!LIST_EMPTY(&newblk->nb_jwork))
7450 jwork_move(wkhd, &newblk->nb_jwork);
7451 /*
7452 * When truncating we must free the newdirblk early to remove
7453 * the pagedep from the hash before returning.
7454 */
7455 if ((wk = LIST_FIRST(&newblk->nb_newdirblk)) != NULL)
7456 free_newdirblk(WK_NEWDIRBLK(wk));
7457 if (!LIST_EMPTY(&newblk->nb_newdirblk))
7458 panic("cancel_newblk: extra newdirblk");
7459
7460 return (jnewblk);
7461 }
7462
7463 /*
7464 * Schedule the freefrag associated with a newblk to be released once
7465 * the pointers are written and the previous block is no longer needed.
7466 */
7467 static void
newblk_freefrag(newblk)7468 newblk_freefrag(newblk)
7469 struct newblk *newblk;
7470 {
7471 struct freefrag *freefrag;
7472
7473 if (newblk->nb_freefrag == NULL)
7474 return;
7475 freefrag = newblk->nb_freefrag;
7476 newblk->nb_freefrag = NULL;
7477 freefrag->ff_state |= COMPLETE;
7478 if ((freefrag->ff_state & ALLCOMPLETE) == ALLCOMPLETE)
7479 add_to_worklist(&freefrag->ff_list, 0);
7480 }
7481
7482 /*
7483 * Free a newblk. Generate a new freefrag work request if appropriate.
7484 * This must be called after the inode pointer and any direct block pointers
7485 * are valid or fully removed via truncate or frag extension.
7486 */
7487 static void
free_newblk(newblk)7488 free_newblk(newblk)
7489 struct newblk *newblk;
7490 {
7491 struct indirdep *indirdep;
7492 struct worklist *wk;
7493
7494 KASSERT(newblk->nb_jnewblk == NULL,
7495 ("free_newblk: jnewblk %p still attached", newblk->nb_jnewblk));
7496 KASSERT(newblk->nb_list.wk_type != D_NEWBLK,
7497 ("free_newblk: unclaimed newblk"));
7498 LOCK_OWNED(VFSTOUFS(newblk->nb_list.wk_mp));
7499 newblk_freefrag(newblk);
7500 if (newblk->nb_state & ONDEPLIST)
7501 LIST_REMOVE(newblk, nb_deps);
7502 if (newblk->nb_state & ONWORKLIST)
7503 WORKLIST_REMOVE(&newblk->nb_list);
7504 LIST_REMOVE(newblk, nb_hash);
7505 if ((wk = LIST_FIRST(&newblk->nb_newdirblk)) != NULL)
7506 free_newdirblk(WK_NEWDIRBLK(wk));
7507 if (!LIST_EMPTY(&newblk->nb_newdirblk))
7508 panic("free_newblk: extra newdirblk");
7509 while ((indirdep = LIST_FIRST(&newblk->nb_indirdeps)) != NULL)
7510 indirdep_complete(indirdep);
7511 handle_jwork(&newblk->nb_jwork);
7512 WORKITEM_FREE(newblk, D_NEWBLK);
7513 }
7514
7515 /*
7516 * Free a newdirblk. Clear the NEWBLOCK flag on its associated pagedep.
7517 */
7518 static void
free_newdirblk(newdirblk)7519 free_newdirblk(newdirblk)
7520 struct newdirblk *newdirblk;
7521 {
7522 struct pagedep *pagedep;
7523 struct diradd *dap;
7524 struct worklist *wk;
7525
7526 LOCK_OWNED(VFSTOUFS(newdirblk->db_list.wk_mp));
7527 WORKLIST_REMOVE(&newdirblk->db_list);
7528 /*
7529 * If the pagedep is still linked onto the directory buffer
7530 * dependency chain, then some of the entries on the
7531 * pd_pendinghd list may not be committed to disk yet. In
7532 * this case, we will simply clear the NEWBLOCK flag and
7533 * let the pd_pendinghd list be processed when the pagedep
7534 * is next written. If the pagedep is no longer on the buffer
7535 * dependency chain, then all the entries on the pd_pending
7536 * list are committed to disk and we can free them here.
7537 */
7538 pagedep = newdirblk->db_pagedep;
7539 pagedep->pd_state &= ~NEWBLOCK;
7540 if ((pagedep->pd_state & ONWORKLIST) == 0) {
7541 while ((dap = LIST_FIRST(&pagedep->pd_pendinghd)) != NULL)
7542 free_diradd(dap, NULL);
7543 /*
7544 * If no dependencies remain, the pagedep will be freed.
7545 */
7546 free_pagedep(pagedep);
7547 }
7548 /* Should only ever be one item in the list. */
7549 while ((wk = LIST_FIRST(&newdirblk->db_mkdir)) != NULL) {
7550 WORKLIST_REMOVE(wk);
7551 handle_written_mkdir(WK_MKDIR(wk), MKDIR_BODY);
7552 }
7553 WORKITEM_FREE(newdirblk, D_NEWDIRBLK);
7554 }
7555
7556 /*
7557 * Prepare an inode to be freed. The actual free operation is not
7558 * done until the zero'ed inode has been written to disk.
7559 */
7560 void
softdep_freefile(pvp,ino,mode)7561 softdep_freefile(pvp, ino, mode)
7562 struct vnode *pvp;
7563 ino_t ino;
7564 int mode;
7565 {
7566 struct inode *ip = VTOI(pvp);
7567 struct inodedep *inodedep;
7568 struct freefile *freefile;
7569 struct freeblks *freeblks;
7570 struct ufsmount *ump;
7571
7572 ump = ITOUMP(ip);
7573 KASSERT(MOUNTEDSOFTDEP(UFSTOVFS(ump)) != 0,
7574 ("softdep_freefile called on non-softdep filesystem"));
7575 /*
7576 * This sets up the inode de-allocation dependency.
7577 */
7578 freefile = malloc(sizeof(struct freefile),
7579 M_FREEFILE, M_SOFTDEP_FLAGS);
7580 workitem_alloc(&freefile->fx_list, D_FREEFILE, pvp->v_mount);
7581 freefile->fx_mode = mode;
7582 freefile->fx_oldinum = ino;
7583 freefile->fx_devvp = ump->um_devvp;
7584 LIST_INIT(&freefile->fx_jwork);
7585 UFS_LOCK(ump);
7586 ump->um_fs->fs_pendinginodes += 1;
7587 UFS_UNLOCK(ump);
7588
7589 /*
7590 * If the inodedep does not exist, then the zero'ed inode has
7591 * been written to disk. If the allocated inode has never been
7592 * written to disk, then the on-disk inode is zero'ed. In either
7593 * case we can free the file immediately. If the journal was
7594 * canceled before being written the inode will never make it to
7595 * disk and we must send the canceled journal entrys to
7596 * ffs_freefile() to be cleared in conjunction with the bitmap.
7597 * Any blocks waiting on the inode to write can be safely freed
7598 * here as it will never been written.
7599 */
7600 ACQUIRE_LOCK(ump);
7601 inodedep_lookup(pvp->v_mount, ino, 0, &inodedep);
7602 if (inodedep) {
7603 /*
7604 * Clear out freeblks that no longer need to reference
7605 * this inode.
7606 */
7607 while ((freeblks =
7608 TAILQ_FIRST(&inodedep->id_freeblklst)) != NULL) {
7609 TAILQ_REMOVE(&inodedep->id_freeblklst, freeblks,
7610 fb_next);
7611 freeblks->fb_state &= ~ONDEPLIST;
7612 }
7613 /*
7614 * Remove this inode from the unlinked list.
7615 */
7616 if (inodedep->id_state & UNLINKED) {
7617 /*
7618 * Save the journal work to be freed with the bitmap
7619 * before we clear UNLINKED. Otherwise it can be lost
7620 * if the inode block is written.
7621 */
7622 handle_bufwait(inodedep, &freefile->fx_jwork);
7623 clear_unlinked_inodedep(inodedep);
7624 /*
7625 * Re-acquire inodedep as we've dropped the
7626 * per-filesystem lock in clear_unlinked_inodedep().
7627 */
7628 inodedep_lookup(pvp->v_mount, ino, 0, &inodedep);
7629 }
7630 }
7631 if (inodedep == NULL || check_inode_unwritten(inodedep)) {
7632 FREE_LOCK(ump);
7633 handle_workitem_freefile(freefile);
7634 return;
7635 }
7636 if ((inodedep->id_state & DEPCOMPLETE) == 0)
7637 inodedep->id_state |= GOINGAWAY;
7638 WORKLIST_INSERT(&inodedep->id_inowait, &freefile->fx_list);
7639 FREE_LOCK(ump);
7640 if (ip->i_number == ino)
7641 ip->i_flag |= IN_MODIFIED;
7642 }
7643
7644 /*
7645 * Check to see if an inode has never been written to disk. If
7646 * so free the inodedep and return success, otherwise return failure.
7647 *
7648 * If we still have a bitmap dependency, then the inode has never
7649 * been written to disk. Drop the dependency as it is no longer
7650 * necessary since the inode is being deallocated. We set the
7651 * ALLCOMPLETE flags since the bitmap now properly shows that the
7652 * inode is not allocated. Even if the inode is actively being
7653 * written, it has been rolled back to its zero'ed state, so we
7654 * are ensured that a zero inode is what is on the disk. For short
7655 * lived files, this change will usually result in removing all the
7656 * dependencies from the inode so that it can be freed immediately.
7657 */
7658 static int
check_inode_unwritten(inodedep)7659 check_inode_unwritten(inodedep)
7660 struct inodedep *inodedep;
7661 {
7662
7663 LOCK_OWNED(VFSTOUFS(inodedep->id_list.wk_mp));
7664
7665 if ((inodedep->id_state & (DEPCOMPLETE | UNLINKED)) != 0 ||
7666 !LIST_EMPTY(&inodedep->id_dirremhd) ||
7667 !LIST_EMPTY(&inodedep->id_pendinghd) ||
7668 !LIST_EMPTY(&inodedep->id_bufwait) ||
7669 !LIST_EMPTY(&inodedep->id_inowait) ||
7670 !TAILQ_EMPTY(&inodedep->id_inoreflst) ||
7671 !TAILQ_EMPTY(&inodedep->id_inoupdt) ||
7672 !TAILQ_EMPTY(&inodedep->id_newinoupdt) ||
7673 !TAILQ_EMPTY(&inodedep->id_extupdt) ||
7674 !TAILQ_EMPTY(&inodedep->id_newextupdt) ||
7675 !TAILQ_EMPTY(&inodedep->id_freeblklst) ||
7676 inodedep->id_mkdiradd != NULL ||
7677 inodedep->id_nlinkdelta != 0)
7678 return (0);
7679 /*
7680 * Another process might be in initiate_write_inodeblock_ufs[12]
7681 * trying to allocate memory without holding "Softdep Lock".
7682 */
7683 if ((inodedep->id_state & IOSTARTED) != 0 &&
7684 inodedep->id_savedino1 == NULL)
7685 return (0);
7686
7687 if (inodedep->id_state & ONDEPLIST)
7688 LIST_REMOVE(inodedep, id_deps);
7689 inodedep->id_state &= ~ONDEPLIST;
7690 inodedep->id_state |= ALLCOMPLETE;
7691 inodedep->id_bmsafemap = NULL;
7692 if (inodedep->id_state & ONWORKLIST)
7693 WORKLIST_REMOVE(&inodedep->id_list);
7694 if (inodedep->id_savedino1 != NULL) {
7695 free(inodedep->id_savedino1, M_SAVEDINO);
7696 inodedep->id_savedino1 = NULL;
7697 }
7698 if (free_inodedep(inodedep) == 0)
7699 panic("check_inode_unwritten: busy inode");
7700 return (1);
7701 }
7702
7703 static int
check_inodedep_free(inodedep)7704 check_inodedep_free(inodedep)
7705 struct inodedep *inodedep;
7706 {
7707
7708 LOCK_OWNED(VFSTOUFS(inodedep->id_list.wk_mp));
7709 if ((inodedep->id_state & ALLCOMPLETE) != ALLCOMPLETE ||
7710 !LIST_EMPTY(&inodedep->id_dirremhd) ||
7711 !LIST_EMPTY(&inodedep->id_pendinghd) ||
7712 !LIST_EMPTY(&inodedep->id_bufwait) ||
7713 !LIST_EMPTY(&inodedep->id_inowait) ||
7714 !TAILQ_EMPTY(&inodedep->id_inoreflst) ||
7715 !TAILQ_EMPTY(&inodedep->id_inoupdt) ||
7716 !TAILQ_EMPTY(&inodedep->id_newinoupdt) ||
7717 !TAILQ_EMPTY(&inodedep->id_extupdt) ||
7718 !TAILQ_EMPTY(&inodedep->id_newextupdt) ||
7719 !TAILQ_EMPTY(&inodedep->id_freeblklst) ||
7720 inodedep->id_mkdiradd != NULL ||
7721 inodedep->id_nlinkdelta != 0 ||
7722 inodedep->id_savedino1 != NULL)
7723 return (0);
7724 return (1);
7725 }
7726
7727 /*
7728 * Try to free an inodedep structure. Return 1 if it could be freed.
7729 */
7730 static int
free_inodedep(inodedep)7731 free_inodedep(inodedep)
7732 struct inodedep *inodedep;
7733 {
7734
7735 LOCK_OWNED(VFSTOUFS(inodedep->id_list.wk_mp));
7736 if ((inodedep->id_state & (ONWORKLIST | UNLINKED)) != 0 ||
7737 !check_inodedep_free(inodedep))
7738 return (0);
7739 if (inodedep->id_state & ONDEPLIST)
7740 LIST_REMOVE(inodedep, id_deps);
7741 LIST_REMOVE(inodedep, id_hash);
7742 WORKITEM_FREE(inodedep, D_INODEDEP);
7743 return (1);
7744 }
7745
7746 /*
7747 * Free the block referenced by a freework structure. The parent freeblks
7748 * structure is released and completed when the final cg bitmap reaches
7749 * the disk. This routine may be freeing a jnewblk which never made it to
7750 * disk in which case we do not have to wait as the operation is undone
7751 * in memory immediately.
7752 */
7753 static void
freework_freeblock(freework,key)7754 freework_freeblock(freework, key)
7755 struct freework *freework;
7756 u_long key;
7757 {
7758 struct freeblks *freeblks;
7759 struct jnewblk *jnewblk;
7760 struct ufsmount *ump;
7761 struct workhead wkhd;
7762 struct fs *fs;
7763 int bsize;
7764 int needj;
7765
7766 ump = VFSTOUFS(freework->fw_list.wk_mp);
7767 LOCK_OWNED(ump);
7768 /*
7769 * Handle partial truncate separately.
7770 */
7771 if (freework->fw_indir) {
7772 complete_trunc_indir(freework);
7773 return;
7774 }
7775 freeblks = freework->fw_freeblks;
7776 fs = ump->um_fs;
7777 needj = MOUNTEDSUJ(freeblks->fb_list.wk_mp) != 0;
7778 bsize = lfragtosize(fs, freework->fw_frags);
7779 LIST_INIT(&wkhd);
7780 /*
7781 * DEPCOMPLETE is cleared in indirblk_insert() if the block lives
7782 * on the indirblk hashtable and prevents premature freeing.
7783 */
7784 freework->fw_state |= DEPCOMPLETE;
7785 /*
7786 * SUJ needs to wait for the segment referencing freed indirect
7787 * blocks to expire so that we know the checker will not confuse
7788 * a re-allocated indirect block with its old contents.
7789 */
7790 if (needj && freework->fw_lbn <= -UFS_NDADDR)
7791 indirblk_insert(freework);
7792 /*
7793 * If we are canceling an existing jnewblk pass it to the free
7794 * routine, otherwise pass the freeblk which will ultimately
7795 * release the freeblks. If we're not journaling, we can just
7796 * free the freeblks immediately.
7797 */
7798 jnewblk = freework->fw_jnewblk;
7799 if (jnewblk != NULL) {
7800 cancel_jnewblk(jnewblk, &wkhd);
7801 needj = 0;
7802 } else if (needj) {
7803 freework->fw_state |= DELAYEDFREE;
7804 freeblks->fb_cgwait++;
7805 WORKLIST_INSERT(&wkhd, &freework->fw_list);
7806 }
7807 FREE_LOCK(ump);
7808 freeblks_free(ump, freeblks, btodb(bsize));
7809 CTR4(KTR_SUJ,
7810 "freework_freeblock: ino %jd blkno %jd lbn %jd size %d",
7811 freeblks->fb_inum, freework->fw_blkno, freework->fw_lbn, bsize);
7812 ffs_blkfree(ump, fs, freeblks->fb_devvp, freework->fw_blkno, bsize,
7813 freeblks->fb_inum, freeblks->fb_vtype, &wkhd, key);
7814 ACQUIRE_LOCK(ump);
7815 /*
7816 * The jnewblk will be discarded and the bits in the map never
7817 * made it to disk. We can immediately free the freeblk.
7818 */
7819 if (needj == 0)
7820 handle_written_freework(freework);
7821 }
7822
7823 /*
7824 * We enqueue freework items that need processing back on the freeblks and
7825 * add the freeblks to the worklist. This makes it easier to find all work
7826 * required to flush a truncation in process_truncates().
7827 */
7828 static void
freework_enqueue(freework)7829 freework_enqueue(freework)
7830 struct freework *freework;
7831 {
7832 struct freeblks *freeblks;
7833
7834 freeblks = freework->fw_freeblks;
7835 if ((freework->fw_state & INPROGRESS) == 0)
7836 WORKLIST_INSERT(&freeblks->fb_freeworkhd, &freework->fw_list);
7837 if ((freeblks->fb_state &
7838 (ONWORKLIST | INPROGRESS | ALLCOMPLETE)) == ALLCOMPLETE &&
7839 LIST_EMPTY(&freeblks->fb_jblkdephd))
7840 add_to_worklist(&freeblks->fb_list, WK_NODELAY);
7841 }
7842
7843 /*
7844 * Start, continue, or finish the process of freeing an indirect block tree.
7845 * The free operation may be paused at any point with fw_off containing the
7846 * offset to restart from. This enables us to implement some flow control
7847 * for large truncates which may fan out and generate a huge number of
7848 * dependencies.
7849 */
7850 static void
handle_workitem_indirblk(freework)7851 handle_workitem_indirblk(freework)
7852 struct freework *freework;
7853 {
7854 struct freeblks *freeblks;
7855 struct ufsmount *ump;
7856 struct fs *fs;
7857
7858 freeblks = freework->fw_freeblks;
7859 ump = VFSTOUFS(freeblks->fb_list.wk_mp);
7860 fs = ump->um_fs;
7861 if (freework->fw_state & DEPCOMPLETE) {
7862 handle_written_freework(freework);
7863 return;
7864 }
7865 if (freework->fw_off == NINDIR(fs)) {
7866 freework_freeblock(freework, SINGLETON_KEY);
7867 return;
7868 }
7869 freework->fw_state |= INPROGRESS;
7870 FREE_LOCK(ump);
7871 indir_trunc(freework, fsbtodb(fs, freework->fw_blkno),
7872 freework->fw_lbn);
7873 ACQUIRE_LOCK(ump);
7874 }
7875
7876 /*
7877 * Called when a freework structure attached to a cg buf is written. The
7878 * ref on either the parent or the freeblks structure is released and
7879 * the freeblks is added back to the worklist if there is more work to do.
7880 */
7881 static void
handle_written_freework(freework)7882 handle_written_freework(freework)
7883 struct freework *freework;
7884 {
7885 struct freeblks *freeblks;
7886 struct freework *parent;
7887
7888 freeblks = freework->fw_freeblks;
7889 parent = freework->fw_parent;
7890 if (freework->fw_state & DELAYEDFREE)
7891 freeblks->fb_cgwait--;
7892 freework->fw_state |= COMPLETE;
7893 if ((freework->fw_state & ALLCOMPLETE) == ALLCOMPLETE)
7894 WORKITEM_FREE(freework, D_FREEWORK);
7895 if (parent) {
7896 if (--parent->fw_ref == 0)
7897 freework_enqueue(parent);
7898 return;
7899 }
7900 if (--freeblks->fb_ref != 0)
7901 return;
7902 if ((freeblks->fb_state & (ALLCOMPLETE | ONWORKLIST | INPROGRESS)) ==
7903 ALLCOMPLETE && LIST_EMPTY(&freeblks->fb_jblkdephd))
7904 add_to_worklist(&freeblks->fb_list, WK_NODELAY);
7905 }
7906
7907 /*
7908 * This workitem routine performs the block de-allocation.
7909 * The workitem is added to the pending list after the updated
7910 * inode block has been written to disk. As mentioned above,
7911 * checks regarding the number of blocks de-allocated (compared
7912 * to the number of blocks allocated for the file) are also
7913 * performed in this function.
7914 */
7915 static int
handle_workitem_freeblocks(freeblks,flags)7916 handle_workitem_freeblocks(freeblks, flags)
7917 struct freeblks *freeblks;
7918 int flags;
7919 {
7920 struct freework *freework;
7921 struct newblk *newblk;
7922 struct allocindir *aip;
7923 struct ufsmount *ump;
7924 struct worklist *wk;
7925 u_long key;
7926
7927 KASSERT(LIST_EMPTY(&freeblks->fb_jblkdephd),
7928 ("handle_workitem_freeblocks: Journal entries not written."));
7929 ump = VFSTOUFS(freeblks->fb_list.wk_mp);
7930 key = ffs_blkrelease_start(ump, freeblks->fb_devvp, freeblks->fb_inum);
7931 ACQUIRE_LOCK(ump);
7932 while ((wk = LIST_FIRST(&freeblks->fb_freeworkhd)) != NULL) {
7933 WORKLIST_REMOVE(wk);
7934 switch (wk->wk_type) {
7935 case D_DIRREM:
7936 wk->wk_state |= COMPLETE;
7937 add_to_worklist(wk, 0);
7938 continue;
7939
7940 case D_ALLOCDIRECT:
7941 free_newblk(WK_NEWBLK(wk));
7942 continue;
7943
7944 case D_ALLOCINDIR:
7945 aip = WK_ALLOCINDIR(wk);
7946 freework = NULL;
7947 if (aip->ai_state & DELAYEDFREE) {
7948 FREE_LOCK(ump);
7949 freework = newfreework(ump, freeblks, NULL,
7950 aip->ai_lbn, aip->ai_newblkno,
7951 ump->um_fs->fs_frag, 0, 0);
7952 ACQUIRE_LOCK(ump);
7953 }
7954 newblk = WK_NEWBLK(wk);
7955 if (newblk->nb_jnewblk) {
7956 freework->fw_jnewblk = newblk->nb_jnewblk;
7957 newblk->nb_jnewblk->jn_dep = &freework->fw_list;
7958 newblk->nb_jnewblk = NULL;
7959 }
7960 free_newblk(newblk);
7961 continue;
7962
7963 case D_FREEWORK:
7964 freework = WK_FREEWORK(wk);
7965 if (freework->fw_lbn <= -UFS_NDADDR)
7966 handle_workitem_indirblk(freework);
7967 else
7968 freework_freeblock(freework, key);
7969 continue;
7970 default:
7971 panic("handle_workitem_freeblocks: Unknown type %s",
7972 TYPENAME(wk->wk_type));
7973 }
7974 }
7975 if (freeblks->fb_ref != 0) {
7976 freeblks->fb_state &= ~INPROGRESS;
7977 wake_worklist(&freeblks->fb_list);
7978 freeblks = NULL;
7979 }
7980 FREE_LOCK(ump);
7981 ffs_blkrelease_finish(ump, key);
7982 if (freeblks)
7983 return handle_complete_freeblocks(freeblks, flags);
7984 return (0);
7985 }
7986
7987 /*
7988 * Handle completion of block free via truncate. This allows fs_pending
7989 * to track the actual free block count more closely than if we only updated
7990 * it at the end. We must be careful to handle cases where the block count
7991 * on free was incorrect.
7992 */
7993 static void
freeblks_free(ump,freeblks,blocks)7994 freeblks_free(ump, freeblks, blocks)
7995 struct ufsmount *ump;
7996 struct freeblks *freeblks;
7997 int blocks;
7998 {
7999 struct fs *fs;
8000 ufs2_daddr_t remain;
8001
8002 UFS_LOCK(ump);
8003 remain = -freeblks->fb_chkcnt;
8004 freeblks->fb_chkcnt += blocks;
8005 if (remain > 0) {
8006 if (remain < blocks)
8007 blocks = remain;
8008 fs = ump->um_fs;
8009 fs->fs_pendingblocks -= blocks;
8010 }
8011 UFS_UNLOCK(ump);
8012 }
8013
8014 /*
8015 * Once all of the freework workitems are complete we can retire the
8016 * freeblocks dependency and any journal work awaiting completion. This
8017 * can not be called until all other dependencies are stable on disk.
8018 */
8019 static int
handle_complete_freeblocks(freeblks,flags)8020 handle_complete_freeblocks(freeblks, flags)
8021 struct freeblks *freeblks;
8022 int flags;
8023 {
8024 struct inodedep *inodedep;
8025 struct inode *ip;
8026 struct vnode *vp;
8027 struct fs *fs;
8028 struct ufsmount *ump;
8029 ufs2_daddr_t spare;
8030
8031 ump = VFSTOUFS(freeblks->fb_list.wk_mp);
8032 fs = ump->um_fs;
8033 flags = LK_EXCLUSIVE | flags;
8034 spare = freeblks->fb_chkcnt;
8035
8036 /*
8037 * If we did not release the expected number of blocks we may have
8038 * to adjust the inode block count here. Only do so if it wasn't
8039 * a truncation to zero and the modrev still matches.
8040 */
8041 if (spare && freeblks->fb_len != 0) {
8042 if (ffs_vgetf(freeblks->fb_list.wk_mp, freeblks->fb_inum,
8043 flags, &vp, FFSV_FORCEINSMQ) != 0)
8044 return (EBUSY);
8045 ip = VTOI(vp);
8046 if (DIP(ip, i_modrev) == freeblks->fb_modrev) {
8047 DIP_SET(ip, i_blocks, DIP(ip, i_blocks) - spare);
8048 ip->i_flag |= IN_CHANGE;
8049 /*
8050 * We must wait so this happens before the
8051 * journal is reclaimed.
8052 */
8053 ffs_update(vp, 1);
8054 }
8055 vput(vp);
8056 }
8057 if (spare < 0) {
8058 UFS_LOCK(ump);
8059 fs->fs_pendingblocks += spare;
8060 UFS_UNLOCK(ump);
8061 }
8062 #ifdef QUOTA
8063 /* Handle spare. */
8064 if (spare)
8065 quotaadj(freeblks->fb_quota, ump, -spare);
8066 quotarele(freeblks->fb_quota);
8067 #endif
8068 ACQUIRE_LOCK(ump);
8069 if (freeblks->fb_state & ONDEPLIST) {
8070 inodedep_lookup(freeblks->fb_list.wk_mp, freeblks->fb_inum,
8071 0, &inodedep);
8072 TAILQ_REMOVE(&inodedep->id_freeblklst, freeblks, fb_next);
8073 freeblks->fb_state &= ~ONDEPLIST;
8074 if (TAILQ_EMPTY(&inodedep->id_freeblklst))
8075 free_inodedep(inodedep);
8076 }
8077 /*
8078 * All of the freeblock deps must be complete prior to this call
8079 * so it's now safe to complete earlier outstanding journal entries.
8080 */
8081 handle_jwork(&freeblks->fb_jwork);
8082 WORKITEM_FREE(freeblks, D_FREEBLKS);
8083 FREE_LOCK(ump);
8084 return (0);
8085 }
8086
8087 /*
8088 * Release blocks associated with the freeblks and stored in the indirect
8089 * block dbn. If level is greater than SINGLE, the block is an indirect block
8090 * and recursive calls to indirtrunc must be used to cleanse other indirect
8091 * blocks.
8092 *
8093 * This handles partial and complete truncation of blocks. Partial is noted
8094 * with goingaway == 0. In this case the freework is completed after the
8095 * zero'd indirects are written to disk. For full truncation the freework
8096 * is completed after the block is freed.
8097 */
8098 static void
indir_trunc(freework,dbn,lbn)8099 indir_trunc(freework, dbn, lbn)
8100 struct freework *freework;
8101 ufs2_daddr_t dbn;
8102 ufs_lbn_t lbn;
8103 {
8104 struct freework *nfreework;
8105 struct workhead wkhd;
8106 struct freeblks *freeblks;
8107 struct buf *bp;
8108 struct fs *fs;
8109 struct indirdep *indirdep;
8110 struct mount *mp;
8111 struct ufsmount *ump;
8112 ufs1_daddr_t *bap1;
8113 ufs2_daddr_t nb, nnb, *bap2;
8114 ufs_lbn_t lbnadd, nlbn;
8115 u_long key;
8116 int nblocks, ufs1fmt, freedblocks;
8117 int goingaway, freedeps, needj, level, cnt, i;
8118
8119 freeblks = freework->fw_freeblks;
8120 mp = freeblks->fb_list.wk_mp;
8121 ump = VFSTOUFS(mp);
8122 fs = ump->um_fs;
8123 /*
8124 * Get buffer of block pointers to be freed. There are three cases:
8125 *
8126 * 1) Partial truncate caches the indirdep pointer in the freework
8127 * which provides us a back copy to the save bp which holds the
8128 * pointers we want to clear. When this completes the zero
8129 * pointers are written to the real copy.
8130 * 2) The indirect is being completely truncated, cancel_indirdep()
8131 * eliminated the real copy and placed the indirdep on the saved
8132 * copy. The indirdep and buf are discarded when this completes.
8133 * 3) The indirect was not in memory, we read a copy off of the disk
8134 * using the devvp and drop and invalidate the buffer when we're
8135 * done.
8136 */
8137 goingaway = 1;
8138 indirdep = NULL;
8139 if (freework->fw_indir != NULL) {
8140 goingaway = 0;
8141 indirdep = freework->fw_indir;
8142 bp = indirdep->ir_savebp;
8143 if (bp == NULL || bp->b_blkno != dbn)
8144 panic("indir_trunc: Bad saved buf %p blkno %jd",
8145 bp, (intmax_t)dbn);
8146 } else if ((bp = incore(&freeblks->fb_devvp->v_bufobj, dbn)) != NULL) {
8147 /*
8148 * The lock prevents the buf dep list from changing and
8149 * indirects on devvp should only ever have one dependency.
8150 */
8151 indirdep = WK_INDIRDEP(LIST_FIRST(&bp->b_dep));
8152 if (indirdep == NULL || (indirdep->ir_state & GOINGAWAY) == 0)
8153 panic("indir_trunc: Bad indirdep %p from buf %p",
8154 indirdep, bp);
8155 } else if (bread(freeblks->fb_devvp, dbn, (int)fs->fs_bsize,
8156 NOCRED, &bp) != 0) {
8157 brelse(bp);
8158 return;
8159 }
8160 ACQUIRE_LOCK(ump);
8161 /* Protects against a race with complete_trunc_indir(). */
8162 freework->fw_state &= ~INPROGRESS;
8163 /*
8164 * If we have an indirdep we need to enforce the truncation order
8165 * and discard it when it is complete.
8166 */
8167 if (indirdep) {
8168 if (freework != TAILQ_FIRST(&indirdep->ir_trunc) &&
8169 !TAILQ_EMPTY(&indirdep->ir_trunc)) {
8170 /*
8171 * Add the complete truncate to the list on the
8172 * indirdep to enforce in-order processing.
8173 */
8174 if (freework->fw_indir == NULL)
8175 TAILQ_INSERT_TAIL(&indirdep->ir_trunc,
8176 freework, fw_next);
8177 FREE_LOCK(ump);
8178 return;
8179 }
8180 /*
8181 * If we're goingaway, free the indirdep. Otherwise it will
8182 * linger until the write completes.
8183 */
8184 if (goingaway)
8185 free_indirdep(indirdep);
8186 }
8187 FREE_LOCK(ump);
8188 /* Initialize pointers depending on block size. */
8189 if (ump->um_fstype == UFS1) {
8190 bap1 = (ufs1_daddr_t *)bp->b_data;
8191 nb = bap1[freework->fw_off];
8192 ufs1fmt = 1;
8193 bap2 = NULL;
8194 } else {
8195 bap2 = (ufs2_daddr_t *)bp->b_data;
8196 nb = bap2[freework->fw_off];
8197 ufs1fmt = 0;
8198 bap1 = NULL;
8199 }
8200 level = lbn_level(lbn);
8201 needj = MOUNTEDSUJ(UFSTOVFS(ump)) != 0;
8202 lbnadd = lbn_offset(fs, level);
8203 nblocks = btodb(fs->fs_bsize);
8204 nfreework = freework;
8205 freedeps = 0;
8206 cnt = 0;
8207 /*
8208 * Reclaim blocks. Traverses into nested indirect levels and
8209 * arranges for the current level to be freed when subordinates
8210 * are free when journaling.
8211 */
8212 key = ffs_blkrelease_start(ump, freeblks->fb_devvp, freeblks->fb_inum);
8213 for (i = freework->fw_off; i < NINDIR(fs); i++, nb = nnb) {
8214 if (UFS_CHECK_BLKNO(mp, freeblks->fb_inum, nb,
8215 fs->fs_bsize) != 0)
8216 nb = 0;
8217 if (i != NINDIR(fs) - 1) {
8218 if (ufs1fmt)
8219 nnb = bap1[i+1];
8220 else
8221 nnb = bap2[i+1];
8222 } else
8223 nnb = 0;
8224 if (nb == 0)
8225 continue;
8226 cnt++;
8227 if (level != 0) {
8228 nlbn = (lbn + 1) - (i * lbnadd);
8229 if (needj != 0) {
8230 nfreework = newfreework(ump, freeblks, freework,
8231 nlbn, nb, fs->fs_frag, 0, 0);
8232 freedeps++;
8233 }
8234 indir_trunc(nfreework, fsbtodb(fs, nb), nlbn);
8235 } else {
8236 struct freedep *freedep;
8237
8238 /*
8239 * Attempt to aggregate freedep dependencies for
8240 * all blocks being released to the same CG.
8241 */
8242 LIST_INIT(&wkhd);
8243 if (needj != 0 &&
8244 (nnb == 0 || (dtog(fs, nb) != dtog(fs, nnb)))) {
8245 freedep = newfreedep(freework);
8246 WORKLIST_INSERT_UNLOCKED(&wkhd,
8247 &freedep->fd_list);
8248 freedeps++;
8249 }
8250 CTR3(KTR_SUJ,
8251 "indir_trunc: ino %jd blkno %jd size %d",
8252 freeblks->fb_inum, nb, fs->fs_bsize);
8253 ffs_blkfree(ump, fs, freeblks->fb_devvp, nb,
8254 fs->fs_bsize, freeblks->fb_inum,
8255 freeblks->fb_vtype, &wkhd, key);
8256 }
8257 }
8258 ffs_blkrelease_finish(ump, key);
8259 if (goingaway) {
8260 bp->b_flags |= B_INVAL | B_NOCACHE;
8261 brelse(bp);
8262 }
8263 freedblocks = 0;
8264 if (level == 0)
8265 freedblocks = (nblocks * cnt);
8266 if (needj == 0)
8267 freedblocks += nblocks;
8268 freeblks_free(ump, freeblks, freedblocks);
8269 /*
8270 * If we are journaling set up the ref counts and offset so this
8271 * indirect can be completed when its children are free.
8272 */
8273 if (needj) {
8274 ACQUIRE_LOCK(ump);
8275 freework->fw_off = i;
8276 freework->fw_ref += freedeps;
8277 freework->fw_ref -= NINDIR(fs) + 1;
8278 if (level == 0)
8279 freeblks->fb_cgwait += freedeps;
8280 if (freework->fw_ref == 0)
8281 freework_freeblock(freework, SINGLETON_KEY);
8282 FREE_LOCK(ump);
8283 return;
8284 }
8285 /*
8286 * If we're not journaling we can free the indirect now.
8287 */
8288 dbn = dbtofsb(fs, dbn);
8289 CTR3(KTR_SUJ,
8290 "indir_trunc 2: ino %jd blkno %jd size %d",
8291 freeblks->fb_inum, dbn, fs->fs_bsize);
8292 ffs_blkfree(ump, fs, freeblks->fb_devvp, dbn, fs->fs_bsize,
8293 freeblks->fb_inum, freeblks->fb_vtype, NULL, SINGLETON_KEY);
8294 /* Non SUJ softdep does single-threaded truncations. */
8295 if (freework->fw_blkno == dbn) {
8296 freework->fw_state |= ALLCOMPLETE;
8297 ACQUIRE_LOCK(ump);
8298 handle_written_freework(freework);
8299 FREE_LOCK(ump);
8300 }
8301 return;
8302 }
8303
8304 /*
8305 * Cancel an allocindir when it is removed via truncation. When bp is not
8306 * NULL the indirect never appeared on disk and is scheduled to be freed
8307 * independently of the indir so we can more easily track journal work.
8308 */
8309 static void
cancel_allocindir(aip,bp,freeblks,trunc)8310 cancel_allocindir(aip, bp, freeblks, trunc)
8311 struct allocindir *aip;
8312 struct buf *bp;
8313 struct freeblks *freeblks;
8314 int trunc;
8315 {
8316 struct indirdep *indirdep;
8317 struct freefrag *freefrag;
8318 struct newblk *newblk;
8319
8320 newblk = (struct newblk *)aip;
8321 LIST_REMOVE(aip, ai_next);
8322 /*
8323 * We must eliminate the pointer in bp if it must be freed on its
8324 * own due to partial truncate or pending journal work.
8325 */
8326 if (bp && (trunc || newblk->nb_jnewblk)) {
8327 /*
8328 * Clear the pointer and mark the aip to be freed
8329 * directly if it never existed on disk.
8330 */
8331 aip->ai_state |= DELAYEDFREE;
8332 indirdep = aip->ai_indirdep;
8333 if (indirdep->ir_state & UFS1FMT)
8334 ((ufs1_daddr_t *)bp->b_data)[aip->ai_offset] = 0;
8335 else
8336 ((ufs2_daddr_t *)bp->b_data)[aip->ai_offset] = 0;
8337 }
8338 /*
8339 * When truncating the previous pointer will be freed via
8340 * savedbp. Eliminate the freefrag which would dup free.
8341 */
8342 if (trunc && (freefrag = newblk->nb_freefrag) != NULL) {
8343 newblk->nb_freefrag = NULL;
8344 if (freefrag->ff_jdep)
8345 cancel_jfreefrag(
8346 WK_JFREEFRAG(freefrag->ff_jdep));
8347 jwork_move(&freeblks->fb_jwork, &freefrag->ff_jwork);
8348 WORKITEM_FREE(freefrag, D_FREEFRAG);
8349 }
8350 /*
8351 * If the journal hasn't been written the jnewblk must be passed
8352 * to the call to ffs_blkfree that reclaims the space. We accomplish
8353 * this by leaving the journal dependency on the newblk to be freed
8354 * when a freework is created in handle_workitem_freeblocks().
8355 */
8356 cancel_newblk(newblk, NULL, &freeblks->fb_jwork);
8357 WORKLIST_INSERT(&freeblks->fb_freeworkhd, &newblk->nb_list);
8358 }
8359
8360 /*
8361 * Create the mkdir dependencies for . and .. in a new directory. Link them
8362 * in to a newdirblk so any subsequent additions are tracked properly. The
8363 * caller is responsible for adding the mkdir1 dependency to the journal
8364 * and updating id_mkdiradd. This function returns with the per-filesystem
8365 * lock held.
8366 */
8367 static struct mkdir *
setup_newdir(dap,newinum,dinum,newdirbp,mkdirp)8368 setup_newdir(dap, newinum, dinum, newdirbp, mkdirp)
8369 struct diradd *dap;
8370 ino_t newinum;
8371 ino_t dinum;
8372 struct buf *newdirbp;
8373 struct mkdir **mkdirp;
8374 {
8375 struct newblk *newblk;
8376 struct pagedep *pagedep;
8377 struct inodedep *inodedep;
8378 struct newdirblk *newdirblk;
8379 struct mkdir *mkdir1, *mkdir2;
8380 struct worklist *wk;
8381 struct jaddref *jaddref;
8382 struct ufsmount *ump;
8383 struct mount *mp;
8384
8385 mp = dap->da_list.wk_mp;
8386 ump = VFSTOUFS(mp);
8387 newdirblk = malloc(sizeof(struct newdirblk), M_NEWDIRBLK,
8388 M_SOFTDEP_FLAGS);
8389 workitem_alloc(&newdirblk->db_list, D_NEWDIRBLK, mp);
8390 LIST_INIT(&newdirblk->db_mkdir);
8391 mkdir1 = malloc(sizeof(struct mkdir), M_MKDIR, M_SOFTDEP_FLAGS);
8392 workitem_alloc(&mkdir1->md_list, D_MKDIR, mp);
8393 mkdir1->md_state = ATTACHED | MKDIR_BODY;
8394 mkdir1->md_diradd = dap;
8395 mkdir1->md_jaddref = NULL;
8396 mkdir2 = malloc(sizeof(struct mkdir), M_MKDIR, M_SOFTDEP_FLAGS);
8397 workitem_alloc(&mkdir2->md_list, D_MKDIR, mp);
8398 mkdir2->md_state = ATTACHED | MKDIR_PARENT;
8399 mkdir2->md_diradd = dap;
8400 mkdir2->md_jaddref = NULL;
8401 if (MOUNTEDSUJ(mp) == 0) {
8402 mkdir1->md_state |= DEPCOMPLETE;
8403 mkdir2->md_state |= DEPCOMPLETE;
8404 }
8405 /*
8406 * Dependency on "." and ".." being written to disk.
8407 */
8408 mkdir1->md_buf = newdirbp;
8409 ACQUIRE_LOCK(VFSTOUFS(mp));
8410 LIST_INSERT_HEAD(&ump->softdep_mkdirlisthd, mkdir1, md_mkdirs);
8411 /*
8412 * We must link the pagedep, allocdirect, and newdirblk for
8413 * the initial file page so the pointer to the new directory
8414 * is not written until the directory contents are live and
8415 * any subsequent additions are not marked live until the
8416 * block is reachable via the inode.
8417 */
8418 if (pagedep_lookup(mp, newdirbp, newinum, 0, 0, &pagedep) == 0)
8419 panic("setup_newdir: lost pagedep");
8420 LIST_FOREACH(wk, &newdirbp->b_dep, wk_list)
8421 if (wk->wk_type == D_ALLOCDIRECT)
8422 break;
8423 if (wk == NULL)
8424 panic("setup_newdir: lost allocdirect");
8425 if (pagedep->pd_state & NEWBLOCK)
8426 panic("setup_newdir: NEWBLOCK already set");
8427 newblk = WK_NEWBLK(wk);
8428 pagedep->pd_state |= NEWBLOCK;
8429 pagedep->pd_newdirblk = newdirblk;
8430 newdirblk->db_pagedep = pagedep;
8431 WORKLIST_INSERT(&newblk->nb_newdirblk, &newdirblk->db_list);
8432 WORKLIST_INSERT(&newdirblk->db_mkdir, &mkdir1->md_list);
8433 /*
8434 * Look up the inodedep for the parent directory so that we
8435 * can link mkdir2 into the pending dotdot jaddref or
8436 * the inode write if there is none. If the inode is
8437 * ALLCOMPLETE and no jaddref is present all dependencies have
8438 * been satisfied and mkdir2 can be freed.
8439 */
8440 inodedep_lookup(mp, dinum, 0, &inodedep);
8441 if (MOUNTEDSUJ(mp)) {
8442 if (inodedep == NULL)
8443 panic("setup_newdir: Lost parent.");
8444 jaddref = (struct jaddref *)TAILQ_LAST(&inodedep->id_inoreflst,
8445 inoreflst);
8446 KASSERT(jaddref != NULL && jaddref->ja_parent == newinum &&
8447 (jaddref->ja_state & MKDIR_PARENT),
8448 ("setup_newdir: bad dotdot jaddref %p", jaddref));
8449 LIST_INSERT_HEAD(&ump->softdep_mkdirlisthd, mkdir2, md_mkdirs);
8450 mkdir2->md_jaddref = jaddref;
8451 jaddref->ja_mkdir = mkdir2;
8452 } else if (inodedep == NULL ||
8453 (inodedep->id_state & ALLCOMPLETE) == ALLCOMPLETE) {
8454 dap->da_state &= ~MKDIR_PARENT;
8455 WORKITEM_FREE(mkdir2, D_MKDIR);
8456 mkdir2 = NULL;
8457 } else {
8458 LIST_INSERT_HEAD(&ump->softdep_mkdirlisthd, mkdir2, md_mkdirs);
8459 WORKLIST_INSERT(&inodedep->id_bufwait, &mkdir2->md_list);
8460 }
8461 *mkdirp = mkdir2;
8462
8463 return (mkdir1);
8464 }
8465
8466 /*
8467 * Directory entry addition dependencies.
8468 *
8469 * When adding a new directory entry, the inode (with its incremented link
8470 * count) must be written to disk before the directory entry's pointer to it.
8471 * Also, if the inode is newly allocated, the corresponding freemap must be
8472 * updated (on disk) before the directory entry's pointer. These requirements
8473 * are met via undo/redo on the directory entry's pointer, which consists
8474 * simply of the inode number.
8475 *
8476 * As directory entries are added and deleted, the free space within a
8477 * directory block can become fragmented. The ufs filesystem will compact
8478 * a fragmented directory block to make space for a new entry. When this
8479 * occurs, the offsets of previously added entries change. Any "diradd"
8480 * dependency structures corresponding to these entries must be updated with
8481 * the new offsets.
8482 */
8483
8484 /*
8485 * This routine is called after the in-memory inode's link
8486 * count has been incremented, but before the directory entry's
8487 * pointer to the inode has been set.
8488 */
8489 int
softdep_setup_directory_add(bp,dp,diroffset,newinum,newdirbp,isnewblk)8490 softdep_setup_directory_add(bp, dp, diroffset, newinum, newdirbp, isnewblk)
8491 struct buf *bp; /* buffer containing directory block */
8492 struct inode *dp; /* inode for directory */
8493 off_t diroffset; /* offset of new entry in directory */
8494 ino_t newinum; /* inode referenced by new directory entry */
8495 struct buf *newdirbp; /* non-NULL => contents of new mkdir */
8496 int isnewblk; /* entry is in a newly allocated block */
8497 {
8498 int offset; /* offset of new entry within directory block */
8499 ufs_lbn_t lbn; /* block in directory containing new entry */
8500 struct fs *fs;
8501 struct diradd *dap;
8502 struct newblk *newblk;
8503 struct pagedep *pagedep;
8504 struct inodedep *inodedep;
8505 struct newdirblk *newdirblk;
8506 struct mkdir *mkdir1, *mkdir2;
8507 struct jaddref *jaddref;
8508 struct ufsmount *ump;
8509 struct mount *mp;
8510 int isindir;
8511
8512 mp = ITOVFS(dp);
8513 ump = VFSTOUFS(mp);
8514 KASSERT(MOUNTEDSOFTDEP(mp) != 0,
8515 ("softdep_setup_directory_add called on non-softdep filesystem"));
8516 /*
8517 * Whiteouts have no dependencies.
8518 */
8519 if (newinum == UFS_WINO) {
8520 if (newdirbp != NULL)
8521 bdwrite(newdirbp);
8522 return (0);
8523 }
8524 jaddref = NULL;
8525 mkdir1 = mkdir2 = NULL;
8526 fs = ump->um_fs;
8527 lbn = lblkno(fs, diroffset);
8528 offset = blkoff(fs, diroffset);
8529 dap = malloc(sizeof(struct diradd), M_DIRADD,
8530 M_SOFTDEP_FLAGS|M_ZERO);
8531 workitem_alloc(&dap->da_list, D_DIRADD, mp);
8532 dap->da_offset = offset;
8533 dap->da_newinum = newinum;
8534 dap->da_state = ATTACHED;
8535 LIST_INIT(&dap->da_jwork);
8536 isindir = bp->b_lblkno >= UFS_NDADDR;
8537 newdirblk = NULL;
8538 if (isnewblk &&
8539 (isindir ? blkoff(fs, diroffset) : fragoff(fs, diroffset)) == 0) {
8540 newdirblk = malloc(sizeof(struct newdirblk),
8541 M_NEWDIRBLK, M_SOFTDEP_FLAGS);
8542 workitem_alloc(&newdirblk->db_list, D_NEWDIRBLK, mp);
8543 LIST_INIT(&newdirblk->db_mkdir);
8544 }
8545 /*
8546 * If we're creating a new directory setup the dependencies and set
8547 * the dap state to wait for them. Otherwise it's COMPLETE and
8548 * we can move on.
8549 */
8550 if (newdirbp == NULL) {
8551 dap->da_state |= DEPCOMPLETE;
8552 ACQUIRE_LOCK(ump);
8553 } else {
8554 dap->da_state |= MKDIR_BODY | MKDIR_PARENT;
8555 mkdir1 = setup_newdir(dap, newinum, dp->i_number, newdirbp,
8556 &mkdir2);
8557 }
8558 /*
8559 * Link into parent directory pagedep to await its being written.
8560 */
8561 pagedep_lookup(mp, bp, dp->i_number, lbn, DEPALLOC, &pagedep);
8562 #ifdef DEBUG
8563 if (diradd_lookup(pagedep, offset) != NULL)
8564 panic("softdep_setup_directory_add: %p already at off %d\n",
8565 diradd_lookup(pagedep, offset), offset);
8566 #endif
8567 dap->da_pagedep = pagedep;
8568 LIST_INSERT_HEAD(&pagedep->pd_diraddhd[DIRADDHASH(offset)], dap,
8569 da_pdlist);
8570 inodedep_lookup(mp, newinum, DEPALLOC, &inodedep);
8571 /*
8572 * If we're journaling, link the diradd into the jaddref so it
8573 * may be completed after the journal entry is written. Otherwise,
8574 * link the diradd into its inodedep. If the inode is not yet
8575 * written place it on the bufwait list, otherwise do the post-inode
8576 * write processing to put it on the id_pendinghd list.
8577 */
8578 if (MOUNTEDSUJ(mp)) {
8579 jaddref = (struct jaddref *)TAILQ_LAST(&inodedep->id_inoreflst,
8580 inoreflst);
8581 KASSERT(jaddref != NULL && jaddref->ja_parent == dp->i_number,
8582 ("softdep_setup_directory_add: bad jaddref %p", jaddref));
8583 jaddref->ja_diroff = diroffset;
8584 jaddref->ja_diradd = dap;
8585 add_to_journal(&jaddref->ja_list);
8586 } else if ((inodedep->id_state & ALLCOMPLETE) == ALLCOMPLETE)
8587 diradd_inode_written(dap, inodedep);
8588 else
8589 WORKLIST_INSERT(&inodedep->id_bufwait, &dap->da_list);
8590 /*
8591 * Add the journal entries for . and .. links now that the primary
8592 * link is written.
8593 */
8594 if (mkdir1 != NULL && MOUNTEDSUJ(mp)) {
8595 jaddref = (struct jaddref *)TAILQ_PREV(&jaddref->ja_ref,
8596 inoreflst, if_deps);
8597 KASSERT(jaddref != NULL &&
8598 jaddref->ja_ino == jaddref->ja_parent &&
8599 (jaddref->ja_state & MKDIR_BODY),
8600 ("softdep_setup_directory_add: bad dot jaddref %p",
8601 jaddref));
8602 mkdir1->md_jaddref = jaddref;
8603 jaddref->ja_mkdir = mkdir1;
8604 /*
8605 * It is important that the dotdot journal entry
8606 * is added prior to the dot entry since dot writes
8607 * both the dot and dotdot links. These both must
8608 * be added after the primary link for the journal
8609 * to remain consistent.
8610 */
8611 add_to_journal(&mkdir2->md_jaddref->ja_list);
8612 add_to_journal(&jaddref->ja_list);
8613 }
8614 /*
8615 * If we are adding a new directory remember this diradd so that if
8616 * we rename it we can keep the dot and dotdot dependencies. If
8617 * we are adding a new name for an inode that has a mkdiradd we
8618 * must be in rename and we have to move the dot and dotdot
8619 * dependencies to this new name. The old name is being orphaned
8620 * soon.
8621 */
8622 if (mkdir1 != NULL) {
8623 if (inodedep->id_mkdiradd != NULL)
8624 panic("softdep_setup_directory_add: Existing mkdir");
8625 inodedep->id_mkdiradd = dap;
8626 } else if (inodedep->id_mkdiradd)
8627 merge_diradd(inodedep, dap);
8628 if (newdirblk != NULL) {
8629 /*
8630 * There is nothing to do if we are already tracking
8631 * this block.
8632 */
8633 if ((pagedep->pd_state & NEWBLOCK) != 0) {
8634 WORKITEM_FREE(newdirblk, D_NEWDIRBLK);
8635 FREE_LOCK(ump);
8636 return (0);
8637 }
8638 if (newblk_lookup(mp, dbtofsb(fs, bp->b_blkno), 0, &newblk)
8639 == 0)
8640 panic("softdep_setup_directory_add: lost entry");
8641 WORKLIST_INSERT(&newblk->nb_newdirblk, &newdirblk->db_list);
8642 pagedep->pd_state |= NEWBLOCK;
8643 pagedep->pd_newdirblk = newdirblk;
8644 newdirblk->db_pagedep = pagedep;
8645 FREE_LOCK(ump);
8646 /*
8647 * If we extended into an indirect signal direnter to sync.
8648 */
8649 if (isindir)
8650 return (1);
8651 return (0);
8652 }
8653 FREE_LOCK(ump);
8654 return (0);
8655 }
8656
8657 /*
8658 * This procedure is called to change the offset of a directory
8659 * entry when compacting a directory block which must be owned
8660 * exclusively by the caller. Note that the actual entry movement
8661 * must be done in this procedure to ensure that no I/O completions
8662 * occur while the move is in progress.
8663 */
8664 void
softdep_change_directoryentry_offset(bp,dp,base,oldloc,newloc,entrysize)8665 softdep_change_directoryentry_offset(bp, dp, base, oldloc, newloc, entrysize)
8666 struct buf *bp; /* Buffer holding directory block. */
8667 struct inode *dp; /* inode for directory */
8668 caddr_t base; /* address of dp->i_offset */
8669 caddr_t oldloc; /* address of old directory location */
8670 caddr_t newloc; /* address of new directory location */
8671 int entrysize; /* size of directory entry */
8672 {
8673 int offset, oldoffset, newoffset;
8674 struct pagedep *pagedep;
8675 struct jmvref *jmvref;
8676 struct diradd *dap;
8677 struct direct *de;
8678 struct mount *mp;
8679 struct ufsmount *ump;
8680 ufs_lbn_t lbn;
8681 int flags;
8682
8683 mp = ITOVFS(dp);
8684 ump = VFSTOUFS(mp);
8685 KASSERT(MOUNTEDSOFTDEP(mp) != 0,
8686 ("softdep_change_directoryentry_offset called on "
8687 "non-softdep filesystem"));
8688 de = (struct direct *)oldloc;
8689 jmvref = NULL;
8690 flags = 0;
8691 /*
8692 * Moves are always journaled as it would be too complex to
8693 * determine if any affected adds or removes are present in the
8694 * journal.
8695 */
8696 if (MOUNTEDSUJ(mp)) {
8697 flags = DEPALLOC;
8698 jmvref = newjmvref(dp, de->d_ino,
8699 dp->i_offset + (oldloc - base),
8700 dp->i_offset + (newloc - base));
8701 }
8702 lbn = lblkno(ump->um_fs, dp->i_offset);
8703 offset = blkoff(ump->um_fs, dp->i_offset);
8704 oldoffset = offset + (oldloc - base);
8705 newoffset = offset + (newloc - base);
8706 ACQUIRE_LOCK(ump);
8707 if (pagedep_lookup(mp, bp, dp->i_number, lbn, flags, &pagedep) == 0)
8708 goto done;
8709 dap = diradd_lookup(pagedep, oldoffset);
8710 if (dap) {
8711 dap->da_offset = newoffset;
8712 newoffset = DIRADDHASH(newoffset);
8713 oldoffset = DIRADDHASH(oldoffset);
8714 if ((dap->da_state & ALLCOMPLETE) != ALLCOMPLETE &&
8715 newoffset != oldoffset) {
8716 LIST_REMOVE(dap, da_pdlist);
8717 LIST_INSERT_HEAD(&pagedep->pd_diraddhd[newoffset],
8718 dap, da_pdlist);
8719 }
8720 }
8721 done:
8722 if (jmvref) {
8723 jmvref->jm_pagedep = pagedep;
8724 LIST_INSERT_HEAD(&pagedep->pd_jmvrefhd, jmvref, jm_deps);
8725 add_to_journal(&jmvref->jm_list);
8726 }
8727 bcopy(oldloc, newloc, entrysize);
8728 FREE_LOCK(ump);
8729 }
8730
8731 /*
8732 * Move the mkdir dependencies and journal work from one diradd to another
8733 * when renaming a directory. The new name must depend on the mkdir deps
8734 * completing as the old name did. Directories can only have one valid link
8735 * at a time so one must be canonical.
8736 */
8737 static void
merge_diradd(inodedep,newdap)8738 merge_diradd(inodedep, newdap)
8739 struct inodedep *inodedep;
8740 struct diradd *newdap;
8741 {
8742 struct diradd *olddap;
8743 struct mkdir *mkdir, *nextmd;
8744 struct ufsmount *ump;
8745 short state;
8746
8747 olddap = inodedep->id_mkdiradd;
8748 inodedep->id_mkdiradd = newdap;
8749 if ((olddap->da_state & (MKDIR_PARENT | MKDIR_BODY)) != 0) {
8750 newdap->da_state &= ~DEPCOMPLETE;
8751 ump = VFSTOUFS(inodedep->id_list.wk_mp);
8752 for (mkdir = LIST_FIRST(&ump->softdep_mkdirlisthd); mkdir;
8753 mkdir = nextmd) {
8754 nextmd = LIST_NEXT(mkdir, md_mkdirs);
8755 if (mkdir->md_diradd != olddap)
8756 continue;
8757 mkdir->md_diradd = newdap;
8758 state = mkdir->md_state & (MKDIR_PARENT | MKDIR_BODY);
8759 newdap->da_state |= state;
8760 olddap->da_state &= ~state;
8761 if ((olddap->da_state &
8762 (MKDIR_PARENT | MKDIR_BODY)) == 0)
8763 break;
8764 }
8765 if ((olddap->da_state & (MKDIR_PARENT | MKDIR_BODY)) != 0)
8766 panic("merge_diradd: unfound ref");
8767 }
8768 /*
8769 * Any mkdir related journal items are not safe to be freed until
8770 * the new name is stable.
8771 */
8772 jwork_move(&newdap->da_jwork, &olddap->da_jwork);
8773 olddap->da_state |= DEPCOMPLETE;
8774 complete_diradd(olddap);
8775 }
8776
8777 /*
8778 * Move the diradd to the pending list when all diradd dependencies are
8779 * complete.
8780 */
8781 static void
complete_diradd(dap)8782 complete_diradd(dap)
8783 struct diradd *dap;
8784 {
8785 struct pagedep *pagedep;
8786
8787 if ((dap->da_state & ALLCOMPLETE) == ALLCOMPLETE) {
8788 if (dap->da_state & DIRCHG)
8789 pagedep = dap->da_previous->dm_pagedep;
8790 else
8791 pagedep = dap->da_pagedep;
8792 LIST_REMOVE(dap, da_pdlist);
8793 LIST_INSERT_HEAD(&pagedep->pd_pendinghd, dap, da_pdlist);
8794 }
8795 }
8796
8797 /*
8798 * Cancel a diradd when a dirrem overlaps with it. We must cancel the journal
8799 * add entries and conditonally journal the remove.
8800 */
8801 static void
cancel_diradd(dap,dirrem,jremref,dotremref,dotdotremref)8802 cancel_diradd(dap, dirrem, jremref, dotremref, dotdotremref)
8803 struct diradd *dap;
8804 struct dirrem *dirrem;
8805 struct jremref *jremref;
8806 struct jremref *dotremref;
8807 struct jremref *dotdotremref;
8808 {
8809 struct inodedep *inodedep;
8810 struct jaddref *jaddref;
8811 struct inoref *inoref;
8812 struct ufsmount *ump;
8813 struct mkdir *mkdir;
8814
8815 /*
8816 * If no remove references were allocated we're on a non-journaled
8817 * filesystem and can skip the cancel step.
8818 */
8819 if (jremref == NULL) {
8820 free_diradd(dap, NULL);
8821 return;
8822 }
8823 /*
8824 * Cancel the primary name an free it if it does not require
8825 * journaling.
8826 */
8827 if (inodedep_lookup(dap->da_list.wk_mp, dap->da_newinum,
8828 0, &inodedep) != 0) {
8829 /* Abort the addref that reference this diradd. */
8830 TAILQ_FOREACH(inoref, &inodedep->id_inoreflst, if_deps) {
8831 if (inoref->if_list.wk_type != D_JADDREF)
8832 continue;
8833 jaddref = (struct jaddref *)inoref;
8834 if (jaddref->ja_diradd != dap)
8835 continue;
8836 if (cancel_jaddref(jaddref, inodedep,
8837 &dirrem->dm_jwork) == 0) {
8838 free_jremref(jremref);
8839 jremref = NULL;
8840 }
8841 break;
8842 }
8843 }
8844 /*
8845 * Cancel subordinate names and free them if they do not require
8846 * journaling.
8847 */
8848 if ((dap->da_state & (MKDIR_PARENT | MKDIR_BODY)) != 0) {
8849 ump = VFSTOUFS(dap->da_list.wk_mp);
8850 LIST_FOREACH(mkdir, &ump->softdep_mkdirlisthd, md_mkdirs) {
8851 if (mkdir->md_diradd != dap)
8852 continue;
8853 if ((jaddref = mkdir->md_jaddref) == NULL)
8854 continue;
8855 mkdir->md_jaddref = NULL;
8856 if (mkdir->md_state & MKDIR_PARENT) {
8857 if (cancel_jaddref(jaddref, NULL,
8858 &dirrem->dm_jwork) == 0) {
8859 free_jremref(dotdotremref);
8860 dotdotremref = NULL;
8861 }
8862 } else {
8863 if (cancel_jaddref(jaddref, inodedep,
8864 &dirrem->dm_jwork) == 0) {
8865 free_jremref(dotremref);
8866 dotremref = NULL;
8867 }
8868 }
8869 }
8870 }
8871
8872 if (jremref)
8873 journal_jremref(dirrem, jremref, inodedep);
8874 if (dotremref)
8875 journal_jremref(dirrem, dotremref, inodedep);
8876 if (dotdotremref)
8877 journal_jremref(dirrem, dotdotremref, NULL);
8878 jwork_move(&dirrem->dm_jwork, &dap->da_jwork);
8879 free_diradd(dap, &dirrem->dm_jwork);
8880 }
8881
8882 /*
8883 * Free a diradd dependency structure.
8884 */
8885 static void
free_diradd(dap,wkhd)8886 free_diradd(dap, wkhd)
8887 struct diradd *dap;
8888 struct workhead *wkhd;
8889 {
8890 struct dirrem *dirrem;
8891 struct pagedep *pagedep;
8892 struct inodedep *inodedep;
8893 struct mkdir *mkdir, *nextmd;
8894 struct ufsmount *ump;
8895
8896 ump = VFSTOUFS(dap->da_list.wk_mp);
8897 LOCK_OWNED(ump);
8898 LIST_REMOVE(dap, da_pdlist);
8899 if (dap->da_state & ONWORKLIST)
8900 WORKLIST_REMOVE(&dap->da_list);
8901 if ((dap->da_state & DIRCHG) == 0) {
8902 pagedep = dap->da_pagedep;
8903 } else {
8904 dirrem = dap->da_previous;
8905 pagedep = dirrem->dm_pagedep;
8906 dirrem->dm_dirinum = pagedep->pd_ino;
8907 dirrem->dm_state |= COMPLETE;
8908 if (LIST_EMPTY(&dirrem->dm_jremrefhd))
8909 add_to_worklist(&dirrem->dm_list, 0);
8910 }
8911 if (inodedep_lookup(pagedep->pd_list.wk_mp, dap->da_newinum,
8912 0, &inodedep) != 0)
8913 if (inodedep->id_mkdiradd == dap)
8914 inodedep->id_mkdiradd = NULL;
8915 if ((dap->da_state & (MKDIR_PARENT | MKDIR_BODY)) != 0) {
8916 for (mkdir = LIST_FIRST(&ump->softdep_mkdirlisthd); mkdir;
8917 mkdir = nextmd) {
8918 nextmd = LIST_NEXT(mkdir, md_mkdirs);
8919 if (mkdir->md_diradd != dap)
8920 continue;
8921 dap->da_state &=
8922 ~(mkdir->md_state & (MKDIR_PARENT | MKDIR_BODY));
8923 LIST_REMOVE(mkdir, md_mkdirs);
8924 if (mkdir->md_state & ONWORKLIST)
8925 WORKLIST_REMOVE(&mkdir->md_list);
8926 if (mkdir->md_jaddref != NULL)
8927 panic("free_diradd: Unexpected jaddref");
8928 WORKITEM_FREE(mkdir, D_MKDIR);
8929 if ((dap->da_state & (MKDIR_PARENT | MKDIR_BODY)) == 0)
8930 break;
8931 }
8932 if ((dap->da_state & (MKDIR_PARENT | MKDIR_BODY)) != 0)
8933 panic("free_diradd: unfound ref");
8934 }
8935 if (inodedep)
8936 free_inodedep(inodedep);
8937 /*
8938 * Free any journal segments waiting for the directory write.
8939 */
8940 handle_jwork(&dap->da_jwork);
8941 WORKITEM_FREE(dap, D_DIRADD);
8942 }
8943
8944 /*
8945 * Directory entry removal dependencies.
8946 *
8947 * When removing a directory entry, the entry's inode pointer must be
8948 * zero'ed on disk before the corresponding inode's link count is decremented
8949 * (possibly freeing the inode for re-use). This dependency is handled by
8950 * updating the directory entry but delaying the inode count reduction until
8951 * after the directory block has been written to disk. After this point, the
8952 * inode count can be decremented whenever it is convenient.
8953 */
8954
8955 /*
8956 * This routine should be called immediately after removing
8957 * a directory entry. The inode's link count should not be
8958 * decremented by the calling procedure -- the soft updates
8959 * code will do this task when it is safe.
8960 */
8961 void
softdep_setup_remove(bp,dp,ip,isrmdir)8962 softdep_setup_remove(bp, dp, ip, isrmdir)
8963 struct buf *bp; /* buffer containing directory block */
8964 struct inode *dp; /* inode for the directory being modified */
8965 struct inode *ip; /* inode for directory entry being removed */
8966 int isrmdir; /* indicates if doing RMDIR */
8967 {
8968 struct dirrem *dirrem, *prevdirrem;
8969 struct inodedep *inodedep;
8970 struct ufsmount *ump;
8971 int direct;
8972
8973 ump = ITOUMP(ip);
8974 KASSERT(MOUNTEDSOFTDEP(UFSTOVFS(ump)) != 0,
8975 ("softdep_setup_remove called on non-softdep filesystem"));
8976 /*
8977 * Allocate a new dirrem if appropriate and ACQUIRE_LOCK. We want
8978 * newdirrem() to setup the full directory remove which requires
8979 * isrmdir > 1.
8980 */
8981 dirrem = newdirrem(bp, dp, ip, isrmdir, &prevdirrem);
8982 /*
8983 * Add the dirrem to the inodedep's pending remove list for quick
8984 * discovery later.
8985 */
8986 if (inodedep_lookup(UFSTOVFS(ump), ip->i_number, 0, &inodedep) == 0)
8987 panic("softdep_setup_remove: Lost inodedep.");
8988 KASSERT((inodedep->id_state & UNLINKED) == 0, ("inode unlinked"));
8989 dirrem->dm_state |= ONDEPLIST;
8990 LIST_INSERT_HEAD(&inodedep->id_dirremhd, dirrem, dm_inonext);
8991
8992 /*
8993 * If the COMPLETE flag is clear, then there were no active
8994 * entries and we want to roll back to a zeroed entry until
8995 * the new inode is committed to disk. If the COMPLETE flag is
8996 * set then we have deleted an entry that never made it to
8997 * disk. If the entry we deleted resulted from a name change,
8998 * then the old name still resides on disk. We cannot delete
8999 * its inode (returned to us in prevdirrem) until the zeroed
9000 * directory entry gets to disk. The new inode has never been
9001 * referenced on the disk, so can be deleted immediately.
9002 */
9003 if ((dirrem->dm_state & COMPLETE) == 0) {
9004 LIST_INSERT_HEAD(&dirrem->dm_pagedep->pd_dirremhd, dirrem,
9005 dm_next);
9006 FREE_LOCK(ump);
9007 } else {
9008 if (prevdirrem != NULL)
9009 LIST_INSERT_HEAD(&dirrem->dm_pagedep->pd_dirremhd,
9010 prevdirrem, dm_next);
9011 dirrem->dm_dirinum = dirrem->dm_pagedep->pd_ino;
9012 direct = LIST_EMPTY(&dirrem->dm_jremrefhd);
9013 FREE_LOCK(ump);
9014 if (direct)
9015 handle_workitem_remove(dirrem, 0);
9016 }
9017 }
9018
9019 /*
9020 * Check for an entry matching 'offset' on both the pd_dirraddhd list and the
9021 * pd_pendinghd list of a pagedep.
9022 */
9023 static struct diradd *
diradd_lookup(pagedep,offset)9024 diradd_lookup(pagedep, offset)
9025 struct pagedep *pagedep;
9026 int offset;
9027 {
9028 struct diradd *dap;
9029
9030 LIST_FOREACH(dap, &pagedep->pd_diraddhd[DIRADDHASH(offset)], da_pdlist)
9031 if (dap->da_offset == offset)
9032 return (dap);
9033 LIST_FOREACH(dap, &pagedep->pd_pendinghd, da_pdlist)
9034 if (dap->da_offset == offset)
9035 return (dap);
9036 return (NULL);
9037 }
9038
9039 /*
9040 * Search for a .. diradd dependency in a directory that is being removed.
9041 * If the directory was renamed to a new parent we have a diradd rather
9042 * than a mkdir for the .. entry. We need to cancel it now before
9043 * it is found in truncate().
9044 */
9045 static struct jremref *
cancel_diradd_dotdot(ip,dirrem,jremref)9046 cancel_diradd_dotdot(ip, dirrem, jremref)
9047 struct inode *ip;
9048 struct dirrem *dirrem;
9049 struct jremref *jremref;
9050 {
9051 struct pagedep *pagedep;
9052 struct diradd *dap;
9053 struct worklist *wk;
9054
9055 if (pagedep_lookup(ITOVFS(ip), NULL, ip->i_number, 0, 0, &pagedep) == 0)
9056 return (jremref);
9057 dap = diradd_lookup(pagedep, DOTDOT_OFFSET);
9058 if (dap == NULL)
9059 return (jremref);
9060 cancel_diradd(dap, dirrem, jremref, NULL, NULL);
9061 /*
9062 * Mark any journal work as belonging to the parent so it is freed
9063 * with the .. reference.
9064 */
9065 LIST_FOREACH(wk, &dirrem->dm_jwork, wk_list)
9066 wk->wk_state |= MKDIR_PARENT;
9067 return (NULL);
9068 }
9069
9070 /*
9071 * Cancel the MKDIR_PARENT mkdir component of a diradd when we're going to
9072 * replace it with a dirrem/diradd pair as a result of re-parenting a
9073 * directory. This ensures that we don't simultaneously have a mkdir and
9074 * a diradd for the same .. entry.
9075 */
9076 static struct jremref *
cancel_mkdir_dotdot(ip,dirrem,jremref)9077 cancel_mkdir_dotdot(ip, dirrem, jremref)
9078 struct inode *ip;
9079 struct dirrem *dirrem;
9080 struct jremref *jremref;
9081 {
9082 struct inodedep *inodedep;
9083 struct jaddref *jaddref;
9084 struct ufsmount *ump;
9085 struct mkdir *mkdir;
9086 struct diradd *dap;
9087 struct mount *mp;
9088
9089 mp = ITOVFS(ip);
9090 if (inodedep_lookup(mp, ip->i_number, 0, &inodedep) == 0)
9091 return (jremref);
9092 dap = inodedep->id_mkdiradd;
9093 if (dap == NULL || (dap->da_state & MKDIR_PARENT) == 0)
9094 return (jremref);
9095 ump = VFSTOUFS(inodedep->id_list.wk_mp);
9096 for (mkdir = LIST_FIRST(&ump->softdep_mkdirlisthd); mkdir;
9097 mkdir = LIST_NEXT(mkdir, md_mkdirs))
9098 if (mkdir->md_diradd == dap && mkdir->md_state & MKDIR_PARENT)
9099 break;
9100 if (mkdir == NULL)
9101 panic("cancel_mkdir_dotdot: Unable to find mkdir\n");
9102 if ((jaddref = mkdir->md_jaddref) != NULL) {
9103 mkdir->md_jaddref = NULL;
9104 jaddref->ja_state &= ~MKDIR_PARENT;
9105 if (inodedep_lookup(mp, jaddref->ja_ino, 0, &inodedep) == 0)
9106 panic("cancel_mkdir_dotdot: Lost parent inodedep");
9107 if (cancel_jaddref(jaddref, inodedep, &dirrem->dm_jwork)) {
9108 journal_jremref(dirrem, jremref, inodedep);
9109 jremref = NULL;
9110 }
9111 }
9112 if (mkdir->md_state & ONWORKLIST)
9113 WORKLIST_REMOVE(&mkdir->md_list);
9114 mkdir->md_state |= ALLCOMPLETE;
9115 complete_mkdir(mkdir);
9116 return (jremref);
9117 }
9118
9119 static void
journal_jremref(dirrem,jremref,inodedep)9120 journal_jremref(dirrem, jremref, inodedep)
9121 struct dirrem *dirrem;
9122 struct jremref *jremref;
9123 struct inodedep *inodedep;
9124 {
9125
9126 if (inodedep == NULL)
9127 if (inodedep_lookup(jremref->jr_list.wk_mp,
9128 jremref->jr_ref.if_ino, 0, &inodedep) == 0)
9129 panic("journal_jremref: Lost inodedep");
9130 LIST_INSERT_HEAD(&dirrem->dm_jremrefhd, jremref, jr_deps);
9131 TAILQ_INSERT_TAIL(&inodedep->id_inoreflst, &jremref->jr_ref, if_deps);
9132 add_to_journal(&jremref->jr_list);
9133 }
9134
9135 static void
dirrem_journal(dirrem,jremref,dotremref,dotdotremref)9136 dirrem_journal(dirrem, jremref, dotremref, dotdotremref)
9137 struct dirrem *dirrem;
9138 struct jremref *jremref;
9139 struct jremref *dotremref;
9140 struct jremref *dotdotremref;
9141 {
9142 struct inodedep *inodedep;
9143
9144
9145 if (inodedep_lookup(jremref->jr_list.wk_mp, jremref->jr_ref.if_ino, 0,
9146 &inodedep) == 0)
9147 panic("dirrem_journal: Lost inodedep");
9148 journal_jremref(dirrem, jremref, inodedep);
9149 if (dotremref)
9150 journal_jremref(dirrem, dotremref, inodedep);
9151 if (dotdotremref)
9152 journal_jremref(dirrem, dotdotremref, NULL);
9153 }
9154
9155 /*
9156 * Allocate a new dirrem if appropriate and return it along with
9157 * its associated pagedep. Called without a lock, returns with lock.
9158 */
9159 static struct dirrem *
newdirrem(bp,dp,ip,isrmdir,prevdirremp)9160 newdirrem(bp, dp, ip, isrmdir, prevdirremp)
9161 struct buf *bp; /* buffer containing directory block */
9162 struct inode *dp; /* inode for the directory being modified */
9163 struct inode *ip; /* inode for directory entry being removed */
9164 int isrmdir; /* indicates if doing RMDIR */
9165 struct dirrem **prevdirremp; /* previously referenced inode, if any */
9166 {
9167 int offset;
9168 ufs_lbn_t lbn;
9169 struct diradd *dap;
9170 struct dirrem *dirrem;
9171 struct pagedep *pagedep;
9172 struct jremref *jremref;
9173 struct jremref *dotremref;
9174 struct jremref *dotdotremref;
9175 struct vnode *dvp;
9176 struct ufsmount *ump;
9177
9178 /*
9179 * Whiteouts have no deletion dependencies.
9180 */
9181 if (ip == NULL)
9182 panic("newdirrem: whiteout");
9183 dvp = ITOV(dp);
9184 ump = ITOUMP(dp);
9185
9186 /*
9187 * If the system is over its limit and our filesystem is
9188 * responsible for more than our share of that usage and
9189 * we are not a snapshot, request some inodedep cleanup.
9190 * Limiting the number of dirrem structures will also limit
9191 * the number of freefile and freeblks structures.
9192 */
9193 ACQUIRE_LOCK(ump);
9194 if (!IS_SNAPSHOT(ip) && softdep_excess_items(ump, D_DIRREM))
9195 schedule_cleanup(UFSTOVFS(ump));
9196 else
9197 FREE_LOCK(ump);
9198 dirrem = malloc(sizeof(struct dirrem), M_DIRREM, M_SOFTDEP_FLAGS |
9199 M_ZERO);
9200 workitem_alloc(&dirrem->dm_list, D_DIRREM, dvp->v_mount);
9201 LIST_INIT(&dirrem->dm_jremrefhd);
9202 LIST_INIT(&dirrem->dm_jwork);
9203 dirrem->dm_state = isrmdir ? RMDIR : 0;
9204 dirrem->dm_oldinum = ip->i_number;
9205 *prevdirremp = NULL;
9206 /*
9207 * Allocate remove reference structures to track journal write
9208 * dependencies. We will always have one for the link and
9209 * when doing directories we will always have one more for dot.
9210 * When renaming a directory we skip the dotdot link change so
9211 * this is not needed.
9212 */
9213 jremref = dotremref = dotdotremref = NULL;
9214 if (DOINGSUJ(dvp)) {
9215 if (isrmdir) {
9216 jremref = newjremref(dirrem, dp, ip, dp->i_offset,
9217 ip->i_effnlink + 2);
9218 dotremref = newjremref(dirrem, ip, ip, DOT_OFFSET,
9219 ip->i_effnlink + 1);
9220 dotdotremref = newjremref(dirrem, ip, dp, DOTDOT_OFFSET,
9221 dp->i_effnlink + 1);
9222 dotdotremref->jr_state |= MKDIR_PARENT;
9223 } else
9224 jremref = newjremref(dirrem, dp, ip, dp->i_offset,
9225 ip->i_effnlink + 1);
9226 }
9227 ACQUIRE_LOCK(ump);
9228 lbn = lblkno(ump->um_fs, dp->i_offset);
9229 offset = blkoff(ump->um_fs, dp->i_offset);
9230 pagedep_lookup(UFSTOVFS(ump), bp, dp->i_number, lbn, DEPALLOC,
9231 &pagedep);
9232 dirrem->dm_pagedep = pagedep;
9233 dirrem->dm_offset = offset;
9234 /*
9235 * If we're renaming a .. link to a new directory, cancel any
9236 * existing MKDIR_PARENT mkdir. If it has already been canceled
9237 * the jremref is preserved for any potential diradd in this
9238 * location. This can not coincide with a rmdir.
9239 */
9240 if (dp->i_offset == DOTDOT_OFFSET) {
9241 if (isrmdir)
9242 panic("newdirrem: .. directory change during remove?");
9243 jremref = cancel_mkdir_dotdot(dp, dirrem, jremref);
9244 }
9245 /*
9246 * If we're removing a directory search for the .. dependency now and
9247 * cancel it. Any pending journal work will be added to the dirrem
9248 * to be completed when the workitem remove completes.
9249 */
9250 if (isrmdir)
9251 dotdotremref = cancel_diradd_dotdot(ip, dirrem, dotdotremref);
9252 /*
9253 * Check for a diradd dependency for the same directory entry.
9254 * If present, then both dependencies become obsolete and can
9255 * be de-allocated.
9256 */
9257 dap = diradd_lookup(pagedep, offset);
9258 if (dap == NULL) {
9259 /*
9260 * Link the jremref structures into the dirrem so they are
9261 * written prior to the pagedep.
9262 */
9263 if (jremref)
9264 dirrem_journal(dirrem, jremref, dotremref,
9265 dotdotremref);
9266 return (dirrem);
9267 }
9268 /*
9269 * Must be ATTACHED at this point.
9270 */
9271 if ((dap->da_state & ATTACHED) == 0)
9272 panic("newdirrem: not ATTACHED");
9273 if (dap->da_newinum != ip->i_number)
9274 panic("newdirrem: inum %ju should be %ju",
9275 (uintmax_t)ip->i_number, (uintmax_t)dap->da_newinum);
9276 /*
9277 * If we are deleting a changed name that never made it to disk,
9278 * then return the dirrem describing the previous inode (which
9279 * represents the inode currently referenced from this entry on disk).
9280 */
9281 if ((dap->da_state & DIRCHG) != 0) {
9282 *prevdirremp = dap->da_previous;
9283 dap->da_state &= ~DIRCHG;
9284 dap->da_pagedep = pagedep;
9285 }
9286 /*
9287 * We are deleting an entry that never made it to disk.
9288 * Mark it COMPLETE so we can delete its inode immediately.
9289 */
9290 dirrem->dm_state |= COMPLETE;
9291 cancel_diradd(dap, dirrem, jremref, dotremref, dotdotremref);
9292 #ifdef SUJ_DEBUG
9293 if (isrmdir == 0) {
9294 struct worklist *wk;
9295
9296 LIST_FOREACH(wk, &dirrem->dm_jwork, wk_list)
9297 if (wk->wk_state & (MKDIR_BODY | MKDIR_PARENT))
9298 panic("bad wk %p (0x%X)\n", wk, wk->wk_state);
9299 }
9300 #endif
9301
9302 return (dirrem);
9303 }
9304
9305 /*
9306 * Directory entry change dependencies.
9307 *
9308 * Changing an existing directory entry requires that an add operation
9309 * be completed first followed by a deletion. The semantics for the addition
9310 * are identical to the description of adding a new entry above except
9311 * that the rollback is to the old inode number rather than zero. Once
9312 * the addition dependency is completed, the removal is done as described
9313 * in the removal routine above.
9314 */
9315
9316 /*
9317 * This routine should be called immediately after changing
9318 * a directory entry. The inode's link count should not be
9319 * decremented by the calling procedure -- the soft updates
9320 * code will perform this task when it is safe.
9321 */
9322 void
softdep_setup_directory_change(bp,dp,ip,newinum,isrmdir)9323 softdep_setup_directory_change(bp, dp, ip, newinum, isrmdir)
9324 struct buf *bp; /* buffer containing directory block */
9325 struct inode *dp; /* inode for the directory being modified */
9326 struct inode *ip; /* inode for directory entry being removed */
9327 ino_t newinum; /* new inode number for changed entry */
9328 int isrmdir; /* indicates if doing RMDIR */
9329 {
9330 int offset;
9331 struct diradd *dap = NULL;
9332 struct dirrem *dirrem, *prevdirrem;
9333 struct pagedep *pagedep;
9334 struct inodedep *inodedep;
9335 struct jaddref *jaddref;
9336 struct mount *mp;
9337 struct ufsmount *ump;
9338
9339 mp = ITOVFS(dp);
9340 ump = VFSTOUFS(mp);
9341 offset = blkoff(ump->um_fs, dp->i_offset);
9342 KASSERT(MOUNTEDSOFTDEP(mp) != 0,
9343 ("softdep_setup_directory_change called on non-softdep filesystem"));
9344
9345 /*
9346 * Whiteouts do not need diradd dependencies.
9347 */
9348 if (newinum != UFS_WINO) {
9349 dap = malloc(sizeof(struct diradd),
9350 M_DIRADD, M_SOFTDEP_FLAGS|M_ZERO);
9351 workitem_alloc(&dap->da_list, D_DIRADD, mp);
9352 dap->da_state = DIRCHG | ATTACHED | DEPCOMPLETE;
9353 dap->da_offset = offset;
9354 dap->da_newinum = newinum;
9355 LIST_INIT(&dap->da_jwork);
9356 }
9357
9358 /*
9359 * Allocate a new dirrem and ACQUIRE_LOCK.
9360 */
9361 dirrem = newdirrem(bp, dp, ip, isrmdir, &prevdirrem);
9362 pagedep = dirrem->dm_pagedep;
9363 /*
9364 * The possible values for isrmdir:
9365 * 0 - non-directory file rename
9366 * 1 - directory rename within same directory
9367 * inum - directory rename to new directory of given inode number
9368 * When renaming to a new directory, we are both deleting and
9369 * creating a new directory entry, so the link count on the new
9370 * directory should not change. Thus we do not need the followup
9371 * dirrem which is usually done in handle_workitem_remove. We set
9372 * the DIRCHG flag to tell handle_workitem_remove to skip the
9373 * followup dirrem.
9374 */
9375 if (isrmdir > 1)
9376 dirrem->dm_state |= DIRCHG;
9377
9378 /*
9379 * Whiteouts have no additional dependencies,
9380 * so just put the dirrem on the correct list.
9381 */
9382 if (newinum == UFS_WINO) {
9383 if ((dirrem->dm_state & COMPLETE) == 0) {
9384 LIST_INSERT_HEAD(&pagedep->pd_dirremhd, dirrem,
9385 dm_next);
9386 } else {
9387 dirrem->dm_dirinum = pagedep->pd_ino;
9388 if (LIST_EMPTY(&dirrem->dm_jremrefhd))
9389 add_to_worklist(&dirrem->dm_list, 0);
9390 }
9391 FREE_LOCK(ump);
9392 return;
9393 }
9394 /*
9395 * Add the dirrem to the inodedep's pending remove list for quick
9396 * discovery later. A valid nlinkdelta ensures that this lookup
9397 * will not fail.
9398 */
9399 if (inodedep_lookup(mp, ip->i_number, 0, &inodedep) == 0)
9400 panic("softdep_setup_directory_change: Lost inodedep.");
9401 dirrem->dm_state |= ONDEPLIST;
9402 LIST_INSERT_HEAD(&inodedep->id_dirremhd, dirrem, dm_inonext);
9403
9404 /*
9405 * If the COMPLETE flag is clear, then there were no active
9406 * entries and we want to roll back to the previous inode until
9407 * the new inode is committed to disk. If the COMPLETE flag is
9408 * set, then we have deleted an entry that never made it to disk.
9409 * If the entry we deleted resulted from a name change, then the old
9410 * inode reference still resides on disk. Any rollback that we do
9411 * needs to be to that old inode (returned to us in prevdirrem). If
9412 * the entry we deleted resulted from a create, then there is
9413 * no entry on the disk, so we want to roll back to zero rather
9414 * than the uncommitted inode. In either of the COMPLETE cases we
9415 * want to immediately free the unwritten and unreferenced inode.
9416 */
9417 if ((dirrem->dm_state & COMPLETE) == 0) {
9418 dap->da_previous = dirrem;
9419 } else {
9420 if (prevdirrem != NULL) {
9421 dap->da_previous = prevdirrem;
9422 } else {
9423 dap->da_state &= ~DIRCHG;
9424 dap->da_pagedep = pagedep;
9425 }
9426 dirrem->dm_dirinum = pagedep->pd_ino;
9427 if (LIST_EMPTY(&dirrem->dm_jremrefhd))
9428 add_to_worklist(&dirrem->dm_list, 0);
9429 }
9430 /*
9431 * Lookup the jaddref for this journal entry. We must finish
9432 * initializing it and make the diradd write dependent on it.
9433 * If we're not journaling, put it on the id_bufwait list if the
9434 * inode is not yet written. If it is written, do the post-inode
9435 * write processing to put it on the id_pendinghd list.
9436 */
9437 inodedep_lookup(mp, newinum, DEPALLOC, &inodedep);
9438 if (MOUNTEDSUJ(mp)) {
9439 jaddref = (struct jaddref *)TAILQ_LAST(&inodedep->id_inoreflst,
9440 inoreflst);
9441 KASSERT(jaddref != NULL && jaddref->ja_parent == dp->i_number,
9442 ("softdep_setup_directory_change: bad jaddref %p",
9443 jaddref));
9444 jaddref->ja_diroff = dp->i_offset;
9445 jaddref->ja_diradd = dap;
9446 LIST_INSERT_HEAD(&pagedep->pd_diraddhd[DIRADDHASH(offset)],
9447 dap, da_pdlist);
9448 add_to_journal(&jaddref->ja_list);
9449 } else if ((inodedep->id_state & ALLCOMPLETE) == ALLCOMPLETE) {
9450 dap->da_state |= COMPLETE;
9451 LIST_INSERT_HEAD(&pagedep->pd_pendinghd, dap, da_pdlist);
9452 WORKLIST_INSERT(&inodedep->id_pendinghd, &dap->da_list);
9453 } else {
9454 LIST_INSERT_HEAD(&pagedep->pd_diraddhd[DIRADDHASH(offset)],
9455 dap, da_pdlist);
9456 WORKLIST_INSERT(&inodedep->id_bufwait, &dap->da_list);
9457 }
9458 /*
9459 * If we're making a new name for a directory that has not been
9460 * committed when need to move the dot and dotdot references to
9461 * this new name.
9462 */
9463 if (inodedep->id_mkdiradd && dp->i_offset != DOTDOT_OFFSET)
9464 merge_diradd(inodedep, dap);
9465 FREE_LOCK(ump);
9466 }
9467
9468 /*
9469 * Called whenever the link count on an inode is changed.
9470 * It creates an inode dependency so that the new reference(s)
9471 * to the inode cannot be committed to disk until the updated
9472 * inode has been written.
9473 */
9474 void
softdep_change_linkcnt(ip)9475 softdep_change_linkcnt(ip)
9476 struct inode *ip; /* the inode with the increased link count */
9477 {
9478 struct inodedep *inodedep;
9479 struct ufsmount *ump;
9480
9481 ump = ITOUMP(ip);
9482 KASSERT(MOUNTEDSOFTDEP(UFSTOVFS(ump)) != 0,
9483 ("softdep_change_linkcnt called on non-softdep filesystem"));
9484 ACQUIRE_LOCK(ump);
9485 inodedep_lookup(UFSTOVFS(ump), ip->i_number, DEPALLOC, &inodedep);
9486 if (ip->i_nlink < ip->i_effnlink)
9487 panic("softdep_change_linkcnt: bad delta");
9488 inodedep->id_nlinkdelta = ip->i_nlink - ip->i_effnlink;
9489 FREE_LOCK(ump);
9490 }
9491
9492 /*
9493 * Attach a sbdep dependency to the superblock buf so that we can keep
9494 * track of the head of the linked list of referenced but unlinked inodes.
9495 */
9496 void
softdep_setup_sbupdate(ump,fs,bp)9497 softdep_setup_sbupdate(ump, fs, bp)
9498 struct ufsmount *ump;
9499 struct fs *fs;
9500 struct buf *bp;
9501 {
9502 struct sbdep *sbdep;
9503 struct worklist *wk;
9504
9505 KASSERT(MOUNTEDSOFTDEP(UFSTOVFS(ump)) != 0,
9506 ("softdep_setup_sbupdate called on non-softdep filesystem"));
9507 LIST_FOREACH(wk, &bp->b_dep, wk_list)
9508 if (wk->wk_type == D_SBDEP)
9509 break;
9510 if (wk != NULL)
9511 return;
9512 sbdep = malloc(sizeof(struct sbdep), M_SBDEP, M_SOFTDEP_FLAGS);
9513 workitem_alloc(&sbdep->sb_list, D_SBDEP, UFSTOVFS(ump));
9514 sbdep->sb_fs = fs;
9515 sbdep->sb_ump = ump;
9516 ACQUIRE_LOCK(ump);
9517 WORKLIST_INSERT(&bp->b_dep, &sbdep->sb_list);
9518 FREE_LOCK(ump);
9519 }
9520
9521 /*
9522 * Return the first unlinked inodedep which is ready to be the head of the
9523 * list. The inodedep and all those after it must have valid next pointers.
9524 */
9525 static struct inodedep *
first_unlinked_inodedep(ump)9526 first_unlinked_inodedep(ump)
9527 struct ufsmount *ump;
9528 {
9529 struct inodedep *inodedep;
9530 struct inodedep *idp;
9531
9532 LOCK_OWNED(ump);
9533 for (inodedep = TAILQ_LAST(&ump->softdep_unlinked, inodedeplst);
9534 inodedep; inodedep = idp) {
9535 if ((inodedep->id_state & UNLINKNEXT) == 0)
9536 return (NULL);
9537 idp = TAILQ_PREV(inodedep, inodedeplst, id_unlinked);
9538 if (idp == NULL || (idp->id_state & UNLINKNEXT) == 0)
9539 break;
9540 if ((inodedep->id_state & UNLINKPREV) == 0)
9541 break;
9542 }
9543 return (inodedep);
9544 }
9545
9546 /*
9547 * Set the sujfree unlinked head pointer prior to writing a superblock.
9548 */
9549 static void
initiate_write_sbdep(sbdep)9550 initiate_write_sbdep(sbdep)
9551 struct sbdep *sbdep;
9552 {
9553 struct inodedep *inodedep;
9554 struct fs *bpfs;
9555 struct fs *fs;
9556
9557 bpfs = sbdep->sb_fs;
9558 fs = sbdep->sb_ump->um_fs;
9559 inodedep = first_unlinked_inodedep(sbdep->sb_ump);
9560 if (inodedep) {
9561 fs->fs_sujfree = inodedep->id_ino;
9562 inodedep->id_state |= UNLINKPREV;
9563 } else
9564 fs->fs_sujfree = 0;
9565 bpfs->fs_sujfree = fs->fs_sujfree;
9566 }
9567
9568 /*
9569 * After a superblock is written determine whether it must be written again
9570 * due to a changing unlinked list head.
9571 */
9572 static int
handle_written_sbdep(sbdep,bp)9573 handle_written_sbdep(sbdep, bp)
9574 struct sbdep *sbdep;
9575 struct buf *bp;
9576 {
9577 struct inodedep *inodedep;
9578 struct fs *fs;
9579
9580 LOCK_OWNED(sbdep->sb_ump);
9581 fs = sbdep->sb_fs;
9582 /*
9583 * If the superblock doesn't match the in-memory list start over.
9584 */
9585 inodedep = first_unlinked_inodedep(sbdep->sb_ump);
9586 if ((inodedep && fs->fs_sujfree != inodedep->id_ino) ||
9587 (inodedep == NULL && fs->fs_sujfree != 0)) {
9588 bdirty(bp);
9589 return (1);
9590 }
9591 WORKITEM_FREE(sbdep, D_SBDEP);
9592 if (fs->fs_sujfree == 0)
9593 return (0);
9594 /*
9595 * Now that we have a record of this inode in stable store allow it
9596 * to be written to free up pending work. Inodes may see a lot of
9597 * write activity after they are unlinked which we must not hold up.
9598 */
9599 for (; inodedep != NULL; inodedep = TAILQ_NEXT(inodedep, id_unlinked)) {
9600 if ((inodedep->id_state & UNLINKLINKS) != UNLINKLINKS)
9601 panic("handle_written_sbdep: Bad inodedep %p (0x%X)",
9602 inodedep, inodedep->id_state);
9603 if (inodedep->id_state & UNLINKONLIST)
9604 break;
9605 inodedep->id_state |= DEPCOMPLETE | UNLINKONLIST;
9606 }
9607
9608 return (0);
9609 }
9610
9611 /*
9612 * Mark an inodedep as unlinked and insert it into the in-memory unlinked list.
9613 */
9614 static void
unlinked_inodedep(mp,inodedep)9615 unlinked_inodedep(mp, inodedep)
9616 struct mount *mp;
9617 struct inodedep *inodedep;
9618 {
9619 struct ufsmount *ump;
9620
9621 ump = VFSTOUFS(mp);
9622 LOCK_OWNED(ump);
9623 if (MOUNTEDSUJ(mp) == 0)
9624 return;
9625 ump->um_fs->fs_fmod = 1;
9626 if (inodedep->id_state & UNLINKED)
9627 panic("unlinked_inodedep: %p already unlinked\n", inodedep);
9628 inodedep->id_state |= UNLINKED;
9629 TAILQ_INSERT_HEAD(&ump->softdep_unlinked, inodedep, id_unlinked);
9630 }
9631
9632 /*
9633 * Remove an inodedep from the unlinked inodedep list. This may require
9634 * disk writes if the inode has made it that far.
9635 */
9636 static void
clear_unlinked_inodedep(inodedep)9637 clear_unlinked_inodedep(inodedep)
9638 struct inodedep *inodedep;
9639 {
9640 struct ufsmount *ump;
9641 struct inodedep *idp;
9642 struct inodedep *idn;
9643 struct fs *fs;
9644 struct buf *bp;
9645 ino_t ino;
9646 ino_t nino;
9647 ino_t pino;
9648 int error;
9649
9650 ump = VFSTOUFS(inodedep->id_list.wk_mp);
9651 fs = ump->um_fs;
9652 ino = inodedep->id_ino;
9653 error = 0;
9654 for (;;) {
9655 LOCK_OWNED(ump);
9656 KASSERT((inodedep->id_state & UNLINKED) != 0,
9657 ("clear_unlinked_inodedep: inodedep %p not unlinked",
9658 inodedep));
9659 /*
9660 * If nothing has yet been written simply remove us from
9661 * the in memory list and return. This is the most common
9662 * case where handle_workitem_remove() loses the final
9663 * reference.
9664 */
9665 if ((inodedep->id_state & UNLINKLINKS) == 0)
9666 break;
9667 /*
9668 * If we have a NEXT pointer and no PREV pointer we can simply
9669 * clear NEXT's PREV and remove ourselves from the list. Be
9670 * careful not to clear PREV if the superblock points at
9671 * next as well.
9672 */
9673 idn = TAILQ_NEXT(inodedep, id_unlinked);
9674 if ((inodedep->id_state & UNLINKLINKS) == UNLINKNEXT) {
9675 if (idn && fs->fs_sujfree != idn->id_ino)
9676 idn->id_state &= ~UNLINKPREV;
9677 break;
9678 }
9679 /*
9680 * Here we have an inodedep which is actually linked into
9681 * the list. We must remove it by forcing a write to the
9682 * link before us, whether it be the superblock or an inode.
9683 * Unfortunately the list may change while we're waiting
9684 * on the buf lock for either resource so we must loop until
9685 * we lock the right one. If both the superblock and an
9686 * inode point to this inode we must clear the inode first
9687 * followed by the superblock.
9688 */
9689 idp = TAILQ_PREV(inodedep, inodedeplst, id_unlinked);
9690 pino = 0;
9691 if (idp && (idp->id_state & UNLINKNEXT))
9692 pino = idp->id_ino;
9693 FREE_LOCK(ump);
9694 if (pino == 0) {
9695 bp = getblk(ump->um_devvp, btodb(fs->fs_sblockloc),
9696 (int)fs->fs_sbsize, 0, 0, 0);
9697 } else {
9698 error = bread(ump->um_devvp,
9699 fsbtodb(fs, ino_to_fsba(fs, pino)),
9700 (int)fs->fs_bsize, NOCRED, &bp);
9701 if (error)
9702 brelse(bp);
9703 }
9704 ACQUIRE_LOCK(ump);
9705 if (error)
9706 break;
9707 /* If the list has changed restart the loop. */
9708 idp = TAILQ_PREV(inodedep, inodedeplst, id_unlinked);
9709 nino = 0;
9710 if (idp && (idp->id_state & UNLINKNEXT))
9711 nino = idp->id_ino;
9712 if (nino != pino ||
9713 (inodedep->id_state & UNLINKPREV) != UNLINKPREV) {
9714 FREE_LOCK(ump);
9715 brelse(bp);
9716 ACQUIRE_LOCK(ump);
9717 continue;
9718 }
9719 nino = 0;
9720 idn = TAILQ_NEXT(inodedep, id_unlinked);
9721 if (idn)
9722 nino = idn->id_ino;
9723 /*
9724 * Remove us from the in memory list. After this we cannot
9725 * access the inodedep.
9726 */
9727 KASSERT((inodedep->id_state & UNLINKED) != 0,
9728 ("clear_unlinked_inodedep: inodedep %p not unlinked",
9729 inodedep));
9730 inodedep->id_state &= ~(UNLINKED | UNLINKLINKS | UNLINKONLIST);
9731 TAILQ_REMOVE(&ump->softdep_unlinked, inodedep, id_unlinked);
9732 FREE_LOCK(ump);
9733 /*
9734 * The predecessor's next pointer is manually updated here
9735 * so that the NEXT flag is never cleared for an element
9736 * that is in the list.
9737 */
9738 if (pino == 0) {
9739 bcopy((caddr_t)fs, bp->b_data, (u_int)fs->fs_sbsize);
9740 ffs_oldfscompat_write((struct fs *)bp->b_data, ump);
9741 softdep_setup_sbupdate(ump, (struct fs *)bp->b_data,
9742 bp);
9743 } else if (fs->fs_magic == FS_UFS1_MAGIC)
9744 ((struct ufs1_dinode *)bp->b_data +
9745 ino_to_fsbo(fs, pino))->di_freelink = nino;
9746 else
9747 ((struct ufs2_dinode *)bp->b_data +
9748 ino_to_fsbo(fs, pino))->di_freelink = nino;
9749 /*
9750 * If the bwrite fails we have no recourse to recover. The
9751 * filesystem is corrupted already.
9752 */
9753 bwrite(bp);
9754 ACQUIRE_LOCK(ump);
9755 /*
9756 * If the superblock pointer still needs to be cleared force
9757 * a write here.
9758 */
9759 if (fs->fs_sujfree == ino) {
9760 FREE_LOCK(ump);
9761 bp = getblk(ump->um_devvp, btodb(fs->fs_sblockloc),
9762 (int)fs->fs_sbsize, 0, 0, 0);
9763 bcopy((caddr_t)fs, bp->b_data, (u_int)fs->fs_sbsize);
9764 ffs_oldfscompat_write((struct fs *)bp->b_data, ump);
9765 softdep_setup_sbupdate(ump, (struct fs *)bp->b_data,
9766 bp);
9767 bwrite(bp);
9768 ACQUIRE_LOCK(ump);
9769 }
9770
9771 if (fs->fs_sujfree != ino)
9772 return;
9773 panic("clear_unlinked_inodedep: Failed to clear free head");
9774 }
9775 if (inodedep->id_ino == fs->fs_sujfree)
9776 panic("clear_unlinked_inodedep: Freeing head of free list");
9777 inodedep->id_state &= ~(UNLINKED | UNLINKLINKS | UNLINKONLIST);
9778 TAILQ_REMOVE(&ump->softdep_unlinked, inodedep, id_unlinked);
9779 return;
9780 }
9781
9782 /*
9783 * This workitem decrements the inode's link count.
9784 * If the link count reaches zero, the file is removed.
9785 */
9786 static int
handle_workitem_remove(dirrem,flags)9787 handle_workitem_remove(dirrem, flags)
9788 struct dirrem *dirrem;
9789 int flags;
9790 {
9791 struct inodedep *inodedep;
9792 struct workhead dotdotwk;
9793 struct worklist *wk;
9794 struct ufsmount *ump;
9795 struct mount *mp;
9796 struct vnode *vp;
9797 struct inode *ip;
9798 ino_t oldinum;
9799
9800 if (dirrem->dm_state & ONWORKLIST)
9801 panic("handle_workitem_remove: dirrem %p still on worklist",
9802 dirrem);
9803 oldinum = dirrem->dm_oldinum;
9804 mp = dirrem->dm_list.wk_mp;
9805 ump = VFSTOUFS(mp);
9806 flags |= LK_EXCLUSIVE;
9807 if (ffs_vgetf(mp, oldinum, flags, &vp, FFSV_FORCEINSMQ) != 0)
9808 return (EBUSY);
9809 ip = VTOI(vp);
9810 ACQUIRE_LOCK(ump);
9811 if ((inodedep_lookup(mp, oldinum, 0, &inodedep)) == 0)
9812 panic("handle_workitem_remove: lost inodedep");
9813 if (dirrem->dm_state & ONDEPLIST)
9814 LIST_REMOVE(dirrem, dm_inonext);
9815 KASSERT(LIST_EMPTY(&dirrem->dm_jremrefhd),
9816 ("handle_workitem_remove: Journal entries not written."));
9817
9818 /*
9819 * Move all dependencies waiting on the remove to complete
9820 * from the dirrem to the inode inowait list to be completed
9821 * after the inode has been updated and written to disk. Any
9822 * marked MKDIR_PARENT are saved to be completed when the .. ref
9823 * is removed.
9824 */
9825 LIST_INIT(&dotdotwk);
9826 while ((wk = LIST_FIRST(&dirrem->dm_jwork)) != NULL) {
9827 WORKLIST_REMOVE(wk);
9828 if (wk->wk_state & MKDIR_PARENT) {
9829 wk->wk_state &= ~MKDIR_PARENT;
9830 WORKLIST_INSERT(&dotdotwk, wk);
9831 continue;
9832 }
9833 WORKLIST_INSERT(&inodedep->id_inowait, wk);
9834 }
9835 LIST_SWAP(&dirrem->dm_jwork, &dotdotwk, worklist, wk_list);
9836 /*
9837 * Normal file deletion.
9838 */
9839 if ((dirrem->dm_state & RMDIR) == 0) {
9840 ip->i_nlink--;
9841 DIP_SET(ip, i_nlink, ip->i_nlink);
9842 ip->i_flag |= IN_CHANGE;
9843 if (ip->i_nlink < ip->i_effnlink)
9844 panic("handle_workitem_remove: bad file delta");
9845 if (ip->i_nlink == 0)
9846 unlinked_inodedep(mp, inodedep);
9847 inodedep->id_nlinkdelta = ip->i_nlink - ip->i_effnlink;
9848 KASSERT(LIST_EMPTY(&dirrem->dm_jwork),
9849 ("handle_workitem_remove: worklist not empty. %s",
9850 TYPENAME(LIST_FIRST(&dirrem->dm_jwork)->wk_type)));
9851 WORKITEM_FREE(dirrem, D_DIRREM);
9852 FREE_LOCK(ump);
9853 goto out;
9854 }
9855 /*
9856 * Directory deletion. Decrement reference count for both the
9857 * just deleted parent directory entry and the reference for ".".
9858 * Arrange to have the reference count on the parent decremented
9859 * to account for the loss of "..".
9860 */
9861 ip->i_nlink -= 2;
9862 DIP_SET(ip, i_nlink, ip->i_nlink);
9863 ip->i_flag |= IN_CHANGE;
9864 if (ip->i_nlink < ip->i_effnlink)
9865 panic("handle_workitem_remove: bad dir delta");
9866 if (ip->i_nlink == 0)
9867 unlinked_inodedep(mp, inodedep);
9868 inodedep->id_nlinkdelta = ip->i_nlink - ip->i_effnlink;
9869 /*
9870 * Rename a directory to a new parent. Since, we are both deleting
9871 * and creating a new directory entry, the link count on the new
9872 * directory should not change. Thus we skip the followup dirrem.
9873 */
9874 if (dirrem->dm_state & DIRCHG) {
9875 KASSERT(LIST_EMPTY(&dirrem->dm_jwork),
9876 ("handle_workitem_remove: DIRCHG and worklist not empty."));
9877 WORKITEM_FREE(dirrem, D_DIRREM);
9878 FREE_LOCK(ump);
9879 goto out;
9880 }
9881 dirrem->dm_state = ONDEPLIST;
9882 dirrem->dm_oldinum = dirrem->dm_dirinum;
9883 /*
9884 * Place the dirrem on the parent's diremhd list.
9885 */
9886 if (inodedep_lookup(mp, dirrem->dm_oldinum, 0, &inodedep) == 0)
9887 panic("handle_workitem_remove: lost dir inodedep");
9888 LIST_INSERT_HEAD(&inodedep->id_dirremhd, dirrem, dm_inonext);
9889 /*
9890 * If the allocated inode has never been written to disk, then
9891 * the on-disk inode is zero'ed and we can remove the file
9892 * immediately. When journaling if the inode has been marked
9893 * unlinked and not DEPCOMPLETE we know it can never be written.
9894 */
9895 inodedep_lookup(mp, oldinum, 0, &inodedep);
9896 if (inodedep == NULL ||
9897 (inodedep->id_state & (DEPCOMPLETE | UNLINKED)) == UNLINKED ||
9898 check_inode_unwritten(inodedep)) {
9899 FREE_LOCK(ump);
9900 vput(vp);
9901 return handle_workitem_remove(dirrem, flags);
9902 }
9903 WORKLIST_INSERT(&inodedep->id_inowait, &dirrem->dm_list);
9904 FREE_LOCK(ump);
9905 ip->i_flag |= IN_CHANGE;
9906 out:
9907 ffs_update(vp, 0);
9908 vput(vp);
9909 return (0);
9910 }
9911
9912 /*
9913 * Inode de-allocation dependencies.
9914 *
9915 * When an inode's link count is reduced to zero, it can be de-allocated. We
9916 * found it convenient to postpone de-allocation until after the inode is
9917 * written to disk with its new link count (zero). At this point, all of the
9918 * on-disk inode's block pointers are nullified and, with careful dependency
9919 * list ordering, all dependencies related to the inode will be satisfied and
9920 * the corresponding dependency structures de-allocated. So, if/when the
9921 * inode is reused, there will be no mixing of old dependencies with new
9922 * ones. This artificial dependency is set up by the block de-allocation
9923 * procedure above (softdep_setup_freeblocks) and completed by the
9924 * following procedure.
9925 */
9926 static void
handle_workitem_freefile(freefile)9927 handle_workitem_freefile(freefile)
9928 struct freefile *freefile;
9929 {
9930 struct workhead wkhd;
9931 struct fs *fs;
9932 struct inodedep *idp;
9933 struct ufsmount *ump;
9934 int error;
9935
9936 ump = VFSTOUFS(freefile->fx_list.wk_mp);
9937 fs = ump->um_fs;
9938 #ifdef DEBUG
9939 ACQUIRE_LOCK(ump);
9940 error = inodedep_lookup(UFSTOVFS(ump), freefile->fx_oldinum, 0, &idp);
9941 FREE_LOCK(ump);
9942 if (error)
9943 panic("handle_workitem_freefile: inodedep %p survived", idp);
9944 #endif
9945 UFS_LOCK(ump);
9946 fs->fs_pendinginodes -= 1;
9947 UFS_UNLOCK(ump);
9948 LIST_INIT(&wkhd);
9949 LIST_SWAP(&freefile->fx_jwork, &wkhd, worklist, wk_list);
9950 if ((error = ffs_freefile(ump, fs, freefile->fx_devvp,
9951 freefile->fx_oldinum, freefile->fx_mode, &wkhd)) != 0)
9952 softdep_error("handle_workitem_freefile", error);
9953 ACQUIRE_LOCK(ump);
9954 WORKITEM_FREE(freefile, D_FREEFILE);
9955 FREE_LOCK(ump);
9956 }
9957
9958
9959 /*
9960 * Helper function which unlinks marker element from work list and returns
9961 * the next element on the list.
9962 */
9963 static __inline struct worklist *
markernext(struct worklist * marker)9964 markernext(struct worklist *marker)
9965 {
9966 struct worklist *next;
9967
9968 next = LIST_NEXT(marker, wk_list);
9969 LIST_REMOVE(marker, wk_list);
9970 return next;
9971 }
9972
9973 /*
9974 * Disk writes.
9975 *
9976 * The dependency structures constructed above are most actively used when file
9977 * system blocks are written to disk. No constraints are placed on when a
9978 * block can be written, but unsatisfied update dependencies are made safe by
9979 * modifying (or replacing) the source memory for the duration of the disk
9980 * write. When the disk write completes, the memory block is again brought
9981 * up-to-date.
9982 *
9983 * In-core inode structure reclamation.
9984 *
9985 * Because there are a finite number of "in-core" inode structures, they are
9986 * reused regularly. By transferring all inode-related dependencies to the
9987 * in-memory inode block and indexing them separately (via "inodedep"s), we
9988 * can allow "in-core" inode structures to be reused at any time and avoid
9989 * any increase in contention.
9990 *
9991 * Called just before entering the device driver to initiate a new disk I/O.
9992 * The buffer must be locked, thus, no I/O completion operations can occur
9993 * while we are manipulating its associated dependencies.
9994 */
9995 static void
softdep_disk_io_initiation(bp)9996 softdep_disk_io_initiation(bp)
9997 struct buf *bp; /* structure describing disk write to occur */
9998 {
9999 struct worklist *wk;
10000 struct worklist marker;
10001 struct inodedep *inodedep;
10002 struct freeblks *freeblks;
10003 struct jblkdep *jblkdep;
10004 struct newblk *newblk;
10005 struct ufsmount *ump;
10006
10007 /*
10008 * We only care about write operations. There should never
10009 * be dependencies for reads.
10010 */
10011 if (bp->b_iocmd != BIO_WRITE)
10012 panic("softdep_disk_io_initiation: not write");
10013
10014 if (bp->b_vflags & BV_BKGRDINPROG)
10015 panic("softdep_disk_io_initiation: Writing buffer with "
10016 "background write in progress: %p", bp);
10017
10018 ump = softdep_bp_to_mp(bp);
10019 if (ump == NULL)
10020 return;
10021
10022 marker.wk_type = D_LAST + 1; /* Not a normal workitem */
10023 PHOLD(curproc); /* Don't swap out kernel stack */
10024 ACQUIRE_LOCK(ump);
10025 /*
10026 * Do any necessary pre-I/O processing.
10027 */
10028 for (wk = LIST_FIRST(&bp->b_dep); wk != NULL;
10029 wk = markernext(&marker)) {
10030 LIST_INSERT_AFTER(wk, &marker, wk_list);
10031 switch (wk->wk_type) {
10032
10033 case D_PAGEDEP:
10034 initiate_write_filepage(WK_PAGEDEP(wk), bp);
10035 continue;
10036
10037 case D_INODEDEP:
10038 inodedep = WK_INODEDEP(wk);
10039 if (inodedep->id_fs->fs_magic == FS_UFS1_MAGIC)
10040 initiate_write_inodeblock_ufs1(inodedep, bp);
10041 else
10042 initiate_write_inodeblock_ufs2(inodedep, bp);
10043 continue;
10044
10045 case D_INDIRDEP:
10046 initiate_write_indirdep(WK_INDIRDEP(wk), bp);
10047 continue;
10048
10049 case D_BMSAFEMAP:
10050 initiate_write_bmsafemap(WK_BMSAFEMAP(wk), bp);
10051 continue;
10052
10053 case D_JSEG:
10054 WK_JSEG(wk)->js_buf = NULL;
10055 continue;
10056
10057 case D_FREEBLKS:
10058 freeblks = WK_FREEBLKS(wk);
10059 jblkdep = LIST_FIRST(&freeblks->fb_jblkdephd);
10060 /*
10061 * We have to wait for the freeblks to be journaled
10062 * before we can write an inodeblock with updated
10063 * pointers. Be careful to arrange the marker so
10064 * we revisit the freeblks if it's not removed by
10065 * the first jwait().
10066 */
10067 if (jblkdep != NULL) {
10068 LIST_REMOVE(&marker, wk_list);
10069 LIST_INSERT_BEFORE(wk, &marker, wk_list);
10070 jwait(&jblkdep->jb_list, MNT_WAIT);
10071 }
10072 continue;
10073 case D_ALLOCDIRECT:
10074 case D_ALLOCINDIR:
10075 /*
10076 * We have to wait for the jnewblk to be journaled
10077 * before we can write to a block if the contents
10078 * may be confused with an earlier file's indirect
10079 * at recovery time. Handle the marker as described
10080 * above.
10081 */
10082 newblk = WK_NEWBLK(wk);
10083 if (newblk->nb_jnewblk != NULL &&
10084 indirblk_lookup(newblk->nb_list.wk_mp,
10085 newblk->nb_newblkno)) {
10086 LIST_REMOVE(&marker, wk_list);
10087 LIST_INSERT_BEFORE(wk, &marker, wk_list);
10088 jwait(&newblk->nb_jnewblk->jn_list, MNT_WAIT);
10089 }
10090 continue;
10091
10092 case D_SBDEP:
10093 initiate_write_sbdep(WK_SBDEP(wk));
10094 continue;
10095
10096 case D_MKDIR:
10097 case D_FREEWORK:
10098 case D_FREEDEP:
10099 case D_JSEGDEP:
10100 continue;
10101
10102 default:
10103 panic("handle_disk_io_initiation: Unexpected type %s",
10104 TYPENAME(wk->wk_type));
10105 /* NOTREACHED */
10106 }
10107 }
10108 FREE_LOCK(ump);
10109 PRELE(curproc); /* Allow swapout of kernel stack */
10110 }
10111
10112 /*
10113 * Called from within the procedure above to deal with unsatisfied
10114 * allocation dependencies in a directory. The buffer must be locked,
10115 * thus, no I/O completion operations can occur while we are
10116 * manipulating its associated dependencies.
10117 */
10118 static void
initiate_write_filepage(pagedep,bp)10119 initiate_write_filepage(pagedep, bp)
10120 struct pagedep *pagedep;
10121 struct buf *bp;
10122 {
10123 struct jremref *jremref;
10124 struct jmvref *jmvref;
10125 struct dirrem *dirrem;
10126 struct diradd *dap;
10127 struct direct *ep;
10128 int i;
10129
10130 if (pagedep->pd_state & IOSTARTED) {
10131 /*
10132 * This can only happen if there is a driver that does not
10133 * understand chaining. Here biodone will reissue the call
10134 * to strategy for the incomplete buffers.
10135 */
10136 printf("initiate_write_filepage: already started\n");
10137 return;
10138 }
10139 pagedep->pd_state |= IOSTARTED;
10140 /*
10141 * Wait for all journal remove dependencies to hit the disk.
10142 * We can not allow any potentially conflicting directory adds
10143 * to be visible before removes and rollback is too difficult.
10144 * The per-filesystem lock may be dropped and re-acquired, however
10145 * we hold the buf locked so the dependency can not go away.
10146 */
10147 LIST_FOREACH(dirrem, &pagedep->pd_dirremhd, dm_next)
10148 while ((jremref = LIST_FIRST(&dirrem->dm_jremrefhd)) != NULL)
10149 jwait(&jremref->jr_list, MNT_WAIT);
10150 while ((jmvref = LIST_FIRST(&pagedep->pd_jmvrefhd)) != NULL)
10151 jwait(&jmvref->jm_list, MNT_WAIT);
10152 for (i = 0; i < DAHASHSZ; i++) {
10153 LIST_FOREACH(dap, &pagedep->pd_diraddhd[i], da_pdlist) {
10154 ep = (struct direct *)
10155 ((char *)bp->b_data + dap->da_offset);
10156 if (ep->d_ino != dap->da_newinum)
10157 panic("%s: dir inum %ju != new %ju",
10158 "initiate_write_filepage",
10159 (uintmax_t)ep->d_ino,
10160 (uintmax_t)dap->da_newinum);
10161 if (dap->da_state & DIRCHG)
10162 ep->d_ino = dap->da_previous->dm_oldinum;
10163 else
10164 ep->d_ino = 0;
10165 dap->da_state &= ~ATTACHED;
10166 dap->da_state |= UNDONE;
10167 }
10168 }
10169 }
10170
10171 /*
10172 * Version of initiate_write_inodeblock that handles UFS1 dinodes.
10173 * Note that any bug fixes made to this routine must be done in the
10174 * version found below.
10175 *
10176 * Called from within the procedure above to deal with unsatisfied
10177 * allocation dependencies in an inodeblock. The buffer must be
10178 * locked, thus, no I/O completion operations can occur while we
10179 * are manipulating its associated dependencies.
10180 */
10181 static void
initiate_write_inodeblock_ufs1(inodedep,bp)10182 initiate_write_inodeblock_ufs1(inodedep, bp)
10183 struct inodedep *inodedep;
10184 struct buf *bp; /* The inode block */
10185 {
10186 struct allocdirect *adp, *lastadp;
10187 struct ufs1_dinode *dp;
10188 struct ufs1_dinode *sip;
10189 struct inoref *inoref;
10190 struct ufsmount *ump;
10191 struct fs *fs;
10192 ufs_lbn_t i;
10193 #ifdef INVARIANTS
10194 ufs_lbn_t prevlbn = 0;
10195 #endif
10196 int deplist;
10197
10198 if (inodedep->id_state & IOSTARTED)
10199 panic("initiate_write_inodeblock_ufs1: already started");
10200 inodedep->id_state |= IOSTARTED;
10201 fs = inodedep->id_fs;
10202 ump = VFSTOUFS(inodedep->id_list.wk_mp);
10203 LOCK_OWNED(ump);
10204 dp = (struct ufs1_dinode *)bp->b_data +
10205 ino_to_fsbo(fs, inodedep->id_ino);
10206
10207 /*
10208 * If we're on the unlinked list but have not yet written our
10209 * next pointer initialize it here.
10210 */
10211 if ((inodedep->id_state & (UNLINKED | UNLINKNEXT)) == UNLINKED) {
10212 struct inodedep *inon;
10213
10214 inon = TAILQ_NEXT(inodedep, id_unlinked);
10215 dp->di_freelink = inon ? inon->id_ino : 0;
10216 }
10217 /*
10218 * If the bitmap is not yet written, then the allocated
10219 * inode cannot be written to disk.
10220 */
10221 if ((inodedep->id_state & DEPCOMPLETE) == 0) {
10222 if (inodedep->id_savedino1 != NULL)
10223 panic("initiate_write_inodeblock_ufs1: I/O underway");
10224 FREE_LOCK(ump);
10225 sip = malloc(sizeof(struct ufs1_dinode),
10226 M_SAVEDINO, M_SOFTDEP_FLAGS);
10227 ACQUIRE_LOCK(ump);
10228 inodedep->id_savedino1 = sip;
10229 *inodedep->id_savedino1 = *dp;
10230 bzero((caddr_t)dp, sizeof(struct ufs1_dinode));
10231 dp->di_gen = inodedep->id_savedino1->di_gen;
10232 dp->di_freelink = inodedep->id_savedino1->di_freelink;
10233 return;
10234 }
10235 /*
10236 * If no dependencies, then there is nothing to roll back.
10237 */
10238 inodedep->id_savedsize = dp->di_size;
10239 inodedep->id_savedextsize = 0;
10240 inodedep->id_savednlink = dp->di_nlink;
10241 if (TAILQ_EMPTY(&inodedep->id_inoupdt) &&
10242 TAILQ_EMPTY(&inodedep->id_inoreflst))
10243 return;
10244 /*
10245 * Revert the link count to that of the first unwritten journal entry.
10246 */
10247 inoref = TAILQ_FIRST(&inodedep->id_inoreflst);
10248 if (inoref)
10249 dp->di_nlink = inoref->if_nlink;
10250 /*
10251 * Set the dependencies to busy.
10252 */
10253 for (deplist = 0, adp = TAILQ_FIRST(&inodedep->id_inoupdt); adp;
10254 adp = TAILQ_NEXT(adp, ad_next)) {
10255 #ifdef INVARIANTS
10256 if (deplist != 0 && prevlbn >= adp->ad_offset)
10257 panic("softdep_write_inodeblock: lbn order");
10258 prevlbn = adp->ad_offset;
10259 if (adp->ad_offset < UFS_NDADDR &&
10260 dp->di_db[adp->ad_offset] != adp->ad_newblkno)
10261 panic("initiate_write_inodeblock_ufs1: "
10262 "direct pointer #%jd mismatch %d != %jd",
10263 (intmax_t)adp->ad_offset,
10264 dp->di_db[adp->ad_offset],
10265 (intmax_t)adp->ad_newblkno);
10266 if (adp->ad_offset >= UFS_NDADDR &&
10267 dp->di_ib[adp->ad_offset - UFS_NDADDR] != adp->ad_newblkno)
10268 panic("initiate_write_inodeblock_ufs1: "
10269 "indirect pointer #%jd mismatch %d != %jd",
10270 (intmax_t)adp->ad_offset - UFS_NDADDR,
10271 dp->di_ib[adp->ad_offset - UFS_NDADDR],
10272 (intmax_t)adp->ad_newblkno);
10273 deplist |= 1 << adp->ad_offset;
10274 if ((adp->ad_state & ATTACHED) == 0)
10275 panic("initiate_write_inodeblock_ufs1: "
10276 "Unknown state 0x%x", adp->ad_state);
10277 #endif /* INVARIANTS */
10278 adp->ad_state &= ~ATTACHED;
10279 adp->ad_state |= UNDONE;
10280 }
10281 /*
10282 * The on-disk inode cannot claim to be any larger than the last
10283 * fragment that has been written. Otherwise, the on-disk inode
10284 * might have fragments that were not the last block in the file
10285 * which would corrupt the filesystem.
10286 */
10287 for (lastadp = NULL, adp = TAILQ_FIRST(&inodedep->id_inoupdt); adp;
10288 lastadp = adp, adp = TAILQ_NEXT(adp, ad_next)) {
10289 if (adp->ad_offset >= UFS_NDADDR)
10290 break;
10291 dp->di_db[adp->ad_offset] = adp->ad_oldblkno;
10292 /* keep going until hitting a rollback to a frag */
10293 if (adp->ad_oldsize == 0 || adp->ad_oldsize == fs->fs_bsize)
10294 continue;
10295 dp->di_size = fs->fs_bsize * adp->ad_offset + adp->ad_oldsize;
10296 for (i = adp->ad_offset + 1; i < UFS_NDADDR; i++) {
10297 #ifdef INVARIANTS
10298 if (dp->di_db[i] != 0 && (deplist & (1 << i)) == 0)
10299 panic("initiate_write_inodeblock_ufs1: "
10300 "lost dep1");
10301 #endif /* INVARIANTS */
10302 dp->di_db[i] = 0;
10303 }
10304 for (i = 0; i < UFS_NIADDR; i++) {
10305 #ifdef INVARIANTS
10306 if (dp->di_ib[i] != 0 &&
10307 (deplist & ((1 << UFS_NDADDR) << i)) == 0)
10308 panic("initiate_write_inodeblock_ufs1: "
10309 "lost dep2");
10310 #endif /* INVARIANTS */
10311 dp->di_ib[i] = 0;
10312 }
10313 return;
10314 }
10315 /*
10316 * If we have zero'ed out the last allocated block of the file,
10317 * roll back the size to the last currently allocated block.
10318 * We know that this last allocated block is a full-sized as
10319 * we already checked for fragments in the loop above.
10320 */
10321 if (lastadp != NULL &&
10322 dp->di_size <= (lastadp->ad_offset + 1) * fs->fs_bsize) {
10323 for (i = lastadp->ad_offset; i >= 0; i--)
10324 if (dp->di_db[i] != 0)
10325 break;
10326 dp->di_size = (i + 1) * fs->fs_bsize;
10327 }
10328 /*
10329 * The only dependencies are for indirect blocks.
10330 *
10331 * The file size for indirect block additions is not guaranteed.
10332 * Such a guarantee would be non-trivial to achieve. The conventional
10333 * synchronous write implementation also does not make this guarantee.
10334 * Fsck should catch and fix discrepancies. Arguably, the file size
10335 * can be over-estimated without destroying integrity when the file
10336 * moves into the indirect blocks (i.e., is large). If we want to
10337 * postpone fsck, we are stuck with this argument.
10338 */
10339 for (; adp; adp = TAILQ_NEXT(adp, ad_next))
10340 dp->di_ib[adp->ad_offset - UFS_NDADDR] = 0;
10341 }
10342
10343 /*
10344 * Version of initiate_write_inodeblock that handles UFS2 dinodes.
10345 * Note that any bug fixes made to this routine must be done in the
10346 * version found above.
10347 *
10348 * Called from within the procedure above to deal with unsatisfied
10349 * allocation dependencies in an inodeblock. The buffer must be
10350 * locked, thus, no I/O completion operations can occur while we
10351 * are manipulating its associated dependencies.
10352 */
10353 static void
initiate_write_inodeblock_ufs2(inodedep,bp)10354 initiate_write_inodeblock_ufs2(inodedep, bp)
10355 struct inodedep *inodedep;
10356 struct buf *bp; /* The inode block */
10357 {
10358 struct allocdirect *adp, *lastadp;
10359 struct ufs2_dinode *dp;
10360 struct ufs2_dinode *sip;
10361 struct inoref *inoref;
10362 struct ufsmount *ump;
10363 struct fs *fs;
10364 ufs_lbn_t i;
10365 #ifdef INVARIANTS
10366 ufs_lbn_t prevlbn = 0;
10367 #endif
10368 int deplist;
10369
10370 if (inodedep->id_state & IOSTARTED)
10371 panic("initiate_write_inodeblock_ufs2: already started");
10372 inodedep->id_state |= IOSTARTED;
10373 fs = inodedep->id_fs;
10374 ump = VFSTOUFS(inodedep->id_list.wk_mp);
10375 LOCK_OWNED(ump);
10376 dp = (struct ufs2_dinode *)bp->b_data +
10377 ino_to_fsbo(fs, inodedep->id_ino);
10378
10379 /*
10380 * If we're on the unlinked list but have not yet written our
10381 * next pointer initialize it here.
10382 */
10383 if ((inodedep->id_state & (UNLINKED | UNLINKNEXT)) == UNLINKED) {
10384 struct inodedep *inon;
10385
10386 inon = TAILQ_NEXT(inodedep, id_unlinked);
10387 dp->di_freelink = inon ? inon->id_ino : 0;
10388 }
10389 /*
10390 * If the bitmap is not yet written, then the allocated
10391 * inode cannot be written to disk.
10392 */
10393 if ((inodedep->id_state & DEPCOMPLETE) == 0) {
10394 if (inodedep->id_savedino2 != NULL)
10395 panic("initiate_write_inodeblock_ufs2: I/O underway");
10396 FREE_LOCK(ump);
10397 sip = malloc(sizeof(struct ufs2_dinode),
10398 M_SAVEDINO, M_SOFTDEP_FLAGS);
10399 ACQUIRE_LOCK(ump);
10400 inodedep->id_savedino2 = sip;
10401 *inodedep->id_savedino2 = *dp;
10402 bzero((caddr_t)dp, sizeof(struct ufs2_dinode));
10403 dp->di_gen = inodedep->id_savedino2->di_gen;
10404 dp->di_freelink = inodedep->id_savedino2->di_freelink;
10405 return;
10406 }
10407 /*
10408 * If no dependencies, then there is nothing to roll back.
10409 */
10410 inodedep->id_savedsize = dp->di_size;
10411 inodedep->id_savedextsize = dp->di_extsize;
10412 inodedep->id_savednlink = dp->di_nlink;
10413 if (TAILQ_EMPTY(&inodedep->id_inoupdt) &&
10414 TAILQ_EMPTY(&inodedep->id_extupdt) &&
10415 TAILQ_EMPTY(&inodedep->id_inoreflst))
10416 return;
10417 /*
10418 * Revert the link count to that of the first unwritten journal entry.
10419 */
10420 inoref = TAILQ_FIRST(&inodedep->id_inoreflst);
10421 if (inoref)
10422 dp->di_nlink = inoref->if_nlink;
10423
10424 /*
10425 * Set the ext data dependencies to busy.
10426 */
10427 for (deplist = 0, adp = TAILQ_FIRST(&inodedep->id_extupdt); adp;
10428 adp = TAILQ_NEXT(adp, ad_next)) {
10429 #ifdef INVARIANTS
10430 if (deplist != 0 && prevlbn >= adp->ad_offset)
10431 panic("initiate_write_inodeblock_ufs2: lbn order");
10432 prevlbn = adp->ad_offset;
10433 if (dp->di_extb[adp->ad_offset] != adp->ad_newblkno)
10434 panic("initiate_write_inodeblock_ufs2: "
10435 "ext pointer #%jd mismatch %jd != %jd",
10436 (intmax_t)adp->ad_offset,
10437 (intmax_t)dp->di_extb[adp->ad_offset],
10438 (intmax_t)adp->ad_newblkno);
10439 deplist |= 1 << adp->ad_offset;
10440 if ((adp->ad_state & ATTACHED) == 0)
10441 panic("initiate_write_inodeblock_ufs2: Unknown "
10442 "state 0x%x", adp->ad_state);
10443 #endif /* INVARIANTS */
10444 adp->ad_state &= ~ATTACHED;
10445 adp->ad_state |= UNDONE;
10446 }
10447 /*
10448 * The on-disk inode cannot claim to be any larger than the last
10449 * fragment that has been written. Otherwise, the on-disk inode
10450 * might have fragments that were not the last block in the ext
10451 * data which would corrupt the filesystem.
10452 */
10453 for (lastadp = NULL, adp = TAILQ_FIRST(&inodedep->id_extupdt); adp;
10454 lastadp = adp, adp = TAILQ_NEXT(adp, ad_next)) {
10455 dp->di_extb[adp->ad_offset] = adp->ad_oldblkno;
10456 /* keep going until hitting a rollback to a frag */
10457 if (adp->ad_oldsize == 0 || adp->ad_oldsize == fs->fs_bsize)
10458 continue;
10459 dp->di_extsize = fs->fs_bsize * adp->ad_offset + adp->ad_oldsize;
10460 for (i = adp->ad_offset + 1; i < UFS_NXADDR; i++) {
10461 #ifdef INVARIANTS
10462 if (dp->di_extb[i] != 0 && (deplist & (1 << i)) == 0)
10463 panic("initiate_write_inodeblock_ufs2: "
10464 "lost dep1");
10465 #endif /* INVARIANTS */
10466 dp->di_extb[i] = 0;
10467 }
10468 lastadp = NULL;
10469 break;
10470 }
10471 /*
10472 * If we have zero'ed out the last allocated block of the ext
10473 * data, roll back the size to the last currently allocated block.
10474 * We know that this last allocated block is a full-sized as
10475 * we already checked for fragments in the loop above.
10476 */
10477 if (lastadp != NULL &&
10478 dp->di_extsize <= (lastadp->ad_offset + 1) * fs->fs_bsize) {
10479 for (i = lastadp->ad_offset; i >= 0; i--)
10480 if (dp->di_extb[i] != 0)
10481 break;
10482 dp->di_extsize = (i + 1) * fs->fs_bsize;
10483 }
10484 /*
10485 * Set the file data dependencies to busy.
10486 */
10487 for (deplist = 0, adp = TAILQ_FIRST(&inodedep->id_inoupdt); adp;
10488 adp = TAILQ_NEXT(adp, ad_next)) {
10489 #ifdef INVARIANTS
10490 if (deplist != 0 && prevlbn >= adp->ad_offset)
10491 panic("softdep_write_inodeblock: lbn order");
10492 if ((adp->ad_state & ATTACHED) == 0)
10493 panic("inodedep %p and adp %p not attached", inodedep, adp);
10494 prevlbn = adp->ad_offset;
10495 if (adp->ad_offset < UFS_NDADDR &&
10496 dp->di_db[adp->ad_offset] != adp->ad_newblkno)
10497 panic("initiate_write_inodeblock_ufs2: "
10498 "direct pointer #%jd mismatch %jd != %jd",
10499 (intmax_t)adp->ad_offset,
10500 (intmax_t)dp->di_db[adp->ad_offset],
10501 (intmax_t)adp->ad_newblkno);
10502 if (adp->ad_offset >= UFS_NDADDR &&
10503 dp->di_ib[adp->ad_offset - UFS_NDADDR] != adp->ad_newblkno)
10504 panic("initiate_write_inodeblock_ufs2: "
10505 "indirect pointer #%jd mismatch %jd != %jd",
10506 (intmax_t)adp->ad_offset - UFS_NDADDR,
10507 (intmax_t)dp->di_ib[adp->ad_offset - UFS_NDADDR],
10508 (intmax_t)adp->ad_newblkno);
10509 deplist |= 1 << adp->ad_offset;
10510 if ((adp->ad_state & ATTACHED) == 0)
10511 panic("initiate_write_inodeblock_ufs2: Unknown "
10512 "state 0x%x", adp->ad_state);
10513 #endif /* INVARIANTS */
10514 adp->ad_state &= ~ATTACHED;
10515 adp->ad_state |= UNDONE;
10516 }
10517 /*
10518 * The on-disk inode cannot claim to be any larger than the last
10519 * fragment that has been written. Otherwise, the on-disk inode
10520 * might have fragments that were not the last block in the file
10521 * which would corrupt the filesystem.
10522 */
10523 for (lastadp = NULL, adp = TAILQ_FIRST(&inodedep->id_inoupdt); adp;
10524 lastadp = adp, adp = TAILQ_NEXT(adp, ad_next)) {
10525 if (adp->ad_offset >= UFS_NDADDR)
10526 break;
10527 dp->di_db[adp->ad_offset] = adp->ad_oldblkno;
10528 /* keep going until hitting a rollback to a frag */
10529 if (adp->ad_oldsize == 0 || adp->ad_oldsize == fs->fs_bsize)
10530 continue;
10531 dp->di_size = fs->fs_bsize * adp->ad_offset + adp->ad_oldsize;
10532 for (i = adp->ad_offset + 1; i < UFS_NDADDR; i++) {
10533 #ifdef INVARIANTS
10534 if (dp->di_db[i] != 0 && (deplist & (1 << i)) == 0)
10535 panic("initiate_write_inodeblock_ufs2: "
10536 "lost dep2");
10537 #endif /* INVARIANTS */
10538 dp->di_db[i] = 0;
10539 }
10540 for (i = 0; i < UFS_NIADDR; i++) {
10541 #ifdef INVARIANTS
10542 if (dp->di_ib[i] != 0 &&
10543 (deplist & ((1 << UFS_NDADDR) << i)) == 0)
10544 panic("initiate_write_inodeblock_ufs2: "
10545 "lost dep3");
10546 #endif /* INVARIANTS */
10547 dp->di_ib[i] = 0;
10548 }
10549 return;
10550 }
10551 /*
10552 * If we have zero'ed out the last allocated block of the file,
10553 * roll back the size to the last currently allocated block.
10554 * We know that this last allocated block is a full-sized as
10555 * we already checked for fragments in the loop above.
10556 */
10557 if (lastadp != NULL &&
10558 dp->di_size <= (lastadp->ad_offset + 1) * fs->fs_bsize) {
10559 for (i = lastadp->ad_offset; i >= 0; i--)
10560 if (dp->di_db[i] != 0)
10561 break;
10562 dp->di_size = (i + 1) * fs->fs_bsize;
10563 }
10564 /*
10565 * The only dependencies are for indirect blocks.
10566 *
10567 * The file size for indirect block additions is not guaranteed.
10568 * Such a guarantee would be non-trivial to achieve. The conventional
10569 * synchronous write implementation also does not make this guarantee.
10570 * Fsck should catch and fix discrepancies. Arguably, the file size
10571 * can be over-estimated without destroying integrity when the file
10572 * moves into the indirect blocks (i.e., is large). If we want to
10573 * postpone fsck, we are stuck with this argument.
10574 */
10575 for (; adp; adp = TAILQ_NEXT(adp, ad_next))
10576 dp->di_ib[adp->ad_offset - UFS_NDADDR] = 0;
10577 }
10578
10579 /*
10580 * Cancel an indirdep as a result of truncation. Release all of the
10581 * children allocindirs and place their journal work on the appropriate
10582 * list.
10583 */
10584 static void
cancel_indirdep(indirdep,bp,freeblks)10585 cancel_indirdep(indirdep, bp, freeblks)
10586 struct indirdep *indirdep;
10587 struct buf *bp;
10588 struct freeblks *freeblks;
10589 {
10590 struct allocindir *aip;
10591
10592 /*
10593 * None of the indirect pointers will ever be visible,
10594 * so they can simply be tossed. GOINGAWAY ensures
10595 * that allocated pointers will be saved in the buffer
10596 * cache until they are freed. Note that they will
10597 * only be able to be found by their physical address
10598 * since the inode mapping the logical address will
10599 * be gone. The save buffer used for the safe copy
10600 * was allocated in setup_allocindir_phase2 using
10601 * the physical address so it could be used for this
10602 * purpose. Hence we swap the safe copy with the real
10603 * copy, allowing the safe copy to be freed and holding
10604 * on to the real copy for later use in indir_trunc.
10605 */
10606 if (indirdep->ir_state & GOINGAWAY)
10607 panic("cancel_indirdep: already gone");
10608 if ((indirdep->ir_state & DEPCOMPLETE) == 0) {
10609 indirdep->ir_state |= DEPCOMPLETE;
10610 LIST_REMOVE(indirdep, ir_next);
10611 }
10612 indirdep->ir_state |= GOINGAWAY;
10613 /*
10614 * Pass in bp for blocks still have journal writes
10615 * pending so we can cancel them on their own.
10616 */
10617 while ((aip = LIST_FIRST(&indirdep->ir_deplisthd)) != NULL)
10618 cancel_allocindir(aip, bp, freeblks, 0);
10619 while ((aip = LIST_FIRST(&indirdep->ir_donehd)) != NULL)
10620 cancel_allocindir(aip, NULL, freeblks, 0);
10621 while ((aip = LIST_FIRST(&indirdep->ir_writehd)) != NULL)
10622 cancel_allocindir(aip, NULL, freeblks, 0);
10623 while ((aip = LIST_FIRST(&indirdep->ir_completehd)) != NULL)
10624 cancel_allocindir(aip, NULL, freeblks, 0);
10625 /*
10626 * If there are pending partial truncations we need to keep the
10627 * old block copy around until they complete. This is because
10628 * the current b_data is not a perfect superset of the available
10629 * blocks.
10630 */
10631 if (TAILQ_EMPTY(&indirdep->ir_trunc))
10632 bcopy(bp->b_data, indirdep->ir_savebp->b_data, bp->b_bcount);
10633 else
10634 bcopy(bp->b_data, indirdep->ir_saveddata, bp->b_bcount);
10635 WORKLIST_REMOVE(&indirdep->ir_list);
10636 WORKLIST_INSERT(&indirdep->ir_savebp->b_dep, &indirdep->ir_list);
10637 indirdep->ir_bp = NULL;
10638 indirdep->ir_freeblks = freeblks;
10639 }
10640
10641 /*
10642 * Free an indirdep once it no longer has new pointers to track.
10643 */
10644 static void
free_indirdep(indirdep)10645 free_indirdep(indirdep)
10646 struct indirdep *indirdep;
10647 {
10648
10649 KASSERT(TAILQ_EMPTY(&indirdep->ir_trunc),
10650 ("free_indirdep: Indir trunc list not empty."));
10651 KASSERT(LIST_EMPTY(&indirdep->ir_completehd),
10652 ("free_indirdep: Complete head not empty."));
10653 KASSERT(LIST_EMPTY(&indirdep->ir_writehd),
10654 ("free_indirdep: write head not empty."));
10655 KASSERT(LIST_EMPTY(&indirdep->ir_donehd),
10656 ("free_indirdep: done head not empty."));
10657 KASSERT(LIST_EMPTY(&indirdep->ir_deplisthd),
10658 ("free_indirdep: deplist head not empty."));
10659 KASSERT((indirdep->ir_state & DEPCOMPLETE),
10660 ("free_indirdep: %p still on newblk list.", indirdep));
10661 KASSERT(indirdep->ir_saveddata == NULL,
10662 ("free_indirdep: %p still has saved data.", indirdep));
10663 if (indirdep->ir_state & ONWORKLIST)
10664 WORKLIST_REMOVE(&indirdep->ir_list);
10665 WORKITEM_FREE(indirdep, D_INDIRDEP);
10666 }
10667
10668 /*
10669 * Called before a write to an indirdep. This routine is responsible for
10670 * rolling back pointers to a safe state which includes only those
10671 * allocindirs which have been completed.
10672 */
10673 static void
initiate_write_indirdep(indirdep,bp)10674 initiate_write_indirdep(indirdep, bp)
10675 struct indirdep *indirdep;
10676 struct buf *bp;
10677 {
10678 struct ufsmount *ump;
10679
10680 indirdep->ir_state |= IOSTARTED;
10681 if (indirdep->ir_state & GOINGAWAY)
10682 panic("disk_io_initiation: indirdep gone");
10683 /*
10684 * If there are no remaining dependencies, this will be writing
10685 * the real pointers.
10686 */
10687 if (LIST_EMPTY(&indirdep->ir_deplisthd) &&
10688 TAILQ_EMPTY(&indirdep->ir_trunc))
10689 return;
10690 /*
10691 * Replace up-to-date version with safe version.
10692 */
10693 if (indirdep->ir_saveddata == NULL) {
10694 ump = VFSTOUFS(indirdep->ir_list.wk_mp);
10695 LOCK_OWNED(ump);
10696 FREE_LOCK(ump);
10697 indirdep->ir_saveddata = malloc(bp->b_bcount, M_INDIRDEP,
10698 M_SOFTDEP_FLAGS);
10699 ACQUIRE_LOCK(ump);
10700 }
10701 indirdep->ir_state &= ~ATTACHED;
10702 indirdep->ir_state |= UNDONE;
10703 bcopy(bp->b_data, indirdep->ir_saveddata, bp->b_bcount);
10704 bcopy(indirdep->ir_savebp->b_data, bp->b_data,
10705 bp->b_bcount);
10706 }
10707
10708 /*
10709 * Called when an inode has been cleared in a cg bitmap. This finally
10710 * eliminates any canceled jaddrefs
10711 */
10712 void
softdep_setup_inofree(mp,bp,ino,wkhd)10713 softdep_setup_inofree(mp, bp, ino, wkhd)
10714 struct mount *mp;
10715 struct buf *bp;
10716 ino_t ino;
10717 struct workhead *wkhd;
10718 {
10719 struct worklist *wk, *wkn;
10720 struct inodedep *inodedep;
10721 struct ufsmount *ump;
10722 uint8_t *inosused;
10723 struct cg *cgp;
10724 struct fs *fs;
10725
10726 KASSERT(MOUNTEDSOFTDEP(mp) != 0,
10727 ("softdep_setup_inofree called on non-softdep filesystem"));
10728 ump = VFSTOUFS(mp);
10729 ACQUIRE_LOCK(ump);
10730 fs = ump->um_fs;
10731 cgp = (struct cg *)bp->b_data;
10732 inosused = cg_inosused(cgp);
10733 if (isset(inosused, ino % fs->fs_ipg))
10734 panic("softdep_setup_inofree: inode %ju not freed.",
10735 (uintmax_t)ino);
10736 if (inodedep_lookup(mp, ino, 0, &inodedep))
10737 panic("softdep_setup_inofree: ino %ju has existing inodedep %p",
10738 (uintmax_t)ino, inodedep);
10739 if (wkhd) {
10740 LIST_FOREACH_SAFE(wk, wkhd, wk_list, wkn) {
10741 if (wk->wk_type != D_JADDREF)
10742 continue;
10743 WORKLIST_REMOVE(wk);
10744 /*
10745 * We can free immediately even if the jaddref
10746 * isn't attached in a background write as now
10747 * the bitmaps are reconciled.
10748 */
10749 wk->wk_state |= COMPLETE | ATTACHED;
10750 free_jaddref(WK_JADDREF(wk));
10751 }
10752 jwork_move(&bp->b_dep, wkhd);
10753 }
10754 FREE_LOCK(ump);
10755 }
10756
10757
10758 /*
10759 * Called via ffs_blkfree() after a set of frags has been cleared from a cg
10760 * map. Any dependencies waiting for the write to clear are added to the
10761 * buf's list and any jnewblks that are being canceled are discarded
10762 * immediately.
10763 */
10764 void
softdep_setup_blkfree(mp,bp,blkno,frags,wkhd)10765 softdep_setup_blkfree(mp, bp, blkno, frags, wkhd)
10766 struct mount *mp;
10767 struct buf *bp;
10768 ufs2_daddr_t blkno;
10769 int frags;
10770 struct workhead *wkhd;
10771 {
10772 struct bmsafemap *bmsafemap;
10773 struct jnewblk *jnewblk;
10774 struct ufsmount *ump;
10775 struct worklist *wk;
10776 struct fs *fs;
10777 #ifdef SUJ_DEBUG
10778 uint8_t *blksfree;
10779 struct cg *cgp;
10780 ufs2_daddr_t jstart;
10781 ufs2_daddr_t jend;
10782 ufs2_daddr_t end;
10783 long bno;
10784 int i;
10785 #endif
10786
10787 CTR3(KTR_SUJ,
10788 "softdep_setup_blkfree: blkno %jd frags %d wk head %p",
10789 blkno, frags, wkhd);
10790
10791 ump = VFSTOUFS(mp);
10792 KASSERT(MOUNTEDSOFTDEP(UFSTOVFS(ump)) != 0,
10793 ("softdep_setup_blkfree called on non-softdep filesystem"));
10794 ACQUIRE_LOCK(ump);
10795 /* Lookup the bmsafemap so we track when it is dirty. */
10796 fs = ump->um_fs;
10797 bmsafemap = bmsafemap_lookup(mp, bp, dtog(fs, blkno), NULL);
10798 /*
10799 * Detach any jnewblks which have been canceled. They must linger
10800 * until the bitmap is cleared again by ffs_blkfree() to prevent
10801 * an unjournaled allocation from hitting the disk.
10802 */
10803 if (wkhd) {
10804 while ((wk = LIST_FIRST(wkhd)) != NULL) {
10805 CTR2(KTR_SUJ,
10806 "softdep_setup_blkfree: blkno %jd wk type %d",
10807 blkno, wk->wk_type);
10808 WORKLIST_REMOVE(wk);
10809 if (wk->wk_type != D_JNEWBLK) {
10810 WORKLIST_INSERT(&bmsafemap->sm_freehd, wk);
10811 continue;
10812 }
10813 jnewblk = WK_JNEWBLK(wk);
10814 KASSERT(jnewblk->jn_state & GOINGAWAY,
10815 ("softdep_setup_blkfree: jnewblk not canceled."));
10816 #ifdef SUJ_DEBUG
10817 /*
10818 * Assert that this block is free in the bitmap
10819 * before we discard the jnewblk.
10820 */
10821 cgp = (struct cg *)bp->b_data;
10822 blksfree = cg_blksfree(cgp);
10823 bno = dtogd(fs, jnewblk->jn_blkno);
10824 for (i = jnewblk->jn_oldfrags;
10825 i < jnewblk->jn_frags; i++) {
10826 if (isset(blksfree, bno + i))
10827 continue;
10828 panic("softdep_setup_blkfree: not free");
10829 }
10830 #endif
10831 /*
10832 * Even if it's not attached we can free immediately
10833 * as the new bitmap is correct.
10834 */
10835 wk->wk_state |= COMPLETE | ATTACHED;
10836 free_jnewblk(jnewblk);
10837 }
10838 }
10839
10840 #ifdef SUJ_DEBUG
10841 /*
10842 * Assert that we are not freeing a block which has an outstanding
10843 * allocation dependency.
10844 */
10845 fs = VFSTOUFS(mp)->um_fs;
10846 bmsafemap = bmsafemap_lookup(mp, bp, dtog(fs, blkno), NULL);
10847 end = blkno + frags;
10848 LIST_FOREACH(jnewblk, &bmsafemap->sm_jnewblkhd, jn_deps) {
10849 /*
10850 * Don't match against blocks that will be freed when the
10851 * background write is done.
10852 */
10853 if ((jnewblk->jn_state & (ATTACHED | COMPLETE | DEPCOMPLETE)) ==
10854 (COMPLETE | DEPCOMPLETE))
10855 continue;
10856 jstart = jnewblk->jn_blkno + jnewblk->jn_oldfrags;
10857 jend = jnewblk->jn_blkno + jnewblk->jn_frags;
10858 if ((blkno >= jstart && blkno < jend) ||
10859 (end > jstart && end <= jend)) {
10860 printf("state 0x%X %jd - %d %d dep %p\n",
10861 jnewblk->jn_state, jnewblk->jn_blkno,
10862 jnewblk->jn_oldfrags, jnewblk->jn_frags,
10863 jnewblk->jn_dep);
10864 panic("softdep_setup_blkfree: "
10865 "%jd-%jd(%d) overlaps with %jd-%jd",
10866 blkno, end, frags, jstart, jend);
10867 }
10868 }
10869 #endif
10870 FREE_LOCK(ump);
10871 }
10872
10873 /*
10874 * Revert a block allocation when the journal record that describes it
10875 * is not yet written.
10876 */
10877 static int
jnewblk_rollback(jnewblk,fs,cgp,blksfree)10878 jnewblk_rollback(jnewblk, fs, cgp, blksfree)
10879 struct jnewblk *jnewblk;
10880 struct fs *fs;
10881 struct cg *cgp;
10882 uint8_t *blksfree;
10883 {
10884 ufs1_daddr_t fragno;
10885 long cgbno, bbase;
10886 int frags, blk;
10887 int i;
10888
10889 frags = 0;
10890 cgbno = dtogd(fs, jnewblk->jn_blkno);
10891 /*
10892 * We have to test which frags need to be rolled back. We may
10893 * be operating on a stale copy when doing background writes.
10894 */
10895 for (i = jnewblk->jn_oldfrags; i < jnewblk->jn_frags; i++)
10896 if (isclr(blksfree, cgbno + i))
10897 frags++;
10898 if (frags == 0)
10899 return (0);
10900 /*
10901 * This is mostly ffs_blkfree() sans some validation and
10902 * superblock updates.
10903 */
10904 if (frags == fs->fs_frag) {
10905 fragno = fragstoblks(fs, cgbno);
10906 ffs_setblock(fs, blksfree, fragno);
10907 ffs_clusteracct(fs, cgp, fragno, 1);
10908 cgp->cg_cs.cs_nbfree++;
10909 } else {
10910 cgbno += jnewblk->jn_oldfrags;
10911 bbase = cgbno - fragnum(fs, cgbno);
10912 /* Decrement the old frags. */
10913 blk = blkmap(fs, blksfree, bbase);
10914 ffs_fragacct(fs, blk, cgp->cg_frsum, -1);
10915 /* Deallocate the fragment */
10916 for (i = 0; i < frags; i++)
10917 setbit(blksfree, cgbno + i);
10918 cgp->cg_cs.cs_nffree += frags;
10919 /* Add back in counts associated with the new frags */
10920 blk = blkmap(fs, blksfree, bbase);
10921 ffs_fragacct(fs, blk, cgp->cg_frsum, 1);
10922 /* If a complete block has been reassembled, account for it. */
10923 fragno = fragstoblks(fs, bbase);
10924 if (ffs_isblock(fs, blksfree, fragno)) {
10925 cgp->cg_cs.cs_nffree -= fs->fs_frag;
10926 ffs_clusteracct(fs, cgp, fragno, 1);
10927 cgp->cg_cs.cs_nbfree++;
10928 }
10929 }
10930 stat_jnewblk++;
10931 jnewblk->jn_state &= ~ATTACHED;
10932 jnewblk->jn_state |= UNDONE;
10933
10934 return (frags);
10935 }
10936
10937 static void
initiate_write_bmsafemap(bmsafemap,bp)10938 initiate_write_bmsafemap(bmsafemap, bp)
10939 struct bmsafemap *bmsafemap;
10940 struct buf *bp; /* The cg block. */
10941 {
10942 struct jaddref *jaddref;
10943 struct jnewblk *jnewblk;
10944 uint8_t *inosused;
10945 uint8_t *blksfree;
10946 struct cg *cgp;
10947 struct fs *fs;
10948 ino_t ino;
10949
10950 /*
10951 * If this is a background write, we did this at the time that
10952 * the copy was made, so do not need to do it again.
10953 */
10954 if (bmsafemap->sm_state & IOSTARTED)
10955 return;
10956 bmsafemap->sm_state |= IOSTARTED;
10957 /*
10958 * Clear any inode allocations which are pending journal writes.
10959 */
10960 if (LIST_FIRST(&bmsafemap->sm_jaddrefhd) != NULL) {
10961 cgp = (struct cg *)bp->b_data;
10962 fs = VFSTOUFS(bmsafemap->sm_list.wk_mp)->um_fs;
10963 inosused = cg_inosused(cgp);
10964 LIST_FOREACH(jaddref, &bmsafemap->sm_jaddrefhd, ja_bmdeps) {
10965 ino = jaddref->ja_ino % fs->fs_ipg;
10966 if (isset(inosused, ino)) {
10967 if ((jaddref->ja_mode & IFMT) == IFDIR)
10968 cgp->cg_cs.cs_ndir--;
10969 cgp->cg_cs.cs_nifree++;
10970 clrbit(inosused, ino);
10971 jaddref->ja_state &= ~ATTACHED;
10972 jaddref->ja_state |= UNDONE;
10973 stat_jaddref++;
10974 } else
10975 panic("initiate_write_bmsafemap: inode %ju "
10976 "marked free", (uintmax_t)jaddref->ja_ino);
10977 }
10978 }
10979 /*
10980 * Clear any block allocations which are pending journal writes.
10981 */
10982 if (LIST_FIRST(&bmsafemap->sm_jnewblkhd) != NULL) {
10983 cgp = (struct cg *)bp->b_data;
10984 fs = VFSTOUFS(bmsafemap->sm_list.wk_mp)->um_fs;
10985 blksfree = cg_blksfree(cgp);
10986 LIST_FOREACH(jnewblk, &bmsafemap->sm_jnewblkhd, jn_deps) {
10987 if (jnewblk_rollback(jnewblk, fs, cgp, blksfree))
10988 continue;
10989 panic("initiate_write_bmsafemap: block %jd "
10990 "marked free", jnewblk->jn_blkno);
10991 }
10992 }
10993 /*
10994 * Move allocation lists to the written lists so they can be
10995 * cleared once the block write is complete.
10996 */
10997 LIST_SWAP(&bmsafemap->sm_inodedephd, &bmsafemap->sm_inodedepwr,
10998 inodedep, id_deps);
10999 LIST_SWAP(&bmsafemap->sm_newblkhd, &bmsafemap->sm_newblkwr,
11000 newblk, nb_deps);
11001 LIST_SWAP(&bmsafemap->sm_freehd, &bmsafemap->sm_freewr, worklist,
11002 wk_list);
11003 }
11004
11005 /*
11006 * This routine is called during the completion interrupt
11007 * service routine for a disk write (from the procedure called
11008 * by the device driver to inform the filesystem caches of
11009 * a request completion). It should be called early in this
11010 * procedure, before the block is made available to other
11011 * processes or other routines are called.
11012 *
11013 */
11014 static void
softdep_disk_write_complete(bp)11015 softdep_disk_write_complete(bp)
11016 struct buf *bp; /* describes the completed disk write */
11017 {
11018 struct worklist *wk;
11019 struct worklist *owk;
11020 struct ufsmount *ump;
11021 struct workhead reattach;
11022 struct freeblks *freeblks;
11023 struct buf *sbp;
11024
11025 ump = softdep_bp_to_mp(bp);
11026 if (ump == NULL)
11027 return;
11028
11029 sbp = NULL;
11030
11031 /*
11032 * If an error occurred while doing the write, then the data
11033 * has not hit the disk and the dependencies cannot be processed.
11034 * But we do have to go through and roll forward any dependencies
11035 * that were rolled back before the disk write.
11036 */
11037 ACQUIRE_LOCK(ump);
11038 if ((bp->b_ioflags & BIO_ERROR) != 0 && (bp->b_flags & B_INVAL) == 0) {
11039 LIST_FOREACH(wk, &bp->b_dep, wk_list) {
11040 switch (wk->wk_type) {
11041
11042 case D_PAGEDEP:
11043 handle_written_filepage(WK_PAGEDEP(wk), bp, 0);
11044 continue;
11045
11046 case D_INODEDEP:
11047 handle_written_inodeblock(WK_INODEDEP(wk),
11048 bp, 0);
11049 continue;
11050
11051 case D_BMSAFEMAP:
11052 handle_written_bmsafemap(WK_BMSAFEMAP(wk),
11053 bp, 0);
11054 continue;
11055
11056 case D_INDIRDEP:
11057 handle_written_indirdep(WK_INDIRDEP(wk),
11058 bp, &sbp, 0);
11059 continue;
11060 default:
11061 /* nothing to roll forward */
11062 continue;
11063 }
11064 }
11065 FREE_LOCK(ump);
11066 return;
11067 }
11068 LIST_INIT(&reattach);
11069
11070 /*
11071 * Ump SU lock must not be released anywhere in this code segment.
11072 */
11073 owk = NULL;
11074 while ((wk = LIST_FIRST(&bp->b_dep)) != NULL) {
11075 WORKLIST_REMOVE(wk);
11076 atomic_add_long(&dep_write[wk->wk_type], 1);
11077 if (wk == owk)
11078 panic("duplicate worklist: %p\n", wk);
11079 owk = wk;
11080 switch (wk->wk_type) {
11081
11082 case D_PAGEDEP:
11083 if (handle_written_filepage(WK_PAGEDEP(wk), bp,
11084 WRITESUCCEEDED))
11085 WORKLIST_INSERT(&reattach, wk);
11086 continue;
11087
11088 case D_INODEDEP:
11089 if (handle_written_inodeblock(WK_INODEDEP(wk), bp,
11090 WRITESUCCEEDED))
11091 WORKLIST_INSERT(&reattach, wk);
11092 continue;
11093
11094 case D_BMSAFEMAP:
11095 if (handle_written_bmsafemap(WK_BMSAFEMAP(wk), bp,
11096 WRITESUCCEEDED))
11097 WORKLIST_INSERT(&reattach, wk);
11098 continue;
11099
11100 case D_MKDIR:
11101 handle_written_mkdir(WK_MKDIR(wk), MKDIR_BODY);
11102 continue;
11103
11104 case D_ALLOCDIRECT:
11105 wk->wk_state |= COMPLETE;
11106 handle_allocdirect_partdone(WK_ALLOCDIRECT(wk), NULL);
11107 continue;
11108
11109 case D_ALLOCINDIR:
11110 wk->wk_state |= COMPLETE;
11111 handle_allocindir_partdone(WK_ALLOCINDIR(wk));
11112 continue;
11113
11114 case D_INDIRDEP:
11115 if (handle_written_indirdep(WK_INDIRDEP(wk), bp, &sbp,
11116 WRITESUCCEEDED))
11117 WORKLIST_INSERT(&reattach, wk);
11118 continue;
11119
11120 case D_FREEBLKS:
11121 wk->wk_state |= COMPLETE;
11122 freeblks = WK_FREEBLKS(wk);
11123 if ((wk->wk_state & ALLCOMPLETE) == ALLCOMPLETE &&
11124 LIST_EMPTY(&freeblks->fb_jblkdephd))
11125 add_to_worklist(wk, WK_NODELAY);
11126 continue;
11127
11128 case D_FREEWORK:
11129 handle_written_freework(WK_FREEWORK(wk));
11130 break;
11131
11132 case D_JSEGDEP:
11133 free_jsegdep(WK_JSEGDEP(wk));
11134 continue;
11135
11136 case D_JSEG:
11137 handle_written_jseg(WK_JSEG(wk), bp);
11138 continue;
11139
11140 case D_SBDEP:
11141 if (handle_written_sbdep(WK_SBDEP(wk), bp))
11142 WORKLIST_INSERT(&reattach, wk);
11143 continue;
11144
11145 case D_FREEDEP:
11146 free_freedep(WK_FREEDEP(wk));
11147 continue;
11148
11149 default:
11150 panic("handle_disk_write_complete: Unknown type %s",
11151 TYPENAME(wk->wk_type));
11152 /* NOTREACHED */
11153 }
11154 }
11155 /*
11156 * Reattach any requests that must be redone.
11157 */
11158 while ((wk = LIST_FIRST(&reattach)) != NULL) {
11159 WORKLIST_REMOVE(wk);
11160 WORKLIST_INSERT(&bp->b_dep, wk);
11161 }
11162 FREE_LOCK(ump);
11163 if (sbp)
11164 brelse(sbp);
11165 }
11166
11167 /*
11168 * Called from within softdep_disk_write_complete above.
11169 */
11170 static void
handle_allocdirect_partdone(adp,wkhd)11171 handle_allocdirect_partdone(adp, wkhd)
11172 struct allocdirect *adp; /* the completed allocdirect */
11173 struct workhead *wkhd; /* Work to do when inode is writtne. */
11174 {
11175 struct allocdirectlst *listhead;
11176 struct allocdirect *listadp;
11177 struct inodedep *inodedep;
11178 long bsize;
11179
11180 LOCK_OWNED(VFSTOUFS(adp->ad_block.nb_list.wk_mp));
11181 if ((adp->ad_state & ALLCOMPLETE) != ALLCOMPLETE)
11182 return;
11183 /*
11184 * The on-disk inode cannot claim to be any larger than the last
11185 * fragment that has been written. Otherwise, the on-disk inode
11186 * might have fragments that were not the last block in the file
11187 * which would corrupt the filesystem. Thus, we cannot free any
11188 * allocdirects after one whose ad_oldblkno claims a fragment as
11189 * these blocks must be rolled back to zero before writing the inode.
11190 * We check the currently active set of allocdirects in id_inoupdt
11191 * or id_extupdt as appropriate.
11192 */
11193 inodedep = adp->ad_inodedep;
11194 bsize = inodedep->id_fs->fs_bsize;
11195 if (adp->ad_state & EXTDATA)
11196 listhead = &inodedep->id_extupdt;
11197 else
11198 listhead = &inodedep->id_inoupdt;
11199 TAILQ_FOREACH(listadp, listhead, ad_next) {
11200 /* found our block */
11201 if (listadp == adp)
11202 break;
11203 /* continue if ad_oldlbn is not a fragment */
11204 if (listadp->ad_oldsize == 0 ||
11205 listadp->ad_oldsize == bsize)
11206 continue;
11207 /* hit a fragment */
11208 return;
11209 }
11210 /*
11211 * If we have reached the end of the current list without
11212 * finding the just finished dependency, then it must be
11213 * on the future dependency list. Future dependencies cannot
11214 * be freed until they are moved to the current list.
11215 */
11216 if (listadp == NULL) {
11217 #ifdef DEBUG
11218 if (adp->ad_state & EXTDATA)
11219 listhead = &inodedep->id_newextupdt;
11220 else
11221 listhead = &inodedep->id_newinoupdt;
11222 TAILQ_FOREACH(listadp, listhead, ad_next)
11223 /* found our block */
11224 if (listadp == adp)
11225 break;
11226 if (listadp == NULL)
11227 panic("handle_allocdirect_partdone: lost dep");
11228 #endif /* DEBUG */
11229 return;
11230 }
11231 /*
11232 * If we have found the just finished dependency, then queue
11233 * it along with anything that follows it that is complete.
11234 * Since the pointer has not yet been written in the inode
11235 * as the dependency prevents it, place the allocdirect on the
11236 * bufwait list where it will be freed once the pointer is
11237 * valid.
11238 */
11239 if (wkhd == NULL)
11240 wkhd = &inodedep->id_bufwait;
11241 for (; adp; adp = listadp) {
11242 listadp = TAILQ_NEXT(adp, ad_next);
11243 if ((adp->ad_state & ALLCOMPLETE) != ALLCOMPLETE)
11244 return;
11245 TAILQ_REMOVE(listhead, adp, ad_next);
11246 WORKLIST_INSERT(wkhd, &adp->ad_block.nb_list);
11247 }
11248 }
11249
11250 /*
11251 * Called from within softdep_disk_write_complete above. This routine
11252 * completes successfully written allocindirs.
11253 */
11254 static void
handle_allocindir_partdone(aip)11255 handle_allocindir_partdone(aip)
11256 struct allocindir *aip; /* the completed allocindir */
11257 {
11258 struct indirdep *indirdep;
11259
11260 if ((aip->ai_state & ALLCOMPLETE) != ALLCOMPLETE)
11261 return;
11262 indirdep = aip->ai_indirdep;
11263 LIST_REMOVE(aip, ai_next);
11264 /*
11265 * Don't set a pointer while the buffer is undergoing IO or while
11266 * we have active truncations.
11267 */
11268 if (indirdep->ir_state & UNDONE || !TAILQ_EMPTY(&indirdep->ir_trunc)) {
11269 LIST_INSERT_HEAD(&indirdep->ir_donehd, aip, ai_next);
11270 return;
11271 }
11272 if (indirdep->ir_state & UFS1FMT)
11273 ((ufs1_daddr_t *)indirdep->ir_savebp->b_data)[aip->ai_offset] =
11274 aip->ai_newblkno;
11275 else
11276 ((ufs2_daddr_t *)indirdep->ir_savebp->b_data)[aip->ai_offset] =
11277 aip->ai_newblkno;
11278 /*
11279 * Await the pointer write before freeing the allocindir.
11280 */
11281 LIST_INSERT_HEAD(&indirdep->ir_writehd, aip, ai_next);
11282 }
11283
11284 /*
11285 * Release segments held on a jwork list.
11286 */
11287 static void
handle_jwork(wkhd)11288 handle_jwork(wkhd)
11289 struct workhead *wkhd;
11290 {
11291 struct worklist *wk;
11292
11293 while ((wk = LIST_FIRST(wkhd)) != NULL) {
11294 WORKLIST_REMOVE(wk);
11295 switch (wk->wk_type) {
11296 case D_JSEGDEP:
11297 free_jsegdep(WK_JSEGDEP(wk));
11298 continue;
11299 case D_FREEDEP:
11300 free_freedep(WK_FREEDEP(wk));
11301 continue;
11302 case D_FREEFRAG:
11303 rele_jseg(WK_JSEG(WK_FREEFRAG(wk)->ff_jdep));
11304 WORKITEM_FREE(wk, D_FREEFRAG);
11305 continue;
11306 case D_FREEWORK:
11307 handle_written_freework(WK_FREEWORK(wk));
11308 continue;
11309 default:
11310 panic("handle_jwork: Unknown type %s\n",
11311 TYPENAME(wk->wk_type));
11312 }
11313 }
11314 }
11315
11316 /*
11317 * Handle the bufwait list on an inode when it is safe to release items
11318 * held there. This normally happens after an inode block is written but
11319 * may be delayed and handled later if there are pending journal items that
11320 * are not yet safe to be released.
11321 */
11322 static struct freefile *
handle_bufwait(inodedep,refhd)11323 handle_bufwait(inodedep, refhd)
11324 struct inodedep *inodedep;
11325 struct workhead *refhd;
11326 {
11327 struct jaddref *jaddref;
11328 struct freefile *freefile;
11329 struct worklist *wk;
11330
11331 freefile = NULL;
11332 while ((wk = LIST_FIRST(&inodedep->id_bufwait)) != NULL) {
11333 WORKLIST_REMOVE(wk);
11334 switch (wk->wk_type) {
11335 case D_FREEFILE:
11336 /*
11337 * We defer adding freefile to the worklist
11338 * until all other additions have been made to
11339 * ensure that it will be done after all the
11340 * old blocks have been freed.
11341 */
11342 if (freefile != NULL)
11343 panic("handle_bufwait: freefile");
11344 freefile = WK_FREEFILE(wk);
11345 continue;
11346
11347 case D_MKDIR:
11348 handle_written_mkdir(WK_MKDIR(wk), MKDIR_PARENT);
11349 continue;
11350
11351 case D_DIRADD:
11352 diradd_inode_written(WK_DIRADD(wk), inodedep);
11353 continue;
11354
11355 case D_FREEFRAG:
11356 wk->wk_state |= COMPLETE;
11357 if ((wk->wk_state & ALLCOMPLETE) == ALLCOMPLETE)
11358 add_to_worklist(wk, 0);
11359 continue;
11360
11361 case D_DIRREM:
11362 wk->wk_state |= COMPLETE;
11363 add_to_worklist(wk, 0);
11364 continue;
11365
11366 case D_ALLOCDIRECT:
11367 case D_ALLOCINDIR:
11368 free_newblk(WK_NEWBLK(wk));
11369 continue;
11370
11371 case D_JNEWBLK:
11372 wk->wk_state |= COMPLETE;
11373 free_jnewblk(WK_JNEWBLK(wk));
11374 continue;
11375
11376 /*
11377 * Save freed journal segments and add references on
11378 * the supplied list which will delay their release
11379 * until the cg bitmap is cleared on disk.
11380 */
11381 case D_JSEGDEP:
11382 if (refhd == NULL)
11383 free_jsegdep(WK_JSEGDEP(wk));
11384 else
11385 WORKLIST_INSERT(refhd, wk);
11386 continue;
11387
11388 case D_JADDREF:
11389 jaddref = WK_JADDREF(wk);
11390 TAILQ_REMOVE(&inodedep->id_inoreflst, &jaddref->ja_ref,
11391 if_deps);
11392 /*
11393 * Transfer any jaddrefs to the list to be freed with
11394 * the bitmap if we're handling a removed file.
11395 */
11396 if (refhd == NULL) {
11397 wk->wk_state |= COMPLETE;
11398 free_jaddref(jaddref);
11399 } else
11400 WORKLIST_INSERT(refhd, wk);
11401 continue;
11402
11403 default:
11404 panic("handle_bufwait: Unknown type %p(%s)",
11405 wk, TYPENAME(wk->wk_type));
11406 /* NOTREACHED */
11407 }
11408 }
11409 return (freefile);
11410 }
11411 /*
11412 * Called from within softdep_disk_write_complete above to restore
11413 * in-memory inode block contents to their most up-to-date state. Note
11414 * that this routine is always called from interrupt level with further
11415 * interrupts from this device blocked.
11416 *
11417 * If the write did not succeed, we will do all the roll-forward
11418 * operations, but we will not take the actions that will allow its
11419 * dependencies to be processed.
11420 */
11421 static int
handle_written_inodeblock(inodedep,bp,flags)11422 handle_written_inodeblock(inodedep, bp, flags)
11423 struct inodedep *inodedep;
11424 struct buf *bp; /* buffer containing the inode block */
11425 int flags;
11426 {
11427 struct freefile *freefile;
11428 struct allocdirect *adp, *nextadp;
11429 struct ufs1_dinode *dp1 = NULL;
11430 struct ufs2_dinode *dp2 = NULL;
11431 struct workhead wkhd;
11432 int hadchanges, fstype;
11433 ino_t freelink;
11434
11435 LIST_INIT(&wkhd);
11436 hadchanges = 0;
11437 freefile = NULL;
11438 if ((inodedep->id_state & IOSTARTED) == 0)
11439 panic("handle_written_inodeblock: not started");
11440 inodedep->id_state &= ~IOSTARTED;
11441 if (inodedep->id_fs->fs_magic == FS_UFS1_MAGIC) {
11442 fstype = UFS1;
11443 dp1 = (struct ufs1_dinode *)bp->b_data +
11444 ino_to_fsbo(inodedep->id_fs, inodedep->id_ino);
11445 freelink = dp1->di_freelink;
11446 } else {
11447 fstype = UFS2;
11448 dp2 = (struct ufs2_dinode *)bp->b_data +
11449 ino_to_fsbo(inodedep->id_fs, inodedep->id_ino);
11450 freelink = dp2->di_freelink;
11451 }
11452 /*
11453 * Leave this inodeblock dirty until it's in the list.
11454 */
11455 if ((inodedep->id_state & (UNLINKED | UNLINKONLIST)) == UNLINKED &&
11456 (flags & WRITESUCCEEDED)) {
11457 struct inodedep *inon;
11458
11459 inon = TAILQ_NEXT(inodedep, id_unlinked);
11460 if ((inon == NULL && freelink == 0) ||
11461 (inon && inon->id_ino == freelink)) {
11462 if (inon)
11463 inon->id_state |= UNLINKPREV;
11464 inodedep->id_state |= UNLINKNEXT;
11465 }
11466 hadchanges = 1;
11467 }
11468 /*
11469 * If we had to rollback the inode allocation because of
11470 * bitmaps being incomplete, then simply restore it.
11471 * Keep the block dirty so that it will not be reclaimed until
11472 * all associated dependencies have been cleared and the
11473 * corresponding updates written to disk.
11474 */
11475 if (inodedep->id_savedino1 != NULL) {
11476 hadchanges = 1;
11477 if (fstype == UFS1)
11478 *dp1 = *inodedep->id_savedino1;
11479 else
11480 *dp2 = *inodedep->id_savedino2;
11481 free(inodedep->id_savedino1, M_SAVEDINO);
11482 inodedep->id_savedino1 = NULL;
11483 if ((bp->b_flags & B_DELWRI) == 0)
11484 stat_inode_bitmap++;
11485 bdirty(bp);
11486 /*
11487 * If the inode is clear here and GOINGAWAY it will never
11488 * be written. Process the bufwait and clear any pending
11489 * work which may include the freefile.
11490 */
11491 if (inodedep->id_state & GOINGAWAY)
11492 goto bufwait;
11493 return (1);
11494 }
11495 if (flags & WRITESUCCEEDED)
11496 inodedep->id_state |= COMPLETE;
11497 /*
11498 * Roll forward anything that had to be rolled back before
11499 * the inode could be updated.
11500 */
11501 for (adp = TAILQ_FIRST(&inodedep->id_inoupdt); adp; adp = nextadp) {
11502 nextadp = TAILQ_NEXT(adp, ad_next);
11503 if (adp->ad_state & ATTACHED)
11504 panic("handle_written_inodeblock: new entry");
11505 if (fstype == UFS1) {
11506 if (adp->ad_offset < UFS_NDADDR) {
11507 if (dp1->di_db[adp->ad_offset]!=adp->ad_oldblkno)
11508 panic("%s %s #%jd mismatch %d != %jd",
11509 "handle_written_inodeblock:",
11510 "direct pointer",
11511 (intmax_t)adp->ad_offset,
11512 dp1->di_db[adp->ad_offset],
11513 (intmax_t)adp->ad_oldblkno);
11514 dp1->di_db[adp->ad_offset] = adp->ad_newblkno;
11515 } else {
11516 if (dp1->di_ib[adp->ad_offset - UFS_NDADDR] !=
11517 0)
11518 panic("%s: %s #%jd allocated as %d",
11519 "handle_written_inodeblock",
11520 "indirect pointer",
11521 (intmax_t)adp->ad_offset -
11522 UFS_NDADDR,
11523 dp1->di_ib[adp->ad_offset -
11524 UFS_NDADDR]);
11525 dp1->di_ib[adp->ad_offset - UFS_NDADDR] =
11526 adp->ad_newblkno;
11527 }
11528 } else {
11529 if (adp->ad_offset < UFS_NDADDR) {
11530 if (dp2->di_db[adp->ad_offset]!=adp->ad_oldblkno)
11531 panic("%s: %s #%jd %s %jd != %jd",
11532 "handle_written_inodeblock",
11533 "direct pointer",
11534 (intmax_t)adp->ad_offset, "mismatch",
11535 (intmax_t)dp2->di_db[adp->ad_offset],
11536 (intmax_t)adp->ad_oldblkno);
11537 dp2->di_db[adp->ad_offset] = adp->ad_newblkno;
11538 } else {
11539 if (dp2->di_ib[adp->ad_offset - UFS_NDADDR] !=
11540 0)
11541 panic("%s: %s #%jd allocated as %jd",
11542 "handle_written_inodeblock",
11543 "indirect pointer",
11544 (intmax_t)adp->ad_offset -
11545 UFS_NDADDR,
11546 (intmax_t)
11547 dp2->di_ib[adp->ad_offset -
11548 UFS_NDADDR]);
11549 dp2->di_ib[adp->ad_offset - UFS_NDADDR] =
11550 adp->ad_newblkno;
11551 }
11552 }
11553 adp->ad_state &= ~UNDONE;
11554 adp->ad_state |= ATTACHED;
11555 hadchanges = 1;
11556 }
11557 for (adp = TAILQ_FIRST(&inodedep->id_extupdt); adp; adp = nextadp) {
11558 nextadp = TAILQ_NEXT(adp, ad_next);
11559 if (adp->ad_state & ATTACHED)
11560 panic("handle_written_inodeblock: new entry");
11561 if (dp2->di_extb[adp->ad_offset] != adp->ad_oldblkno)
11562 panic("%s: direct pointers #%jd %s %jd != %jd",
11563 "handle_written_inodeblock",
11564 (intmax_t)adp->ad_offset, "mismatch",
11565 (intmax_t)dp2->di_extb[adp->ad_offset],
11566 (intmax_t)adp->ad_oldblkno);
11567 dp2->di_extb[adp->ad_offset] = adp->ad_newblkno;
11568 adp->ad_state &= ~UNDONE;
11569 adp->ad_state |= ATTACHED;
11570 hadchanges = 1;
11571 }
11572 if (hadchanges && (bp->b_flags & B_DELWRI) == 0)
11573 stat_direct_blk_ptrs++;
11574 /*
11575 * Reset the file size to its most up-to-date value.
11576 */
11577 if (inodedep->id_savedsize == -1 || inodedep->id_savedextsize == -1)
11578 panic("handle_written_inodeblock: bad size");
11579 if (inodedep->id_savednlink > UFS_LINK_MAX)
11580 panic("handle_written_inodeblock: Invalid link count "
11581 "%jd for inodedep %p", (uintmax_t)inodedep->id_savednlink,
11582 inodedep);
11583 if (fstype == UFS1) {
11584 if (dp1->di_nlink != inodedep->id_savednlink) {
11585 dp1->di_nlink = inodedep->id_savednlink;
11586 hadchanges = 1;
11587 }
11588 if (dp1->di_size != inodedep->id_savedsize) {
11589 dp1->di_size = inodedep->id_savedsize;
11590 hadchanges = 1;
11591 }
11592 } else {
11593 if (dp2->di_nlink != inodedep->id_savednlink) {
11594 dp2->di_nlink = inodedep->id_savednlink;
11595 hadchanges = 1;
11596 }
11597 if (dp2->di_size != inodedep->id_savedsize) {
11598 dp2->di_size = inodedep->id_savedsize;
11599 hadchanges = 1;
11600 }
11601 if (dp2->di_extsize != inodedep->id_savedextsize) {
11602 dp2->di_extsize = inodedep->id_savedextsize;
11603 hadchanges = 1;
11604 }
11605 }
11606 inodedep->id_savedsize = -1;
11607 inodedep->id_savedextsize = -1;
11608 inodedep->id_savednlink = -1;
11609 /*
11610 * If there were any rollbacks in the inode block, then it must be
11611 * marked dirty so that its will eventually get written back in
11612 * its correct form.
11613 */
11614 if (hadchanges)
11615 bdirty(bp);
11616 bufwait:
11617 /*
11618 * If the write did not succeed, we have done all the roll-forward
11619 * operations, but we cannot take the actions that will allow its
11620 * dependencies to be processed.
11621 */
11622 if ((flags & WRITESUCCEEDED) == 0)
11623 return (hadchanges);
11624 /*
11625 * Process any allocdirects that completed during the update.
11626 */
11627 if ((adp = TAILQ_FIRST(&inodedep->id_inoupdt)) != NULL)
11628 handle_allocdirect_partdone(adp, &wkhd);
11629 if ((adp = TAILQ_FIRST(&inodedep->id_extupdt)) != NULL)
11630 handle_allocdirect_partdone(adp, &wkhd);
11631 /*
11632 * Process deallocations that were held pending until the
11633 * inode had been written to disk. Freeing of the inode
11634 * is delayed until after all blocks have been freed to
11635 * avoid creation of new <vfsid, inum, lbn> triples
11636 * before the old ones have been deleted. Completely
11637 * unlinked inodes are not processed until the unlinked
11638 * inode list is written or the last reference is removed.
11639 */
11640 if ((inodedep->id_state & (UNLINKED | UNLINKONLIST)) != UNLINKED) {
11641 freefile = handle_bufwait(inodedep, NULL);
11642 if (freefile && !LIST_EMPTY(&wkhd)) {
11643 WORKLIST_INSERT(&wkhd, &freefile->fx_list);
11644 freefile = NULL;
11645 }
11646 }
11647 /*
11648 * Move rolled forward dependency completions to the bufwait list
11649 * now that those that were already written have been processed.
11650 */
11651 if (!LIST_EMPTY(&wkhd) && hadchanges == 0)
11652 panic("handle_written_inodeblock: bufwait but no changes");
11653 jwork_move(&inodedep->id_bufwait, &wkhd);
11654
11655 if (freefile != NULL) {
11656 /*
11657 * If the inode is goingaway it was never written. Fake up
11658 * the state here so free_inodedep() can succeed.
11659 */
11660 if (inodedep->id_state & GOINGAWAY)
11661 inodedep->id_state |= COMPLETE | DEPCOMPLETE;
11662 if (free_inodedep(inodedep) == 0)
11663 panic("handle_written_inodeblock: live inodedep %p",
11664 inodedep);
11665 add_to_worklist(&freefile->fx_list, 0);
11666 return (0);
11667 }
11668
11669 /*
11670 * If no outstanding dependencies, free it.
11671 */
11672 if (free_inodedep(inodedep) ||
11673 (TAILQ_FIRST(&inodedep->id_inoreflst) == 0 &&
11674 TAILQ_FIRST(&inodedep->id_inoupdt) == 0 &&
11675 TAILQ_FIRST(&inodedep->id_extupdt) == 0 &&
11676 LIST_FIRST(&inodedep->id_bufwait) == 0))
11677 return (0);
11678 return (hadchanges);
11679 }
11680
11681 /*
11682 * Perform needed roll-forwards and kick off any dependencies that
11683 * can now be processed.
11684 *
11685 * If the write did not succeed, we will do all the roll-forward
11686 * operations, but we will not take the actions that will allow its
11687 * dependencies to be processed.
11688 */
11689 static int
handle_written_indirdep(indirdep,bp,bpp,flags)11690 handle_written_indirdep(indirdep, bp, bpp, flags)
11691 struct indirdep *indirdep;
11692 struct buf *bp;
11693 struct buf **bpp;
11694 int flags;
11695 {
11696 struct allocindir *aip;
11697 struct buf *sbp;
11698 int chgs;
11699
11700 if (indirdep->ir_state & GOINGAWAY)
11701 panic("handle_written_indirdep: indirdep gone");
11702 if ((indirdep->ir_state & IOSTARTED) == 0)
11703 panic("handle_written_indirdep: IO not started");
11704 chgs = 0;
11705 /*
11706 * If there were rollbacks revert them here.
11707 */
11708 if (indirdep->ir_saveddata) {
11709 bcopy(indirdep->ir_saveddata, bp->b_data, bp->b_bcount);
11710 if (TAILQ_EMPTY(&indirdep->ir_trunc)) {
11711 free(indirdep->ir_saveddata, M_INDIRDEP);
11712 indirdep->ir_saveddata = NULL;
11713 }
11714 chgs = 1;
11715 }
11716 indirdep->ir_state &= ~(UNDONE | IOSTARTED);
11717 indirdep->ir_state |= ATTACHED;
11718 /*
11719 * If the write did not succeed, we have done all the roll-forward
11720 * operations, but we cannot take the actions that will allow its
11721 * dependencies to be processed.
11722 */
11723 if ((flags & WRITESUCCEEDED) == 0) {
11724 stat_indir_blk_ptrs++;
11725 bdirty(bp);
11726 return (1);
11727 }
11728 /*
11729 * Move allocindirs with written pointers to the completehd if
11730 * the indirdep's pointer is not yet written. Otherwise
11731 * free them here.
11732 */
11733 while ((aip = LIST_FIRST(&indirdep->ir_writehd)) != NULL) {
11734 LIST_REMOVE(aip, ai_next);
11735 if ((indirdep->ir_state & DEPCOMPLETE) == 0) {
11736 LIST_INSERT_HEAD(&indirdep->ir_completehd, aip,
11737 ai_next);
11738 newblk_freefrag(&aip->ai_block);
11739 continue;
11740 }
11741 free_newblk(&aip->ai_block);
11742 }
11743 /*
11744 * Move allocindirs that have finished dependency processing from
11745 * the done list to the write list after updating the pointers.
11746 */
11747 if (TAILQ_EMPTY(&indirdep->ir_trunc)) {
11748 while ((aip = LIST_FIRST(&indirdep->ir_donehd)) != NULL) {
11749 handle_allocindir_partdone(aip);
11750 if (aip == LIST_FIRST(&indirdep->ir_donehd))
11751 panic("disk_write_complete: not gone");
11752 chgs = 1;
11753 }
11754 }
11755 /*
11756 * Preserve the indirdep if there were any changes or if it is not
11757 * yet valid on disk.
11758 */
11759 if (chgs) {
11760 stat_indir_blk_ptrs++;
11761 bdirty(bp);
11762 return (1);
11763 }
11764 /*
11765 * If there were no changes we can discard the savedbp and detach
11766 * ourselves from the buf. We are only carrying completed pointers
11767 * in this case.
11768 */
11769 sbp = indirdep->ir_savebp;
11770 sbp->b_flags |= B_INVAL | B_NOCACHE;
11771 indirdep->ir_savebp = NULL;
11772 indirdep->ir_bp = NULL;
11773 if (*bpp != NULL)
11774 panic("handle_written_indirdep: bp already exists.");
11775 *bpp = sbp;
11776 /*
11777 * The indirdep may not be freed until its parent points at it.
11778 */
11779 if (indirdep->ir_state & DEPCOMPLETE)
11780 free_indirdep(indirdep);
11781
11782 return (0);
11783 }
11784
11785 /*
11786 * Process a diradd entry after its dependent inode has been written.
11787 */
11788 static void
diradd_inode_written(dap,inodedep)11789 diradd_inode_written(dap, inodedep)
11790 struct diradd *dap;
11791 struct inodedep *inodedep;
11792 {
11793
11794 LOCK_OWNED(VFSTOUFS(dap->da_list.wk_mp));
11795 dap->da_state |= COMPLETE;
11796 complete_diradd(dap);
11797 WORKLIST_INSERT(&inodedep->id_pendinghd, &dap->da_list);
11798 }
11799
11800 /*
11801 * Returns true if the bmsafemap will have rollbacks when written. Must only
11802 * be called with the per-filesystem lock and the buf lock on the cg held.
11803 */
11804 static int
bmsafemap_backgroundwrite(bmsafemap,bp)11805 bmsafemap_backgroundwrite(bmsafemap, bp)
11806 struct bmsafemap *bmsafemap;
11807 struct buf *bp;
11808 {
11809 int dirty;
11810
11811 LOCK_OWNED(VFSTOUFS(bmsafemap->sm_list.wk_mp));
11812 dirty = !LIST_EMPTY(&bmsafemap->sm_jaddrefhd) |
11813 !LIST_EMPTY(&bmsafemap->sm_jnewblkhd);
11814 /*
11815 * If we're initiating a background write we need to process the
11816 * rollbacks as they exist now, not as they exist when IO starts.
11817 * No other consumers will look at the contents of the shadowed
11818 * buf so this is safe to do here.
11819 */
11820 if (bp->b_xflags & BX_BKGRDMARKER)
11821 initiate_write_bmsafemap(bmsafemap, bp);
11822
11823 return (dirty);
11824 }
11825
11826 /*
11827 * Re-apply an allocation when a cg write is complete.
11828 */
11829 static int
jnewblk_rollforward(jnewblk,fs,cgp,blksfree)11830 jnewblk_rollforward(jnewblk, fs, cgp, blksfree)
11831 struct jnewblk *jnewblk;
11832 struct fs *fs;
11833 struct cg *cgp;
11834 uint8_t *blksfree;
11835 {
11836 ufs1_daddr_t fragno;
11837 ufs2_daddr_t blkno;
11838 long cgbno, bbase;
11839 int frags, blk;
11840 int i;
11841
11842 frags = 0;
11843 cgbno = dtogd(fs, jnewblk->jn_blkno);
11844 for (i = jnewblk->jn_oldfrags; i < jnewblk->jn_frags; i++) {
11845 if (isclr(blksfree, cgbno + i))
11846 panic("jnewblk_rollforward: re-allocated fragment");
11847 frags++;
11848 }
11849 if (frags == fs->fs_frag) {
11850 blkno = fragstoblks(fs, cgbno);
11851 ffs_clrblock(fs, blksfree, (long)blkno);
11852 ffs_clusteracct(fs, cgp, blkno, -1);
11853 cgp->cg_cs.cs_nbfree--;
11854 } else {
11855 bbase = cgbno - fragnum(fs, cgbno);
11856 cgbno += jnewblk->jn_oldfrags;
11857 /* If a complete block had been reassembled, account for it. */
11858 fragno = fragstoblks(fs, bbase);
11859 if (ffs_isblock(fs, blksfree, fragno)) {
11860 cgp->cg_cs.cs_nffree += fs->fs_frag;
11861 ffs_clusteracct(fs, cgp, fragno, -1);
11862 cgp->cg_cs.cs_nbfree--;
11863 }
11864 /* Decrement the old frags. */
11865 blk = blkmap(fs, blksfree, bbase);
11866 ffs_fragacct(fs, blk, cgp->cg_frsum, -1);
11867 /* Allocate the fragment */
11868 for (i = 0; i < frags; i++)
11869 clrbit(blksfree, cgbno + i);
11870 cgp->cg_cs.cs_nffree -= frags;
11871 /* Add back in counts associated with the new frags */
11872 blk = blkmap(fs, blksfree, bbase);
11873 ffs_fragacct(fs, blk, cgp->cg_frsum, 1);
11874 }
11875 return (frags);
11876 }
11877
11878 /*
11879 * Complete a write to a bmsafemap structure. Roll forward any bitmap
11880 * changes if it's not a background write. Set all written dependencies
11881 * to DEPCOMPLETE and free the structure if possible.
11882 *
11883 * If the write did not succeed, we will do all the roll-forward
11884 * operations, but we will not take the actions that will allow its
11885 * dependencies to be processed.
11886 */
11887 static int
handle_written_bmsafemap(bmsafemap,bp,flags)11888 handle_written_bmsafemap(bmsafemap, bp, flags)
11889 struct bmsafemap *bmsafemap;
11890 struct buf *bp;
11891 int flags;
11892 {
11893 struct newblk *newblk;
11894 struct inodedep *inodedep;
11895 struct jaddref *jaddref, *jatmp;
11896 struct jnewblk *jnewblk, *jntmp;
11897 struct ufsmount *ump;
11898 uint8_t *inosused;
11899 uint8_t *blksfree;
11900 struct cg *cgp;
11901 struct fs *fs;
11902 ino_t ino;
11903 int foreground;
11904 int chgs;
11905
11906 if ((bmsafemap->sm_state & IOSTARTED) == 0)
11907 panic("handle_written_bmsafemap: Not started\n");
11908 ump = VFSTOUFS(bmsafemap->sm_list.wk_mp);
11909 chgs = 0;
11910 bmsafemap->sm_state &= ~IOSTARTED;
11911 foreground = (bp->b_xflags & BX_BKGRDMARKER) == 0;
11912 /*
11913 * If write was successful, release journal work that was waiting
11914 * on the write. Otherwise move the work back.
11915 */
11916 if (flags & WRITESUCCEEDED)
11917 handle_jwork(&bmsafemap->sm_freewr);
11918 else
11919 LIST_CONCAT(&bmsafemap->sm_freehd, &bmsafemap->sm_freewr,
11920 worklist, wk_list);
11921
11922 /*
11923 * Restore unwritten inode allocation pending jaddref writes.
11924 */
11925 if (!LIST_EMPTY(&bmsafemap->sm_jaddrefhd)) {
11926 cgp = (struct cg *)bp->b_data;
11927 fs = VFSTOUFS(bmsafemap->sm_list.wk_mp)->um_fs;
11928 inosused = cg_inosused(cgp);
11929 LIST_FOREACH_SAFE(jaddref, &bmsafemap->sm_jaddrefhd,
11930 ja_bmdeps, jatmp) {
11931 if ((jaddref->ja_state & UNDONE) == 0)
11932 continue;
11933 ino = jaddref->ja_ino % fs->fs_ipg;
11934 if (isset(inosused, ino))
11935 panic("handle_written_bmsafemap: "
11936 "re-allocated inode");
11937 /* Do the roll-forward only if it's a real copy. */
11938 if (foreground) {
11939 if ((jaddref->ja_mode & IFMT) == IFDIR)
11940 cgp->cg_cs.cs_ndir++;
11941 cgp->cg_cs.cs_nifree--;
11942 setbit(inosused, ino);
11943 chgs = 1;
11944 }
11945 jaddref->ja_state &= ~UNDONE;
11946 jaddref->ja_state |= ATTACHED;
11947 free_jaddref(jaddref);
11948 }
11949 }
11950 /*
11951 * Restore any block allocations which are pending journal writes.
11952 */
11953 if (LIST_FIRST(&bmsafemap->sm_jnewblkhd) != NULL) {
11954 cgp = (struct cg *)bp->b_data;
11955 fs = VFSTOUFS(bmsafemap->sm_list.wk_mp)->um_fs;
11956 blksfree = cg_blksfree(cgp);
11957 LIST_FOREACH_SAFE(jnewblk, &bmsafemap->sm_jnewblkhd, jn_deps,
11958 jntmp) {
11959 if ((jnewblk->jn_state & UNDONE) == 0)
11960 continue;
11961 /* Do the roll-forward only if it's a real copy. */
11962 if (foreground &&
11963 jnewblk_rollforward(jnewblk, fs, cgp, blksfree))
11964 chgs = 1;
11965 jnewblk->jn_state &= ~(UNDONE | NEWBLOCK);
11966 jnewblk->jn_state |= ATTACHED;
11967 free_jnewblk(jnewblk);
11968 }
11969 }
11970 /*
11971 * If the write did not succeed, we have done all the roll-forward
11972 * operations, but we cannot take the actions that will allow its
11973 * dependencies to be processed.
11974 */
11975 if ((flags & WRITESUCCEEDED) == 0) {
11976 LIST_CONCAT(&bmsafemap->sm_newblkhd, &bmsafemap->sm_newblkwr,
11977 newblk, nb_deps);
11978 LIST_CONCAT(&bmsafemap->sm_freehd, &bmsafemap->sm_freewr,
11979 worklist, wk_list);
11980 if (foreground)
11981 bdirty(bp);
11982 return (1);
11983 }
11984 while ((newblk = LIST_FIRST(&bmsafemap->sm_newblkwr))) {
11985 newblk->nb_state |= DEPCOMPLETE;
11986 newblk->nb_state &= ~ONDEPLIST;
11987 newblk->nb_bmsafemap = NULL;
11988 LIST_REMOVE(newblk, nb_deps);
11989 if (newblk->nb_list.wk_type == D_ALLOCDIRECT)
11990 handle_allocdirect_partdone(
11991 WK_ALLOCDIRECT(&newblk->nb_list), NULL);
11992 else if (newblk->nb_list.wk_type == D_ALLOCINDIR)
11993 handle_allocindir_partdone(
11994 WK_ALLOCINDIR(&newblk->nb_list));
11995 else if (newblk->nb_list.wk_type != D_NEWBLK)
11996 panic("handle_written_bmsafemap: Unexpected type: %s",
11997 TYPENAME(newblk->nb_list.wk_type));
11998 }
11999 while ((inodedep = LIST_FIRST(&bmsafemap->sm_inodedepwr)) != NULL) {
12000 inodedep->id_state |= DEPCOMPLETE;
12001 inodedep->id_state &= ~ONDEPLIST;
12002 LIST_REMOVE(inodedep, id_deps);
12003 inodedep->id_bmsafemap = NULL;
12004 }
12005 LIST_REMOVE(bmsafemap, sm_next);
12006 if (chgs == 0 && LIST_EMPTY(&bmsafemap->sm_jaddrefhd) &&
12007 LIST_EMPTY(&bmsafemap->sm_jnewblkhd) &&
12008 LIST_EMPTY(&bmsafemap->sm_newblkhd) &&
12009 LIST_EMPTY(&bmsafemap->sm_inodedephd) &&
12010 LIST_EMPTY(&bmsafemap->sm_freehd)) {
12011 LIST_REMOVE(bmsafemap, sm_hash);
12012 WORKITEM_FREE(bmsafemap, D_BMSAFEMAP);
12013 return (0);
12014 }
12015 LIST_INSERT_HEAD(&ump->softdep_dirtycg, bmsafemap, sm_next);
12016 if (foreground)
12017 bdirty(bp);
12018 return (1);
12019 }
12020
12021 /*
12022 * Try to free a mkdir dependency.
12023 */
12024 static void
complete_mkdir(mkdir)12025 complete_mkdir(mkdir)
12026 struct mkdir *mkdir;
12027 {
12028 struct diradd *dap;
12029
12030 if ((mkdir->md_state & ALLCOMPLETE) != ALLCOMPLETE)
12031 return;
12032 LIST_REMOVE(mkdir, md_mkdirs);
12033 dap = mkdir->md_diradd;
12034 dap->da_state &= ~(mkdir->md_state & (MKDIR_PARENT | MKDIR_BODY));
12035 if ((dap->da_state & (MKDIR_PARENT | MKDIR_BODY)) == 0) {
12036 dap->da_state |= DEPCOMPLETE;
12037 complete_diradd(dap);
12038 }
12039 WORKITEM_FREE(mkdir, D_MKDIR);
12040 }
12041
12042 /*
12043 * Handle the completion of a mkdir dependency.
12044 */
12045 static void
handle_written_mkdir(mkdir,type)12046 handle_written_mkdir(mkdir, type)
12047 struct mkdir *mkdir;
12048 int type;
12049 {
12050
12051 if ((mkdir->md_state & (MKDIR_PARENT | MKDIR_BODY)) != type)
12052 panic("handle_written_mkdir: bad type");
12053 mkdir->md_state |= COMPLETE;
12054 complete_mkdir(mkdir);
12055 }
12056
12057 static int
free_pagedep(pagedep)12058 free_pagedep(pagedep)
12059 struct pagedep *pagedep;
12060 {
12061 int i;
12062
12063 if (pagedep->pd_state & NEWBLOCK)
12064 return (0);
12065 if (!LIST_EMPTY(&pagedep->pd_dirremhd))
12066 return (0);
12067 for (i = 0; i < DAHASHSZ; i++)
12068 if (!LIST_EMPTY(&pagedep->pd_diraddhd[i]))
12069 return (0);
12070 if (!LIST_EMPTY(&pagedep->pd_pendinghd))
12071 return (0);
12072 if (!LIST_EMPTY(&pagedep->pd_jmvrefhd))
12073 return (0);
12074 if (pagedep->pd_state & ONWORKLIST)
12075 WORKLIST_REMOVE(&pagedep->pd_list);
12076 LIST_REMOVE(pagedep, pd_hash);
12077 WORKITEM_FREE(pagedep, D_PAGEDEP);
12078
12079 return (1);
12080 }
12081
12082 /*
12083 * Called from within softdep_disk_write_complete above.
12084 * A write operation was just completed. Removed inodes can
12085 * now be freed and associated block pointers may be committed.
12086 * Note that this routine is always called from interrupt level
12087 * with further interrupts from this device blocked.
12088 *
12089 * If the write did not succeed, we will do all the roll-forward
12090 * operations, but we will not take the actions that will allow its
12091 * dependencies to be processed.
12092 */
12093 static int
handle_written_filepage(pagedep,bp,flags)12094 handle_written_filepage(pagedep, bp, flags)
12095 struct pagedep *pagedep;
12096 struct buf *bp; /* buffer containing the written page */
12097 int flags;
12098 {
12099 struct dirrem *dirrem;
12100 struct diradd *dap, *nextdap;
12101 struct direct *ep;
12102 int i, chgs;
12103
12104 if ((pagedep->pd_state & IOSTARTED) == 0)
12105 panic("handle_written_filepage: not started");
12106 pagedep->pd_state &= ~IOSTARTED;
12107 if ((flags & WRITESUCCEEDED) == 0)
12108 goto rollforward;
12109 /*
12110 * Process any directory removals that have been committed.
12111 */
12112 while ((dirrem = LIST_FIRST(&pagedep->pd_dirremhd)) != NULL) {
12113 LIST_REMOVE(dirrem, dm_next);
12114 dirrem->dm_state |= COMPLETE;
12115 dirrem->dm_dirinum = pagedep->pd_ino;
12116 KASSERT(LIST_EMPTY(&dirrem->dm_jremrefhd),
12117 ("handle_written_filepage: Journal entries not written."));
12118 add_to_worklist(&dirrem->dm_list, 0);
12119 }
12120 /*
12121 * Free any directory additions that have been committed.
12122 * If it is a newly allocated block, we have to wait until
12123 * the on-disk directory inode claims the new block.
12124 */
12125 if ((pagedep->pd_state & NEWBLOCK) == 0)
12126 while ((dap = LIST_FIRST(&pagedep->pd_pendinghd)) != NULL)
12127 free_diradd(dap, NULL);
12128 rollforward:
12129 /*
12130 * Uncommitted directory entries must be restored.
12131 */
12132 for (chgs = 0, i = 0; i < DAHASHSZ; i++) {
12133 for (dap = LIST_FIRST(&pagedep->pd_diraddhd[i]); dap;
12134 dap = nextdap) {
12135 nextdap = LIST_NEXT(dap, da_pdlist);
12136 if (dap->da_state & ATTACHED)
12137 panic("handle_written_filepage: attached");
12138 ep = (struct direct *)
12139 ((char *)bp->b_data + dap->da_offset);
12140 ep->d_ino = dap->da_newinum;
12141 dap->da_state &= ~UNDONE;
12142 dap->da_state |= ATTACHED;
12143 chgs = 1;
12144 /*
12145 * If the inode referenced by the directory has
12146 * been written out, then the dependency can be
12147 * moved to the pending list.
12148 */
12149 if ((dap->da_state & ALLCOMPLETE) == ALLCOMPLETE) {
12150 LIST_REMOVE(dap, da_pdlist);
12151 LIST_INSERT_HEAD(&pagedep->pd_pendinghd, dap,
12152 da_pdlist);
12153 }
12154 }
12155 }
12156 /*
12157 * If there were any rollbacks in the directory, then it must be
12158 * marked dirty so that its will eventually get written back in
12159 * its correct form.
12160 */
12161 if (chgs || (flags & WRITESUCCEEDED) == 0) {
12162 if ((bp->b_flags & B_DELWRI) == 0)
12163 stat_dir_entry++;
12164 bdirty(bp);
12165 return (1);
12166 }
12167 /*
12168 * If we are not waiting for a new directory block to be
12169 * claimed by its inode, then the pagedep will be freed.
12170 * Otherwise it will remain to track any new entries on
12171 * the page in case they are fsync'ed.
12172 */
12173 free_pagedep(pagedep);
12174 return (0);
12175 }
12176
12177 /*
12178 * Writing back in-core inode structures.
12179 *
12180 * The filesystem only accesses an inode's contents when it occupies an
12181 * "in-core" inode structure. These "in-core" structures are separate from
12182 * the page frames used to cache inode blocks. Only the latter are
12183 * transferred to/from the disk. So, when the updated contents of the
12184 * "in-core" inode structure are copied to the corresponding in-memory inode
12185 * block, the dependencies are also transferred. The following procedure is
12186 * called when copying a dirty "in-core" inode to a cached inode block.
12187 */
12188
12189 /*
12190 * Called when an inode is loaded from disk. If the effective link count
12191 * differed from the actual link count when it was last flushed, then we
12192 * need to ensure that the correct effective link count is put back.
12193 */
12194 void
softdep_load_inodeblock(ip)12195 softdep_load_inodeblock(ip)
12196 struct inode *ip; /* the "in_core" copy of the inode */
12197 {
12198 struct inodedep *inodedep;
12199 struct ufsmount *ump;
12200
12201 ump = ITOUMP(ip);
12202 KASSERT(MOUNTEDSOFTDEP(UFSTOVFS(ump)) != 0,
12203 ("softdep_load_inodeblock called on non-softdep filesystem"));
12204 /*
12205 * Check for alternate nlink count.
12206 */
12207 ip->i_effnlink = ip->i_nlink;
12208 ACQUIRE_LOCK(ump);
12209 if (inodedep_lookup(UFSTOVFS(ump), ip->i_number, 0, &inodedep) == 0) {
12210 FREE_LOCK(ump);
12211 return;
12212 }
12213 ip->i_effnlink -= inodedep->id_nlinkdelta;
12214 FREE_LOCK(ump);
12215 }
12216
12217 /*
12218 * This routine is called just before the "in-core" inode
12219 * information is to be copied to the in-memory inode block.
12220 * Recall that an inode block contains several inodes. If
12221 * the force flag is set, then the dependencies will be
12222 * cleared so that the update can always be made. Note that
12223 * the buffer is locked when this routine is called, so we
12224 * will never be in the middle of writing the inode block
12225 * to disk.
12226 */
12227 void
softdep_update_inodeblock(ip,bp,waitfor)12228 softdep_update_inodeblock(ip, bp, waitfor)
12229 struct inode *ip; /* the "in_core" copy of the inode */
12230 struct buf *bp; /* the buffer containing the inode block */
12231 int waitfor; /* nonzero => update must be allowed */
12232 {
12233 struct inodedep *inodedep;
12234 struct inoref *inoref;
12235 struct ufsmount *ump;
12236 struct worklist *wk;
12237 struct mount *mp;
12238 struct buf *ibp;
12239 struct fs *fs;
12240 int error;
12241
12242 ump = ITOUMP(ip);
12243 mp = UFSTOVFS(ump);
12244 KASSERT(MOUNTEDSOFTDEP(mp) != 0,
12245 ("softdep_update_inodeblock called on non-softdep filesystem"));
12246 fs = ump->um_fs;
12247 /*
12248 * Preserve the freelink that is on disk. clear_unlinked_inodedep()
12249 * does not have access to the in-core ip so must write directly into
12250 * the inode block buffer when setting freelink.
12251 */
12252 if (fs->fs_magic == FS_UFS1_MAGIC)
12253 DIP_SET(ip, i_freelink, ((struct ufs1_dinode *)bp->b_data +
12254 ino_to_fsbo(fs, ip->i_number))->di_freelink);
12255 else
12256 DIP_SET(ip, i_freelink, ((struct ufs2_dinode *)bp->b_data +
12257 ino_to_fsbo(fs, ip->i_number))->di_freelink);
12258 /*
12259 * If the effective link count is not equal to the actual link
12260 * count, then we must track the difference in an inodedep while
12261 * the inode is (potentially) tossed out of the cache. Otherwise,
12262 * if there is no existing inodedep, then there are no dependencies
12263 * to track.
12264 */
12265 ACQUIRE_LOCK(ump);
12266 again:
12267 if (inodedep_lookup(mp, ip->i_number, 0, &inodedep) == 0) {
12268 FREE_LOCK(ump);
12269 if (ip->i_effnlink != ip->i_nlink)
12270 panic("softdep_update_inodeblock: bad link count");
12271 return;
12272 }
12273 if (inodedep->id_nlinkdelta != ip->i_nlink - ip->i_effnlink)
12274 panic("softdep_update_inodeblock: bad delta");
12275 /*
12276 * If we're flushing all dependencies we must also move any waiting
12277 * for journal writes onto the bufwait list prior to I/O.
12278 */
12279 if (waitfor) {
12280 TAILQ_FOREACH(inoref, &inodedep->id_inoreflst, if_deps) {
12281 if ((inoref->if_state & (DEPCOMPLETE | GOINGAWAY))
12282 == DEPCOMPLETE) {
12283 jwait(&inoref->if_list, MNT_WAIT);
12284 goto again;
12285 }
12286 }
12287 }
12288 /*
12289 * Changes have been initiated. Anything depending on these
12290 * changes cannot occur until this inode has been written.
12291 */
12292 inodedep->id_state &= ~COMPLETE;
12293 if ((inodedep->id_state & ONWORKLIST) == 0)
12294 WORKLIST_INSERT(&bp->b_dep, &inodedep->id_list);
12295 /*
12296 * Any new dependencies associated with the incore inode must
12297 * now be moved to the list associated with the buffer holding
12298 * the in-memory copy of the inode. Once merged process any
12299 * allocdirects that are completed by the merger.
12300 */
12301 merge_inode_lists(&inodedep->id_newinoupdt, &inodedep->id_inoupdt);
12302 if (!TAILQ_EMPTY(&inodedep->id_inoupdt))
12303 handle_allocdirect_partdone(TAILQ_FIRST(&inodedep->id_inoupdt),
12304 NULL);
12305 merge_inode_lists(&inodedep->id_newextupdt, &inodedep->id_extupdt);
12306 if (!TAILQ_EMPTY(&inodedep->id_extupdt))
12307 handle_allocdirect_partdone(TAILQ_FIRST(&inodedep->id_extupdt),
12308 NULL);
12309 /*
12310 * Now that the inode has been pushed into the buffer, the
12311 * operations dependent on the inode being written to disk
12312 * can be moved to the id_bufwait so that they will be
12313 * processed when the buffer I/O completes.
12314 */
12315 while ((wk = LIST_FIRST(&inodedep->id_inowait)) != NULL) {
12316 WORKLIST_REMOVE(wk);
12317 WORKLIST_INSERT(&inodedep->id_bufwait, wk);
12318 }
12319 /*
12320 * Newly allocated inodes cannot be written until the bitmap
12321 * that allocates them have been written (indicated by
12322 * DEPCOMPLETE being set in id_state). If we are doing a
12323 * forced sync (e.g., an fsync on a file), we force the bitmap
12324 * to be written so that the update can be done.
12325 */
12326 if (waitfor == 0) {
12327 FREE_LOCK(ump);
12328 return;
12329 }
12330 retry:
12331 if ((inodedep->id_state & (DEPCOMPLETE | GOINGAWAY)) != 0) {
12332 FREE_LOCK(ump);
12333 return;
12334 }
12335 ibp = inodedep->id_bmsafemap->sm_buf;
12336 ibp = getdirtybuf(ibp, LOCK_PTR(ump), MNT_WAIT);
12337 if (ibp == NULL) {
12338 /*
12339 * If ibp came back as NULL, the dependency could have been
12340 * freed while we slept. Look it up again, and check to see
12341 * that it has completed.
12342 */
12343 if (inodedep_lookup(mp, ip->i_number, 0, &inodedep) != 0)
12344 goto retry;
12345 FREE_LOCK(ump);
12346 return;
12347 }
12348 FREE_LOCK(ump);
12349 if ((error = bwrite(ibp)) != 0)
12350 softdep_error("softdep_update_inodeblock: bwrite", error);
12351 }
12352
12353 /*
12354 * Merge the a new inode dependency list (such as id_newinoupdt) into an
12355 * old inode dependency list (such as id_inoupdt).
12356 */
12357 static void
merge_inode_lists(newlisthead,oldlisthead)12358 merge_inode_lists(newlisthead, oldlisthead)
12359 struct allocdirectlst *newlisthead;
12360 struct allocdirectlst *oldlisthead;
12361 {
12362 struct allocdirect *listadp, *newadp;
12363
12364 newadp = TAILQ_FIRST(newlisthead);
12365 if (newadp != NULL)
12366 LOCK_OWNED(VFSTOUFS(newadp->ad_block.nb_list.wk_mp));
12367 for (listadp = TAILQ_FIRST(oldlisthead); listadp && newadp;) {
12368 if (listadp->ad_offset < newadp->ad_offset) {
12369 listadp = TAILQ_NEXT(listadp, ad_next);
12370 continue;
12371 }
12372 TAILQ_REMOVE(newlisthead, newadp, ad_next);
12373 TAILQ_INSERT_BEFORE(listadp, newadp, ad_next);
12374 if (listadp->ad_offset == newadp->ad_offset) {
12375 allocdirect_merge(oldlisthead, newadp,
12376 listadp);
12377 listadp = newadp;
12378 }
12379 newadp = TAILQ_FIRST(newlisthead);
12380 }
12381 while ((newadp = TAILQ_FIRST(newlisthead)) != NULL) {
12382 TAILQ_REMOVE(newlisthead, newadp, ad_next);
12383 TAILQ_INSERT_TAIL(oldlisthead, newadp, ad_next);
12384 }
12385 }
12386
12387 /*
12388 * If we are doing an fsync, then we must ensure that any directory
12389 * entries for the inode have been written after the inode gets to disk.
12390 */
12391 int
softdep_fsync(vp)12392 softdep_fsync(vp)
12393 struct vnode *vp; /* the "in_core" copy of the inode */
12394 {
12395 struct inodedep *inodedep;
12396 struct pagedep *pagedep;
12397 struct inoref *inoref;
12398 struct ufsmount *ump;
12399 struct worklist *wk;
12400 struct diradd *dap;
12401 struct mount *mp;
12402 struct vnode *pvp;
12403 struct inode *ip;
12404 struct buf *bp;
12405 struct fs *fs;
12406 struct thread *td = curthread;
12407 int error, flushparent, pagedep_new_block;
12408 ino_t parentino;
12409 ufs_lbn_t lbn;
12410
12411 ip = VTOI(vp);
12412 mp = vp->v_mount;
12413 ump = VFSTOUFS(mp);
12414 fs = ump->um_fs;
12415 if (MOUNTEDSOFTDEP(mp) == 0)
12416 return (0);
12417 ACQUIRE_LOCK(ump);
12418 restart:
12419 if (inodedep_lookup(mp, ip->i_number, 0, &inodedep) == 0) {
12420 FREE_LOCK(ump);
12421 return (0);
12422 }
12423 TAILQ_FOREACH(inoref, &inodedep->id_inoreflst, if_deps) {
12424 if ((inoref->if_state & (DEPCOMPLETE | GOINGAWAY))
12425 == DEPCOMPLETE) {
12426 jwait(&inoref->if_list, MNT_WAIT);
12427 goto restart;
12428 }
12429 }
12430 if (!LIST_EMPTY(&inodedep->id_inowait) ||
12431 !TAILQ_EMPTY(&inodedep->id_extupdt) ||
12432 !TAILQ_EMPTY(&inodedep->id_newextupdt) ||
12433 !TAILQ_EMPTY(&inodedep->id_inoupdt) ||
12434 !TAILQ_EMPTY(&inodedep->id_newinoupdt))
12435 panic("softdep_fsync: pending ops %p", inodedep);
12436 for (error = 0, flushparent = 0; ; ) {
12437 if ((wk = LIST_FIRST(&inodedep->id_pendinghd)) == NULL)
12438 break;
12439 if (wk->wk_type != D_DIRADD)
12440 panic("softdep_fsync: Unexpected type %s",
12441 TYPENAME(wk->wk_type));
12442 dap = WK_DIRADD(wk);
12443 /*
12444 * Flush our parent if this directory entry has a MKDIR_PARENT
12445 * dependency or is contained in a newly allocated block.
12446 */
12447 if (dap->da_state & DIRCHG)
12448 pagedep = dap->da_previous->dm_pagedep;
12449 else
12450 pagedep = dap->da_pagedep;
12451 parentino = pagedep->pd_ino;
12452 lbn = pagedep->pd_lbn;
12453 if ((dap->da_state & (MKDIR_BODY | COMPLETE)) != COMPLETE)
12454 panic("softdep_fsync: dirty");
12455 if ((dap->da_state & MKDIR_PARENT) ||
12456 (pagedep->pd_state & NEWBLOCK))
12457 flushparent = 1;
12458 else
12459 flushparent = 0;
12460 /*
12461 * If we are being fsync'ed as part of vgone'ing this vnode,
12462 * then we will not be able to release and recover the
12463 * vnode below, so we just have to give up on writing its
12464 * directory entry out. It will eventually be written, just
12465 * not now, but then the user was not asking to have it
12466 * written, so we are not breaking any promises.
12467 */
12468 if (vp->v_iflag & VI_DOOMED)
12469 break;
12470 /*
12471 * We prevent deadlock by always fetching inodes from the
12472 * root, moving down the directory tree. Thus, when fetching
12473 * our parent directory, we first try to get the lock. If
12474 * that fails, we must unlock ourselves before requesting
12475 * the lock on our parent. See the comment in ufs_lookup
12476 * for details on possible races.
12477 */
12478 FREE_LOCK(ump);
12479 if (ffs_vgetf(mp, parentino, LK_NOWAIT | LK_EXCLUSIVE, &pvp,
12480 FFSV_FORCEINSMQ)) {
12481 /*
12482 * Unmount cannot proceed after unlock because
12483 * caller must have called vn_start_write().
12484 */
12485 VOP_UNLOCK(vp, 0);
12486 error = ffs_vgetf(mp, parentino, LK_EXCLUSIVE,
12487 &pvp, FFSV_FORCEINSMQ);
12488 vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
12489 if (vp->v_iflag & VI_DOOMED) {
12490 if (error == 0)
12491 vput(pvp);
12492 error = ENOENT;
12493 }
12494 if (error != 0)
12495 return (error);
12496 }
12497 /*
12498 * All MKDIR_PARENT dependencies and all the NEWBLOCK pagedeps
12499 * that are contained in direct blocks will be resolved by
12500 * doing a ffs_update. Pagedeps contained in indirect blocks
12501 * may require a complete sync'ing of the directory. So, we
12502 * try the cheap and fast ffs_update first, and if that fails,
12503 * then we do the slower ffs_syncvnode of the directory.
12504 */
12505 if (flushparent) {
12506 int locked;
12507
12508 if ((error = ffs_update(pvp, 1)) != 0) {
12509 vput(pvp);
12510 return (error);
12511 }
12512 ACQUIRE_LOCK(ump);
12513 locked = 1;
12514 if (inodedep_lookup(mp, ip->i_number, 0, &inodedep) != 0) {
12515 if ((wk = LIST_FIRST(&inodedep->id_pendinghd)) != NULL) {
12516 if (wk->wk_type != D_DIRADD)
12517 panic("softdep_fsync: Unexpected type %s",
12518 TYPENAME(wk->wk_type));
12519 dap = WK_DIRADD(wk);
12520 if (dap->da_state & DIRCHG)
12521 pagedep = dap->da_previous->dm_pagedep;
12522 else
12523 pagedep = dap->da_pagedep;
12524 pagedep_new_block = pagedep->pd_state & NEWBLOCK;
12525 FREE_LOCK(ump);
12526 locked = 0;
12527 if (pagedep_new_block && (error =
12528 ffs_syncvnode(pvp, MNT_WAIT, 0))) {
12529 vput(pvp);
12530 return (error);
12531 }
12532 }
12533 }
12534 if (locked)
12535 FREE_LOCK(ump);
12536 }
12537 /*
12538 * Flush directory page containing the inode's name.
12539 */
12540 error = bread(pvp, lbn, blksize(fs, VTOI(pvp), lbn), td->td_ucred,
12541 &bp);
12542 if (error == 0)
12543 error = bwrite(bp);
12544 else
12545 brelse(bp);
12546 vput(pvp);
12547 if (error != 0)
12548 return (error);
12549 ACQUIRE_LOCK(ump);
12550 if (inodedep_lookup(mp, ip->i_number, 0, &inodedep) == 0)
12551 break;
12552 }
12553 FREE_LOCK(ump);
12554 return (0);
12555 }
12556
12557 /*
12558 * Flush all the dirty bitmaps associated with the block device
12559 * before flushing the rest of the dirty blocks so as to reduce
12560 * the number of dependencies that will have to be rolled back.
12561 *
12562 * XXX Unused?
12563 */
12564 void
softdep_fsync_mountdev(vp)12565 softdep_fsync_mountdev(vp)
12566 struct vnode *vp;
12567 {
12568 struct buf *bp, *nbp;
12569 struct worklist *wk;
12570 struct bufobj *bo;
12571
12572 if (!vn_isdisk(vp, NULL))
12573 panic("softdep_fsync_mountdev: vnode not a disk");
12574 bo = &vp->v_bufobj;
12575 restart:
12576 BO_LOCK(bo);
12577 TAILQ_FOREACH_SAFE(bp, &bo->bo_dirty.bv_hd, b_bobufs, nbp) {
12578 /*
12579 * If it is already scheduled, skip to the next buffer.
12580 */
12581 if (BUF_LOCK(bp, LK_EXCLUSIVE | LK_NOWAIT, NULL))
12582 continue;
12583
12584 if ((bp->b_flags & B_DELWRI) == 0)
12585 panic("softdep_fsync_mountdev: not dirty");
12586 /*
12587 * We are only interested in bitmaps with outstanding
12588 * dependencies.
12589 */
12590 if ((wk = LIST_FIRST(&bp->b_dep)) == NULL ||
12591 wk->wk_type != D_BMSAFEMAP ||
12592 (bp->b_vflags & BV_BKGRDINPROG)) {
12593 BUF_UNLOCK(bp);
12594 continue;
12595 }
12596 BO_UNLOCK(bo);
12597 bremfree(bp);
12598 (void) bawrite(bp);
12599 goto restart;
12600 }
12601 drain_output(vp);
12602 BO_UNLOCK(bo);
12603 }
12604
12605 /*
12606 * Sync all cylinder groups that were dirty at the time this function is
12607 * called. Newly dirtied cgs will be inserted before the sentinel. This
12608 * is used to flush freedep activity that may be holding up writes to a
12609 * indirect block.
12610 */
12611 static int
sync_cgs(mp,waitfor)12612 sync_cgs(mp, waitfor)
12613 struct mount *mp;
12614 int waitfor;
12615 {
12616 struct bmsafemap *bmsafemap;
12617 struct bmsafemap *sentinel;
12618 struct ufsmount *ump;
12619 struct buf *bp;
12620 int error;
12621
12622 sentinel = malloc(sizeof(*sentinel), M_BMSAFEMAP, M_ZERO | M_WAITOK);
12623 sentinel->sm_cg = -1;
12624 ump = VFSTOUFS(mp);
12625 error = 0;
12626 ACQUIRE_LOCK(ump);
12627 LIST_INSERT_HEAD(&ump->softdep_dirtycg, sentinel, sm_next);
12628 for (bmsafemap = LIST_NEXT(sentinel, sm_next); bmsafemap != NULL;
12629 bmsafemap = LIST_NEXT(sentinel, sm_next)) {
12630 /* Skip sentinels and cgs with no work to release. */
12631 if (bmsafemap->sm_cg == -1 ||
12632 (LIST_EMPTY(&bmsafemap->sm_freehd) &&
12633 LIST_EMPTY(&bmsafemap->sm_freewr))) {
12634 LIST_REMOVE(sentinel, sm_next);
12635 LIST_INSERT_AFTER(bmsafemap, sentinel, sm_next);
12636 continue;
12637 }
12638 /*
12639 * If we don't get the lock and we're waiting try again, if
12640 * not move on to the next buf and try to sync it.
12641 */
12642 bp = getdirtybuf(bmsafemap->sm_buf, LOCK_PTR(ump), waitfor);
12643 if (bp == NULL && waitfor == MNT_WAIT)
12644 continue;
12645 LIST_REMOVE(sentinel, sm_next);
12646 LIST_INSERT_AFTER(bmsafemap, sentinel, sm_next);
12647 if (bp == NULL)
12648 continue;
12649 FREE_LOCK(ump);
12650 if (waitfor == MNT_NOWAIT)
12651 bawrite(bp);
12652 else
12653 error = bwrite(bp);
12654 ACQUIRE_LOCK(ump);
12655 if (error)
12656 break;
12657 }
12658 LIST_REMOVE(sentinel, sm_next);
12659 FREE_LOCK(ump);
12660 free(sentinel, M_BMSAFEMAP);
12661 return (error);
12662 }
12663
12664 /*
12665 * This routine is called when we are trying to synchronously flush a
12666 * file. This routine must eliminate any filesystem metadata dependencies
12667 * so that the syncing routine can succeed.
12668 */
12669 int
softdep_sync_metadata(struct vnode * vp)12670 softdep_sync_metadata(struct vnode *vp)
12671 {
12672 struct inode *ip;
12673 int error;
12674
12675 ip = VTOI(vp);
12676 KASSERT(MOUNTEDSOFTDEP(vp->v_mount) != 0,
12677 ("softdep_sync_metadata called on non-softdep filesystem"));
12678 /*
12679 * Ensure that any direct block dependencies have been cleared,
12680 * truncations are started, and inode references are journaled.
12681 */
12682 ACQUIRE_LOCK(VFSTOUFS(vp->v_mount));
12683 /*
12684 * Write all journal records to prevent rollbacks on devvp.
12685 */
12686 if (vp->v_type == VCHR)
12687 softdep_flushjournal(vp->v_mount);
12688 error = flush_inodedep_deps(vp, vp->v_mount, ip->i_number);
12689 /*
12690 * Ensure that all truncates are written so we won't find deps on
12691 * indirect blocks.
12692 */
12693 process_truncates(vp);
12694 FREE_LOCK(VFSTOUFS(vp->v_mount));
12695
12696 return (error);
12697 }
12698
12699 /*
12700 * This routine is called when we are attempting to sync a buf with
12701 * dependencies. If waitfor is MNT_NOWAIT it attempts to schedule any
12702 * other IO it can but returns EBUSY if the buffer is not yet able to
12703 * be written. Dependencies which will not cause rollbacks will always
12704 * return 0.
12705 */
12706 int
softdep_sync_buf(struct vnode * vp,struct buf * bp,int waitfor)12707 softdep_sync_buf(struct vnode *vp, struct buf *bp, int waitfor)
12708 {
12709 struct indirdep *indirdep;
12710 struct pagedep *pagedep;
12711 struct allocindir *aip;
12712 struct newblk *newblk;
12713 struct ufsmount *ump;
12714 struct buf *nbp;
12715 struct worklist *wk;
12716 int i, error;
12717
12718 KASSERT(MOUNTEDSOFTDEP(vp->v_mount) != 0,
12719 ("softdep_sync_buf called on non-softdep filesystem"));
12720 /*
12721 * For VCHR we just don't want to force flush any dependencies that
12722 * will cause rollbacks.
12723 */
12724 if (vp->v_type == VCHR) {
12725 if (waitfor == MNT_NOWAIT && softdep_count_dependencies(bp, 0))
12726 return (EBUSY);
12727 return (0);
12728 }
12729 ump = VFSTOUFS(vp->v_mount);
12730 ACQUIRE_LOCK(ump);
12731 /*
12732 * As we hold the buffer locked, none of its dependencies
12733 * will disappear.
12734 */
12735 error = 0;
12736 top:
12737 LIST_FOREACH(wk, &bp->b_dep, wk_list) {
12738 switch (wk->wk_type) {
12739
12740 case D_ALLOCDIRECT:
12741 case D_ALLOCINDIR:
12742 newblk = WK_NEWBLK(wk);
12743 if (newblk->nb_jnewblk != NULL) {
12744 if (waitfor == MNT_NOWAIT) {
12745 error = EBUSY;
12746 goto out_unlock;
12747 }
12748 jwait(&newblk->nb_jnewblk->jn_list, waitfor);
12749 goto top;
12750 }
12751 if (newblk->nb_state & DEPCOMPLETE ||
12752 waitfor == MNT_NOWAIT)
12753 continue;
12754 nbp = newblk->nb_bmsafemap->sm_buf;
12755 nbp = getdirtybuf(nbp, LOCK_PTR(ump), waitfor);
12756 if (nbp == NULL)
12757 goto top;
12758 FREE_LOCK(ump);
12759 if ((error = bwrite(nbp)) != 0)
12760 goto out;
12761 ACQUIRE_LOCK(ump);
12762 continue;
12763
12764 case D_INDIRDEP:
12765 indirdep = WK_INDIRDEP(wk);
12766 if (waitfor == MNT_NOWAIT) {
12767 if (!TAILQ_EMPTY(&indirdep->ir_trunc) ||
12768 !LIST_EMPTY(&indirdep->ir_deplisthd)) {
12769 error = EBUSY;
12770 goto out_unlock;
12771 }
12772 }
12773 if (!TAILQ_EMPTY(&indirdep->ir_trunc))
12774 panic("softdep_sync_buf: truncation pending.");
12775 restart:
12776 LIST_FOREACH(aip, &indirdep->ir_deplisthd, ai_next) {
12777 newblk = (struct newblk *)aip;
12778 if (newblk->nb_jnewblk != NULL) {
12779 jwait(&newblk->nb_jnewblk->jn_list,
12780 waitfor);
12781 goto restart;
12782 }
12783 if (newblk->nb_state & DEPCOMPLETE)
12784 continue;
12785 nbp = newblk->nb_bmsafemap->sm_buf;
12786 nbp = getdirtybuf(nbp, LOCK_PTR(ump), waitfor);
12787 if (nbp == NULL)
12788 goto restart;
12789 FREE_LOCK(ump);
12790 if ((error = bwrite(nbp)) != 0)
12791 goto out;
12792 ACQUIRE_LOCK(ump);
12793 goto restart;
12794 }
12795 continue;
12796
12797 case D_PAGEDEP:
12798 /*
12799 * Only flush directory entries in synchronous passes.
12800 */
12801 if (waitfor != MNT_WAIT) {
12802 error = EBUSY;
12803 goto out_unlock;
12804 }
12805 /*
12806 * While syncing snapshots, we must allow recursive
12807 * lookups.
12808 */
12809 BUF_AREC(bp);
12810 /*
12811 * We are trying to sync a directory that may
12812 * have dependencies on both its own metadata
12813 * and/or dependencies on the inodes of any
12814 * recently allocated files. We walk its diradd
12815 * lists pushing out the associated inode.
12816 */
12817 pagedep = WK_PAGEDEP(wk);
12818 for (i = 0; i < DAHASHSZ; i++) {
12819 if (LIST_FIRST(&pagedep->pd_diraddhd[i]) == 0)
12820 continue;
12821 if ((error = flush_pagedep_deps(vp, wk->wk_mp,
12822 &pagedep->pd_diraddhd[i]))) {
12823 BUF_NOREC(bp);
12824 goto out_unlock;
12825 }
12826 }
12827 BUF_NOREC(bp);
12828 continue;
12829
12830 case D_FREEWORK:
12831 case D_FREEDEP:
12832 case D_JSEGDEP:
12833 case D_JNEWBLK:
12834 continue;
12835
12836 default:
12837 panic("softdep_sync_buf: Unknown type %s",
12838 TYPENAME(wk->wk_type));
12839 /* NOTREACHED */
12840 }
12841 }
12842 out_unlock:
12843 FREE_LOCK(ump);
12844 out:
12845 return (error);
12846 }
12847
12848 /*
12849 * Flush the dependencies associated with an inodedep.
12850 */
12851 static int
flush_inodedep_deps(vp,mp,ino)12852 flush_inodedep_deps(vp, mp, ino)
12853 struct vnode *vp;
12854 struct mount *mp;
12855 ino_t ino;
12856 {
12857 struct inodedep *inodedep;
12858 struct inoref *inoref;
12859 struct ufsmount *ump;
12860 int error, waitfor;
12861
12862 /*
12863 * This work is done in two passes. The first pass grabs most
12864 * of the buffers and begins asynchronously writing them. The
12865 * only way to wait for these asynchronous writes is to sleep
12866 * on the filesystem vnode which may stay busy for a long time
12867 * if the filesystem is active. So, instead, we make a second
12868 * pass over the dependencies blocking on each write. In the
12869 * usual case we will be blocking against a write that we
12870 * initiated, so when it is done the dependency will have been
12871 * resolved. Thus the second pass is expected to end quickly.
12872 * We give a brief window at the top of the loop to allow
12873 * any pending I/O to complete.
12874 */
12875 ump = VFSTOUFS(mp);
12876 LOCK_OWNED(ump);
12877 for (error = 0, waitfor = MNT_NOWAIT; ; ) {
12878 if (error)
12879 return (error);
12880 FREE_LOCK(ump);
12881 ACQUIRE_LOCK(ump);
12882 restart:
12883 if (inodedep_lookup(mp, ino, 0, &inodedep) == 0)
12884 return (0);
12885 TAILQ_FOREACH(inoref, &inodedep->id_inoreflst, if_deps) {
12886 if ((inoref->if_state & (DEPCOMPLETE | GOINGAWAY))
12887 == DEPCOMPLETE) {
12888 jwait(&inoref->if_list, MNT_WAIT);
12889 goto restart;
12890 }
12891 }
12892 if (flush_deplist(&inodedep->id_inoupdt, waitfor, &error) ||
12893 flush_deplist(&inodedep->id_newinoupdt, waitfor, &error) ||
12894 flush_deplist(&inodedep->id_extupdt, waitfor, &error) ||
12895 flush_deplist(&inodedep->id_newextupdt, waitfor, &error))
12896 continue;
12897 /*
12898 * If pass2, we are done, otherwise do pass 2.
12899 */
12900 if (waitfor == MNT_WAIT)
12901 break;
12902 waitfor = MNT_WAIT;
12903 }
12904 /*
12905 * Try freeing inodedep in case all dependencies have been removed.
12906 */
12907 if (inodedep_lookup(mp, ino, 0, &inodedep) != 0)
12908 (void) free_inodedep(inodedep);
12909 return (0);
12910 }
12911
12912 /*
12913 * Flush an inode dependency list.
12914 */
12915 static int
flush_deplist(listhead,waitfor,errorp)12916 flush_deplist(listhead, waitfor, errorp)
12917 struct allocdirectlst *listhead;
12918 int waitfor;
12919 int *errorp;
12920 {
12921 struct allocdirect *adp;
12922 struct newblk *newblk;
12923 struct ufsmount *ump;
12924 struct buf *bp;
12925
12926 if ((adp = TAILQ_FIRST(listhead)) == NULL)
12927 return (0);
12928 ump = VFSTOUFS(adp->ad_list.wk_mp);
12929 LOCK_OWNED(ump);
12930 TAILQ_FOREACH(adp, listhead, ad_next) {
12931 newblk = (struct newblk *)adp;
12932 if (newblk->nb_jnewblk != NULL) {
12933 jwait(&newblk->nb_jnewblk->jn_list, MNT_WAIT);
12934 return (1);
12935 }
12936 if (newblk->nb_state & DEPCOMPLETE)
12937 continue;
12938 bp = newblk->nb_bmsafemap->sm_buf;
12939 bp = getdirtybuf(bp, LOCK_PTR(ump), waitfor);
12940 if (bp == NULL) {
12941 if (waitfor == MNT_NOWAIT)
12942 continue;
12943 return (1);
12944 }
12945 FREE_LOCK(ump);
12946 if (waitfor == MNT_NOWAIT)
12947 bawrite(bp);
12948 else
12949 *errorp = bwrite(bp);
12950 ACQUIRE_LOCK(ump);
12951 return (1);
12952 }
12953 return (0);
12954 }
12955
12956 /*
12957 * Flush dependencies associated with an allocdirect block.
12958 */
12959 static int
flush_newblk_dep(vp,mp,lbn)12960 flush_newblk_dep(vp, mp, lbn)
12961 struct vnode *vp;
12962 struct mount *mp;
12963 ufs_lbn_t lbn;
12964 {
12965 struct newblk *newblk;
12966 struct ufsmount *ump;
12967 struct bufobj *bo;
12968 struct inode *ip;
12969 struct buf *bp;
12970 ufs2_daddr_t blkno;
12971 int error;
12972
12973 error = 0;
12974 bo = &vp->v_bufobj;
12975 ip = VTOI(vp);
12976 blkno = DIP(ip, i_db[lbn]);
12977 if (blkno == 0)
12978 panic("flush_newblk_dep: Missing block");
12979 ump = VFSTOUFS(mp);
12980 ACQUIRE_LOCK(ump);
12981 /*
12982 * Loop until all dependencies related to this block are satisfied.
12983 * We must be careful to restart after each sleep in case a write
12984 * completes some part of this process for us.
12985 */
12986 for (;;) {
12987 if (newblk_lookup(mp, blkno, 0, &newblk) == 0) {
12988 FREE_LOCK(ump);
12989 break;
12990 }
12991 if (newblk->nb_list.wk_type != D_ALLOCDIRECT)
12992 panic("flush_newblk_dep: Bad newblk %p", newblk);
12993 /*
12994 * Flush the journal.
12995 */
12996 if (newblk->nb_jnewblk != NULL) {
12997 jwait(&newblk->nb_jnewblk->jn_list, MNT_WAIT);
12998 continue;
12999 }
13000 /*
13001 * Write the bitmap dependency.
13002 */
13003 if ((newblk->nb_state & DEPCOMPLETE) == 0) {
13004 bp = newblk->nb_bmsafemap->sm_buf;
13005 bp = getdirtybuf(bp, LOCK_PTR(ump), MNT_WAIT);
13006 if (bp == NULL)
13007 continue;
13008 FREE_LOCK(ump);
13009 error = bwrite(bp);
13010 if (error)
13011 break;
13012 ACQUIRE_LOCK(ump);
13013 continue;
13014 }
13015 /*
13016 * Write the buffer.
13017 */
13018 FREE_LOCK(ump);
13019 BO_LOCK(bo);
13020 bp = gbincore(bo, lbn);
13021 if (bp != NULL) {
13022 error = BUF_LOCK(bp, LK_EXCLUSIVE | LK_SLEEPFAIL |
13023 LK_INTERLOCK, BO_LOCKPTR(bo));
13024 if (error == ENOLCK) {
13025 ACQUIRE_LOCK(ump);
13026 error = 0;
13027 continue; /* Slept, retry */
13028 }
13029 if (error != 0)
13030 break; /* Failed */
13031 if (bp->b_flags & B_DELWRI) {
13032 bremfree(bp);
13033 error = bwrite(bp);
13034 if (error)
13035 break;
13036 } else
13037 BUF_UNLOCK(bp);
13038 } else
13039 BO_UNLOCK(bo);
13040 /*
13041 * We have to wait for the direct pointers to
13042 * point at the newdirblk before the dependency
13043 * will go away.
13044 */
13045 error = ffs_update(vp, 1);
13046 if (error)
13047 break;
13048 ACQUIRE_LOCK(ump);
13049 }
13050 return (error);
13051 }
13052
13053 /*
13054 * Eliminate a pagedep dependency by flushing out all its diradd dependencies.
13055 */
13056 static int
flush_pagedep_deps(pvp,mp,diraddhdp)13057 flush_pagedep_deps(pvp, mp, diraddhdp)
13058 struct vnode *pvp;
13059 struct mount *mp;
13060 struct diraddhd *diraddhdp;
13061 {
13062 struct inodedep *inodedep;
13063 struct inoref *inoref;
13064 struct ufsmount *ump;
13065 struct diradd *dap;
13066 struct vnode *vp;
13067 int error = 0;
13068 struct buf *bp;
13069 ino_t inum;
13070 struct diraddhd unfinished;
13071
13072 LIST_INIT(&unfinished);
13073 ump = VFSTOUFS(mp);
13074 LOCK_OWNED(ump);
13075 restart:
13076 while ((dap = LIST_FIRST(diraddhdp)) != NULL) {
13077 /*
13078 * Flush ourselves if this directory entry
13079 * has a MKDIR_PARENT dependency.
13080 */
13081 if (dap->da_state & MKDIR_PARENT) {
13082 FREE_LOCK(ump);
13083 if ((error = ffs_update(pvp, 1)) != 0)
13084 break;
13085 ACQUIRE_LOCK(ump);
13086 /*
13087 * If that cleared dependencies, go on to next.
13088 */
13089 if (dap != LIST_FIRST(diraddhdp))
13090 continue;
13091 /*
13092 * All MKDIR_PARENT dependencies and all the
13093 * NEWBLOCK pagedeps that are contained in direct
13094 * blocks were resolved by doing above ffs_update.
13095 * Pagedeps contained in indirect blocks may
13096 * require a complete sync'ing of the directory.
13097 * We are in the midst of doing a complete sync,
13098 * so if they are not resolved in this pass we
13099 * defer them for now as they will be sync'ed by
13100 * our caller shortly.
13101 */
13102 LIST_REMOVE(dap, da_pdlist);
13103 LIST_INSERT_HEAD(&unfinished, dap, da_pdlist);
13104 continue;
13105 }
13106 /*
13107 * A newly allocated directory must have its "." and
13108 * ".." entries written out before its name can be
13109 * committed in its parent.
13110 */
13111 inum = dap->da_newinum;
13112 if (inodedep_lookup(UFSTOVFS(ump), inum, 0, &inodedep) == 0)
13113 panic("flush_pagedep_deps: lost inode1");
13114 /*
13115 * Wait for any pending journal adds to complete so we don't
13116 * cause rollbacks while syncing.
13117 */
13118 TAILQ_FOREACH(inoref, &inodedep->id_inoreflst, if_deps) {
13119 if ((inoref->if_state & (DEPCOMPLETE | GOINGAWAY))
13120 == DEPCOMPLETE) {
13121 jwait(&inoref->if_list, MNT_WAIT);
13122 goto restart;
13123 }
13124 }
13125 if (dap->da_state & MKDIR_BODY) {
13126 FREE_LOCK(ump);
13127 if ((error = ffs_vgetf(mp, inum, LK_EXCLUSIVE, &vp,
13128 FFSV_FORCEINSMQ)))
13129 break;
13130 error = flush_newblk_dep(vp, mp, 0);
13131 /*
13132 * If we still have the dependency we might need to
13133 * update the vnode to sync the new link count to
13134 * disk.
13135 */
13136 if (error == 0 && dap == LIST_FIRST(diraddhdp))
13137 error = ffs_update(vp, 1);
13138 vput(vp);
13139 if (error != 0)
13140 break;
13141 ACQUIRE_LOCK(ump);
13142 /*
13143 * If that cleared dependencies, go on to next.
13144 */
13145 if (dap != LIST_FIRST(diraddhdp))
13146 continue;
13147 if (dap->da_state & MKDIR_BODY) {
13148 inodedep_lookup(UFSTOVFS(ump), inum, 0,
13149 &inodedep);
13150 panic("flush_pagedep_deps: MKDIR_BODY "
13151 "inodedep %p dap %p vp %p",
13152 inodedep, dap, vp);
13153 }
13154 }
13155 /*
13156 * Flush the inode on which the directory entry depends.
13157 * Having accounted for MKDIR_PARENT and MKDIR_BODY above,
13158 * the only remaining dependency is that the updated inode
13159 * count must get pushed to disk. The inode has already
13160 * been pushed into its inode buffer (via VOP_UPDATE) at
13161 * the time of the reference count change. So we need only
13162 * locate that buffer, ensure that there will be no rollback
13163 * caused by a bitmap dependency, then write the inode buffer.
13164 */
13165 retry:
13166 if (inodedep_lookup(UFSTOVFS(ump), inum, 0, &inodedep) == 0)
13167 panic("flush_pagedep_deps: lost inode");
13168 /*
13169 * If the inode still has bitmap dependencies,
13170 * push them to disk.
13171 */
13172 if ((inodedep->id_state & (DEPCOMPLETE | GOINGAWAY)) == 0) {
13173 bp = inodedep->id_bmsafemap->sm_buf;
13174 bp = getdirtybuf(bp, LOCK_PTR(ump), MNT_WAIT);
13175 if (bp == NULL)
13176 goto retry;
13177 FREE_LOCK(ump);
13178 if ((error = bwrite(bp)) != 0)
13179 break;
13180 ACQUIRE_LOCK(ump);
13181 if (dap != LIST_FIRST(diraddhdp))
13182 continue;
13183 }
13184 /*
13185 * If the inode is still sitting in a buffer waiting
13186 * to be written or waiting for the link count to be
13187 * adjusted update it here to flush it to disk.
13188 */
13189 if (dap == LIST_FIRST(diraddhdp)) {
13190 FREE_LOCK(ump);
13191 if ((error = ffs_vgetf(mp, inum, LK_EXCLUSIVE, &vp,
13192 FFSV_FORCEINSMQ)))
13193 break;
13194 error = ffs_update(vp, 1);
13195 vput(vp);
13196 if (error)
13197 break;
13198 ACQUIRE_LOCK(ump);
13199 }
13200 /*
13201 * If we have failed to get rid of all the dependencies
13202 * then something is seriously wrong.
13203 */
13204 if (dap == LIST_FIRST(diraddhdp)) {
13205 inodedep_lookup(UFSTOVFS(ump), inum, 0, &inodedep);
13206 panic("flush_pagedep_deps: failed to flush "
13207 "inodedep %p ino %ju dap %p",
13208 inodedep, (uintmax_t)inum, dap);
13209 }
13210 }
13211 if (error)
13212 ACQUIRE_LOCK(ump);
13213 while ((dap = LIST_FIRST(&unfinished)) != NULL) {
13214 LIST_REMOVE(dap, da_pdlist);
13215 LIST_INSERT_HEAD(diraddhdp, dap, da_pdlist);
13216 }
13217 return (error);
13218 }
13219
13220 /*
13221 * A large burst of file addition or deletion activity can drive the
13222 * memory load excessively high. First attempt to slow things down
13223 * using the techniques below. If that fails, this routine requests
13224 * the offending operations to fall back to running synchronously
13225 * until the memory load returns to a reasonable level.
13226 */
13227 int
softdep_slowdown(vp)13228 softdep_slowdown(vp)
13229 struct vnode *vp;
13230 {
13231 struct ufsmount *ump;
13232 int jlow;
13233 int max_softdeps_hard;
13234
13235 KASSERT(MOUNTEDSOFTDEP(vp->v_mount) != 0,
13236 ("softdep_slowdown called on non-softdep filesystem"));
13237 ump = VFSTOUFS(vp->v_mount);
13238 ACQUIRE_LOCK(ump);
13239 jlow = 0;
13240 /*
13241 * Check for journal space if needed.
13242 */
13243 if (DOINGSUJ(vp)) {
13244 if (journal_space(ump, 0) == 0)
13245 jlow = 1;
13246 }
13247 /*
13248 * If the system is under its limits and our filesystem is
13249 * not responsible for more than our share of the usage and
13250 * we are not low on journal space, then no need to slow down.
13251 */
13252 max_softdeps_hard = max_softdeps * 11 / 10;
13253 if (dep_current[D_DIRREM] < max_softdeps_hard / 2 &&
13254 dep_current[D_INODEDEP] < max_softdeps_hard &&
13255 dep_current[D_INDIRDEP] < max_softdeps_hard / 1000 &&
13256 dep_current[D_FREEBLKS] < max_softdeps_hard && jlow == 0 &&
13257 ump->softdep_curdeps[D_DIRREM] <
13258 (max_softdeps_hard / 2) / stat_flush_threads &&
13259 ump->softdep_curdeps[D_INODEDEP] <
13260 max_softdeps_hard / stat_flush_threads &&
13261 ump->softdep_curdeps[D_INDIRDEP] <
13262 (max_softdeps_hard / 1000) / stat_flush_threads &&
13263 ump->softdep_curdeps[D_FREEBLKS] <
13264 max_softdeps_hard / stat_flush_threads) {
13265 FREE_LOCK(ump);
13266 return (0);
13267 }
13268 /*
13269 * If the journal is low or our filesystem is over its limit
13270 * then speedup the cleanup.
13271 */
13272 if (ump->softdep_curdeps[D_INDIRDEP] <
13273 (max_softdeps_hard / 1000) / stat_flush_threads || jlow)
13274 softdep_speedup(ump);
13275 stat_sync_limit_hit += 1;
13276 FREE_LOCK(ump);
13277 /*
13278 * We only slow down the rate at which new dependencies are
13279 * generated if we are not using journaling. With journaling,
13280 * the cleanup should always be sufficient to keep things
13281 * under control.
13282 */
13283 if (DOINGSUJ(vp))
13284 return (0);
13285 return (1);
13286 }
13287
13288 /*
13289 * Called by the allocation routines when they are about to fail
13290 * in the hope that we can free up the requested resource (inodes
13291 * or disk space).
13292 *
13293 * First check to see if the work list has anything on it. If it has,
13294 * clean up entries until we successfully free the requested resource.
13295 * Because this process holds inodes locked, we cannot handle any remove
13296 * requests that might block on a locked inode as that could lead to
13297 * deadlock. If the worklist yields none of the requested resource,
13298 * start syncing out vnodes to free up the needed space.
13299 */
13300 int
softdep_request_cleanup(fs,vp,cred,resource)13301 softdep_request_cleanup(fs, vp, cred, resource)
13302 struct fs *fs;
13303 struct vnode *vp;
13304 struct ucred *cred;
13305 int resource;
13306 {
13307 struct ufsmount *ump;
13308 struct mount *mp;
13309 long starttime;
13310 ufs2_daddr_t needed;
13311 int error, failed_vnode;
13312
13313 /*
13314 * If we are being called because of a process doing a
13315 * copy-on-write, then it is not safe to process any
13316 * worklist items as we will recurse into the copyonwrite
13317 * routine. This will result in an incoherent snapshot.
13318 * If the vnode that we hold is a snapshot, we must avoid
13319 * handling other resources that could cause deadlock.
13320 */
13321 if ((curthread->td_pflags & TDP_COWINPROGRESS) || IS_SNAPSHOT(VTOI(vp)))
13322 return (0);
13323
13324 if (resource == FLUSH_BLOCKS_WAIT)
13325 stat_cleanup_blkrequests += 1;
13326 else
13327 stat_cleanup_inorequests += 1;
13328
13329 mp = vp->v_mount;
13330 ump = VFSTOUFS(mp);
13331 mtx_assert(UFS_MTX(ump), MA_OWNED);
13332 UFS_UNLOCK(ump);
13333 error = ffs_update(vp, 1);
13334 if (error != 0 || MOUNTEDSOFTDEP(mp) == 0) {
13335 UFS_LOCK(ump);
13336 return (0);
13337 }
13338 /*
13339 * If we are in need of resources, start by cleaning up
13340 * any block removals associated with our inode.
13341 */
13342 ACQUIRE_LOCK(ump);
13343 process_removes(vp);
13344 process_truncates(vp);
13345 FREE_LOCK(ump);
13346 /*
13347 * Now clean up at least as many resources as we will need.
13348 *
13349 * When requested to clean up inodes, the number that are needed
13350 * is set by the number of simultaneous writers (mnt_writeopcount)
13351 * plus a bit of slop (2) in case some more writers show up while
13352 * we are cleaning.
13353 *
13354 * When requested to free up space, the amount of space that
13355 * we need is enough blocks to allocate a full-sized segment
13356 * (fs_contigsumsize). The number of such segments that will
13357 * be needed is set by the number of simultaneous writers
13358 * (mnt_writeopcount) plus a bit of slop (2) in case some more
13359 * writers show up while we are cleaning.
13360 *
13361 * Additionally, if we are unpriviledged and allocating space,
13362 * we need to ensure that we clean up enough blocks to get the
13363 * needed number of blocks over the threshold of the minimum
13364 * number of blocks required to be kept free by the filesystem
13365 * (fs_minfree).
13366 */
13367 if (resource == FLUSH_INODES_WAIT) {
13368 needed = vp->v_mount->mnt_writeopcount + 2;
13369 } else if (resource == FLUSH_BLOCKS_WAIT) {
13370 needed = (vp->v_mount->mnt_writeopcount + 2) *
13371 fs->fs_contigsumsize;
13372 if (priv_check_cred(cred, PRIV_VFS_BLOCKRESERVE, 0))
13373 needed += fragstoblks(fs,
13374 roundup((fs->fs_dsize * fs->fs_minfree / 100) -
13375 fs->fs_cstotal.cs_nffree, fs->fs_frag));
13376 } else {
13377 UFS_LOCK(ump);
13378 printf("softdep_request_cleanup: Unknown resource type %d\n",
13379 resource);
13380 return (0);
13381 }
13382 starttime = time_second;
13383 retry:
13384 if ((resource == FLUSH_BLOCKS_WAIT && ump->softdep_on_worklist > 0 &&
13385 fs->fs_cstotal.cs_nbfree <= needed) ||
13386 (resource == FLUSH_INODES_WAIT && fs->fs_pendinginodes > 0 &&
13387 fs->fs_cstotal.cs_nifree <= needed)) {
13388 ACQUIRE_LOCK(ump);
13389 if (ump->softdep_on_worklist > 0 &&
13390 process_worklist_item(UFSTOVFS(ump),
13391 ump->softdep_on_worklist, LK_NOWAIT) != 0)
13392 stat_worklist_push += 1;
13393 FREE_LOCK(ump);
13394 }
13395 /*
13396 * If we still need resources and there are no more worklist
13397 * entries to process to obtain them, we have to start flushing
13398 * the dirty vnodes to force the release of additional requests
13399 * to the worklist that we can then process to reap addition
13400 * resources. We walk the vnodes associated with the mount point
13401 * until we get the needed worklist requests that we can reap.
13402 *
13403 * If there are several threads all needing to clean the same
13404 * mount point, only one is allowed to walk the mount list.
13405 * When several threads all try to walk the same mount list,
13406 * they end up competing with each other and often end up in
13407 * livelock. This approach ensures that forward progress is
13408 * made at the cost of occational ENOSPC errors being returned
13409 * that might otherwise have been avoided.
13410 */
13411 error = 1;
13412 if ((resource == FLUSH_BLOCKS_WAIT &&
13413 fs->fs_cstotal.cs_nbfree <= needed) ||
13414 (resource == FLUSH_INODES_WAIT && fs->fs_pendinginodes > 0 &&
13415 fs->fs_cstotal.cs_nifree <= needed)) {
13416 ACQUIRE_LOCK(ump);
13417 if ((ump->um_softdep->sd_flags & FLUSH_RC_ACTIVE) == 0) {
13418 ump->um_softdep->sd_flags |= FLUSH_RC_ACTIVE;
13419 FREE_LOCK(ump);
13420 failed_vnode = softdep_request_cleanup_flush(mp, ump);
13421 ACQUIRE_LOCK(ump);
13422 ump->um_softdep->sd_flags &= ~FLUSH_RC_ACTIVE;
13423 FREE_LOCK(ump);
13424 if (ump->softdep_on_worklist > 0) {
13425 stat_cleanup_retries += 1;
13426 if (!failed_vnode)
13427 goto retry;
13428 }
13429 } else {
13430 FREE_LOCK(ump);
13431 error = 0;
13432 }
13433 stat_cleanup_failures += 1;
13434 }
13435 if (time_second - starttime > stat_cleanup_high_delay)
13436 stat_cleanup_high_delay = time_second - starttime;
13437 UFS_LOCK(ump);
13438 return (error);
13439 }
13440
13441 /*
13442 * Scan the vnodes for the specified mount point flushing out any
13443 * vnodes that can be locked without waiting. Finally, try to flush
13444 * the device associated with the mount point if it can be locked
13445 * without waiting.
13446 *
13447 * We return 0 if we were able to lock every vnode in our scan.
13448 * If we had to skip one or more vnodes, we return 1.
13449 */
13450 static int
softdep_request_cleanup_flush(mp,ump)13451 softdep_request_cleanup_flush(mp, ump)
13452 struct mount *mp;
13453 struct ufsmount *ump;
13454 {
13455 struct thread *td;
13456 struct vnode *lvp, *mvp;
13457 int failed_vnode;
13458
13459 failed_vnode = 0;
13460 td = curthread;
13461 MNT_VNODE_FOREACH_ALL(lvp, mp, mvp) {
13462 if (TAILQ_FIRST(&lvp->v_bufobj.bo_dirty.bv_hd) == 0) {
13463 VI_UNLOCK(lvp);
13464 continue;
13465 }
13466 if (vget(lvp, LK_EXCLUSIVE | LK_INTERLOCK | LK_NOWAIT,
13467 td) != 0) {
13468 failed_vnode = 1;
13469 continue;
13470 }
13471 if (lvp->v_vflag & VV_NOSYNC) { /* unlinked */
13472 vput(lvp);
13473 continue;
13474 }
13475 (void) ffs_syncvnode(lvp, MNT_NOWAIT, 0);
13476 vput(lvp);
13477 }
13478 lvp = ump->um_devvp;
13479 if (vn_lock(lvp, LK_EXCLUSIVE | LK_NOWAIT) == 0) {
13480 VOP_FSYNC(lvp, MNT_NOWAIT, td);
13481 VOP_UNLOCK(lvp, 0);
13482 }
13483 return (failed_vnode);
13484 }
13485
13486 static bool
softdep_excess_items(struct ufsmount * ump,int item)13487 softdep_excess_items(struct ufsmount *ump, int item)
13488 {
13489
13490 KASSERT(item >= 0 && item < D_LAST, ("item %d", item));
13491 return (dep_current[item] > max_softdeps &&
13492 ump->softdep_curdeps[item] > max_softdeps /
13493 stat_flush_threads);
13494 }
13495
13496 static void
schedule_cleanup(struct mount * mp)13497 schedule_cleanup(struct mount *mp)
13498 {
13499 struct ufsmount *ump;
13500 struct thread *td;
13501
13502 ump = VFSTOUFS(mp);
13503 LOCK_OWNED(ump);
13504 FREE_LOCK(ump);
13505 td = curthread;
13506 if ((td->td_pflags & TDP_KTHREAD) != 0 &&
13507 (td->td_proc->p_flag2 & P2_AST_SU) == 0) {
13508 /*
13509 * No ast is delivered to kernel threads, so nobody
13510 * would deref the mp. Some kernel threads
13511 * explicitely check for AST, e.g. NFS daemon does
13512 * this in the serving loop.
13513 */
13514 return;
13515 }
13516 if (td->td_su != NULL)
13517 vfs_rel(td->td_su);
13518 vfs_ref(mp);
13519 td->td_su = mp;
13520 thread_lock(td);
13521 td->td_flags |= TDF_ASTPENDING;
13522 thread_unlock(td);
13523 }
13524
13525 static void
softdep_ast_cleanup_proc(struct thread * td)13526 softdep_ast_cleanup_proc(struct thread *td)
13527 {
13528 struct mount *mp;
13529 struct ufsmount *ump;
13530 int error;
13531 bool req;
13532
13533 while ((mp = td->td_su) != NULL) {
13534 td->td_su = NULL;
13535 error = vfs_busy(mp, MBF_NOWAIT);
13536 vfs_rel(mp);
13537 if (error != 0)
13538 return;
13539 if (ffs_own_mount(mp) && MOUNTEDSOFTDEP(mp)) {
13540 ump = VFSTOUFS(mp);
13541 for (;;) {
13542 req = false;
13543 ACQUIRE_LOCK(ump);
13544 if (softdep_excess_items(ump, D_INODEDEP)) {
13545 req = true;
13546 request_cleanup(mp, FLUSH_INODES);
13547 }
13548 if (softdep_excess_items(ump, D_DIRREM)) {
13549 req = true;
13550 request_cleanup(mp, FLUSH_BLOCKS);
13551 }
13552 FREE_LOCK(ump);
13553 if (softdep_excess_items(ump, D_NEWBLK) ||
13554 softdep_excess_items(ump, D_ALLOCDIRECT) ||
13555 softdep_excess_items(ump, D_ALLOCINDIR)) {
13556 error = vn_start_write(NULL, &mp,
13557 V_WAIT);
13558 if (error == 0) {
13559 req = true;
13560 VFS_SYNC(mp, MNT_WAIT);
13561 vn_finished_write(mp);
13562 }
13563 }
13564 if ((td->td_pflags & TDP_KTHREAD) != 0 || !req)
13565 break;
13566 }
13567 }
13568 vfs_unbusy(mp);
13569 }
13570 if ((mp = td->td_su) != NULL) {
13571 td->td_su = NULL;
13572 vfs_rel(mp);
13573 }
13574 }
13575
13576 /*
13577 * If memory utilization has gotten too high, deliberately slow things
13578 * down and speed up the I/O processing.
13579 */
13580 static int
request_cleanup(mp,resource)13581 request_cleanup(mp, resource)
13582 struct mount *mp;
13583 int resource;
13584 {
13585 struct thread *td = curthread;
13586 struct ufsmount *ump;
13587
13588 ump = VFSTOUFS(mp);
13589 LOCK_OWNED(ump);
13590 /*
13591 * We never hold up the filesystem syncer or buf daemon.
13592 */
13593 if (td->td_pflags & (TDP_SOFTDEP|TDP_NORUNNINGBUF))
13594 return (0);
13595 /*
13596 * First check to see if the work list has gotten backlogged.
13597 * If it has, co-opt this process to help clean up two entries.
13598 * Because this process may hold inodes locked, we cannot
13599 * handle any remove requests that might block on a locked
13600 * inode as that could lead to deadlock. We set TDP_SOFTDEP
13601 * to avoid recursively processing the worklist.
13602 */
13603 if (ump->softdep_on_worklist > max_softdeps / 10) {
13604 td->td_pflags |= TDP_SOFTDEP;
13605 process_worklist_item(mp, 2, LK_NOWAIT);
13606 td->td_pflags &= ~TDP_SOFTDEP;
13607 stat_worklist_push += 2;
13608 return(1);
13609 }
13610 /*
13611 * Next, we attempt to speed up the syncer process. If that
13612 * is successful, then we allow the process to continue.
13613 */
13614 if (softdep_speedup(ump) &&
13615 resource != FLUSH_BLOCKS_WAIT &&
13616 resource != FLUSH_INODES_WAIT)
13617 return(0);
13618 /*
13619 * If we are resource constrained on inode dependencies, try
13620 * flushing some dirty inodes. Otherwise, we are constrained
13621 * by file deletions, so try accelerating flushes of directories
13622 * with removal dependencies. We would like to do the cleanup
13623 * here, but we probably hold an inode locked at this point and
13624 * that might deadlock against one that we try to clean. So,
13625 * the best that we can do is request the syncer daemon to do
13626 * the cleanup for us.
13627 */
13628 switch (resource) {
13629
13630 case FLUSH_INODES:
13631 case FLUSH_INODES_WAIT:
13632 ACQUIRE_GBLLOCK(&lk);
13633 stat_ino_limit_push += 1;
13634 req_clear_inodedeps += 1;
13635 FREE_GBLLOCK(&lk);
13636 stat_countp = &stat_ino_limit_hit;
13637 break;
13638
13639 case FLUSH_BLOCKS:
13640 case FLUSH_BLOCKS_WAIT:
13641 ACQUIRE_GBLLOCK(&lk);
13642 stat_blk_limit_push += 1;
13643 req_clear_remove += 1;
13644 FREE_GBLLOCK(&lk);
13645 stat_countp = &stat_blk_limit_hit;
13646 break;
13647
13648 default:
13649 panic("request_cleanup: unknown type");
13650 }
13651 /*
13652 * Hopefully the syncer daemon will catch up and awaken us.
13653 * We wait at most tickdelay before proceeding in any case.
13654 */
13655 ACQUIRE_GBLLOCK(&lk);
13656 FREE_LOCK(ump);
13657 proc_waiting += 1;
13658 if (callout_pending(&softdep_callout) == FALSE)
13659 callout_reset(&softdep_callout, tickdelay > 2 ? tickdelay : 2,
13660 pause_timer, 0);
13661
13662 if ((td->td_pflags & TDP_KTHREAD) == 0)
13663 msleep((caddr_t)&proc_waiting, &lk, PPAUSE, "softupdate", 0);
13664 proc_waiting -= 1;
13665 FREE_GBLLOCK(&lk);
13666 ACQUIRE_LOCK(ump);
13667 return (1);
13668 }
13669
13670 /*
13671 * Awaken processes pausing in request_cleanup and clear proc_waiting
13672 * to indicate that there is no longer a timer running. Pause_timer
13673 * will be called with the global softdep mutex (&lk) locked.
13674 */
13675 static void
pause_timer(arg)13676 pause_timer(arg)
13677 void *arg;
13678 {
13679
13680 GBLLOCK_OWNED(&lk);
13681 /*
13682 * The callout_ API has acquired mtx and will hold it around this
13683 * function call.
13684 */
13685 *stat_countp += proc_waiting;
13686 wakeup(&proc_waiting);
13687 }
13688
13689 /*
13690 * If requested, try removing inode or removal dependencies.
13691 */
13692 static void
check_clear_deps(mp)13693 check_clear_deps(mp)
13694 struct mount *mp;
13695 {
13696
13697 /*
13698 * If we are suspended, it may be because of our using
13699 * too many inodedeps, so help clear them out.
13700 */
13701 if (MOUNTEDSUJ(mp) && VFSTOUFS(mp)->softdep_jblocks->jb_suspended)
13702 clear_inodedeps(mp);
13703 /*
13704 * General requests for cleanup of backed up dependencies
13705 */
13706 ACQUIRE_GBLLOCK(&lk);
13707 if (req_clear_inodedeps) {
13708 req_clear_inodedeps -= 1;
13709 FREE_GBLLOCK(&lk);
13710 clear_inodedeps(mp);
13711 ACQUIRE_GBLLOCK(&lk);
13712 wakeup(&proc_waiting);
13713 }
13714 if (req_clear_remove) {
13715 req_clear_remove -= 1;
13716 FREE_GBLLOCK(&lk);
13717 clear_remove(mp);
13718 ACQUIRE_GBLLOCK(&lk);
13719 wakeup(&proc_waiting);
13720 }
13721 FREE_GBLLOCK(&lk);
13722 }
13723
13724 /*
13725 * Flush out a directory with at least one removal dependency in an effort to
13726 * reduce the number of dirrem, freefile, and freeblks dependency structures.
13727 */
13728 static void
clear_remove(mp)13729 clear_remove(mp)
13730 struct mount *mp;
13731 {
13732 struct pagedep_hashhead *pagedephd;
13733 struct pagedep *pagedep;
13734 struct ufsmount *ump;
13735 struct vnode *vp;
13736 struct bufobj *bo;
13737 int error, cnt;
13738 ino_t ino;
13739
13740 ump = VFSTOUFS(mp);
13741 LOCK_OWNED(ump);
13742
13743 for (cnt = 0; cnt <= ump->pagedep_hash_size; cnt++) {
13744 pagedephd = &ump->pagedep_hashtbl[ump->pagedep_nextclean++];
13745 if (ump->pagedep_nextclean > ump->pagedep_hash_size)
13746 ump->pagedep_nextclean = 0;
13747 LIST_FOREACH(pagedep, pagedephd, pd_hash) {
13748 if (LIST_EMPTY(&pagedep->pd_dirremhd))
13749 continue;
13750 ino = pagedep->pd_ino;
13751 if (vn_start_write(NULL, &mp, V_NOWAIT) != 0)
13752 continue;
13753 FREE_LOCK(ump);
13754
13755 /*
13756 * Let unmount clear deps
13757 */
13758 error = vfs_busy(mp, MBF_NOWAIT);
13759 if (error != 0)
13760 goto finish_write;
13761 error = ffs_vgetf(mp, ino, LK_EXCLUSIVE, &vp,
13762 FFSV_FORCEINSMQ);
13763 vfs_unbusy(mp);
13764 if (error != 0) {
13765 softdep_error("clear_remove: vget", error);
13766 goto finish_write;
13767 }
13768 if ((error = ffs_syncvnode(vp, MNT_NOWAIT, 0)))
13769 softdep_error("clear_remove: fsync", error);
13770 bo = &vp->v_bufobj;
13771 BO_LOCK(bo);
13772 drain_output(vp);
13773 BO_UNLOCK(bo);
13774 vput(vp);
13775 finish_write:
13776 vn_finished_write(mp);
13777 ACQUIRE_LOCK(ump);
13778 return;
13779 }
13780 }
13781 }
13782
13783 /*
13784 * Clear out a block of dirty inodes in an effort to reduce
13785 * the number of inodedep dependency structures.
13786 */
13787 static void
clear_inodedeps(mp)13788 clear_inodedeps(mp)
13789 struct mount *mp;
13790 {
13791 struct inodedep_hashhead *inodedephd;
13792 struct inodedep *inodedep;
13793 struct ufsmount *ump;
13794 struct vnode *vp;
13795 struct fs *fs;
13796 int error, cnt;
13797 ino_t firstino, lastino, ino;
13798
13799 ump = VFSTOUFS(mp);
13800 fs = ump->um_fs;
13801 LOCK_OWNED(ump);
13802 /*
13803 * Pick a random inode dependency to be cleared.
13804 * We will then gather up all the inodes in its block
13805 * that have dependencies and flush them out.
13806 */
13807 for (cnt = 0; cnt <= ump->inodedep_hash_size; cnt++) {
13808 inodedephd = &ump->inodedep_hashtbl[ump->inodedep_nextclean++];
13809 if (ump->inodedep_nextclean > ump->inodedep_hash_size)
13810 ump->inodedep_nextclean = 0;
13811 if ((inodedep = LIST_FIRST(inodedephd)) != NULL)
13812 break;
13813 }
13814 if (inodedep == NULL)
13815 return;
13816 /*
13817 * Find the last inode in the block with dependencies.
13818 */
13819 firstino = rounddown2(inodedep->id_ino, INOPB(fs));
13820 for (lastino = firstino + INOPB(fs) - 1; lastino > firstino; lastino--)
13821 if (inodedep_lookup(mp, lastino, 0, &inodedep) != 0)
13822 break;
13823 /*
13824 * Asynchronously push all but the last inode with dependencies.
13825 * Synchronously push the last inode with dependencies to ensure
13826 * that the inode block gets written to free up the inodedeps.
13827 */
13828 for (ino = firstino; ino <= lastino; ino++) {
13829 if (inodedep_lookup(mp, ino, 0, &inodedep) == 0)
13830 continue;
13831 if (vn_start_write(NULL, &mp, V_NOWAIT) != 0)
13832 continue;
13833 FREE_LOCK(ump);
13834 error = vfs_busy(mp, MBF_NOWAIT); /* Let unmount clear deps */
13835 if (error != 0) {
13836 vn_finished_write(mp);
13837 ACQUIRE_LOCK(ump);
13838 return;
13839 }
13840 if ((error = ffs_vgetf(mp, ino, LK_EXCLUSIVE, &vp,
13841 FFSV_FORCEINSMQ)) != 0) {
13842 softdep_error("clear_inodedeps: vget", error);
13843 vfs_unbusy(mp);
13844 vn_finished_write(mp);
13845 ACQUIRE_LOCK(ump);
13846 return;
13847 }
13848 vfs_unbusy(mp);
13849 if (ino == lastino) {
13850 if ((error = ffs_syncvnode(vp, MNT_WAIT, 0)))
13851 softdep_error("clear_inodedeps: fsync1", error);
13852 } else {
13853 if ((error = ffs_syncvnode(vp, MNT_NOWAIT, 0)))
13854 softdep_error("clear_inodedeps: fsync2", error);
13855 BO_LOCK(&vp->v_bufobj);
13856 drain_output(vp);
13857 BO_UNLOCK(&vp->v_bufobj);
13858 }
13859 vput(vp);
13860 vn_finished_write(mp);
13861 ACQUIRE_LOCK(ump);
13862 }
13863 }
13864
13865 void
softdep_buf_append(bp,wkhd)13866 softdep_buf_append(bp, wkhd)
13867 struct buf *bp;
13868 struct workhead *wkhd;
13869 {
13870 struct worklist *wk;
13871 struct ufsmount *ump;
13872
13873 if ((wk = LIST_FIRST(wkhd)) == NULL)
13874 return;
13875 KASSERT(MOUNTEDSOFTDEP(wk->wk_mp) != 0,
13876 ("softdep_buf_append called on non-softdep filesystem"));
13877 ump = VFSTOUFS(wk->wk_mp);
13878 ACQUIRE_LOCK(ump);
13879 while ((wk = LIST_FIRST(wkhd)) != NULL) {
13880 WORKLIST_REMOVE(wk);
13881 WORKLIST_INSERT(&bp->b_dep, wk);
13882 }
13883 FREE_LOCK(ump);
13884
13885 }
13886
13887 void
softdep_inode_append(ip,cred,wkhd)13888 softdep_inode_append(ip, cred, wkhd)
13889 struct inode *ip;
13890 struct ucred *cred;
13891 struct workhead *wkhd;
13892 {
13893 struct buf *bp;
13894 struct fs *fs;
13895 struct ufsmount *ump;
13896 int error;
13897
13898 ump = ITOUMP(ip);
13899 KASSERT(MOUNTEDSOFTDEP(UFSTOVFS(ump)) != 0,
13900 ("softdep_inode_append called on non-softdep filesystem"));
13901 fs = ump->um_fs;
13902 error = bread(ump->um_devvp, fsbtodb(fs, ino_to_fsba(fs, ip->i_number)),
13903 (int)fs->fs_bsize, cred, &bp);
13904 if (error) {
13905 bqrelse(bp);
13906 softdep_freework(wkhd);
13907 return;
13908 }
13909 softdep_buf_append(bp, wkhd);
13910 bqrelse(bp);
13911 }
13912
13913 void
softdep_freework(wkhd)13914 softdep_freework(wkhd)
13915 struct workhead *wkhd;
13916 {
13917 struct worklist *wk;
13918 struct ufsmount *ump;
13919
13920 if ((wk = LIST_FIRST(wkhd)) == NULL)
13921 return;
13922 KASSERT(MOUNTEDSOFTDEP(wk->wk_mp) != 0,
13923 ("softdep_freework called on non-softdep filesystem"));
13924 ump = VFSTOUFS(wk->wk_mp);
13925 ACQUIRE_LOCK(ump);
13926 handle_jwork(wkhd);
13927 FREE_LOCK(ump);
13928 }
13929
13930 static struct ufsmount *
softdep_bp_to_mp(bp)13931 softdep_bp_to_mp(bp)
13932 struct buf *bp;
13933 {
13934 struct mount *mp;
13935 struct vnode *vp;
13936
13937 if (LIST_EMPTY(&bp->b_dep))
13938 return (NULL);
13939 vp = bp->b_vp;
13940 KASSERT(vp != NULL,
13941 ("%s, buffer with dependencies lacks vnode", __func__));
13942
13943 /*
13944 * The ump mount point is stable after we get a correct
13945 * pointer, since bp is locked and this prevents unmount from
13946 * proceeding. But to get to it, we cannot dereference bp->b_dep
13947 * head wk_mp, because we do not yet own SU ump lock and
13948 * workitem might be freed while dereferenced.
13949 */
13950 retry:
13951 switch (vp->v_type) {
13952 case VCHR:
13953 VI_LOCK(vp);
13954 mp = vp->v_type == VCHR ? vp->v_rdev->si_mountpt : NULL;
13955 VI_UNLOCK(vp);
13956 if (mp == NULL)
13957 goto retry;
13958 break;
13959 case VREG:
13960 case VDIR:
13961 case VLNK:
13962 case VFIFO:
13963 case VSOCK:
13964 mp = vp->v_mount;
13965 break;
13966 case VBLK:
13967 vn_printf(vp, "softdep_bp_to_mp: unexpected block device\n");
13968 /* FALLTHROUGH */
13969 case VNON:
13970 case VBAD:
13971 case VMARKER:
13972 mp = NULL;
13973 break;
13974 default:
13975 vn_printf(vp, "unknown vnode type");
13976 mp = NULL;
13977 break;
13978 }
13979 return (VFSTOUFS(mp));
13980 }
13981
13982 /*
13983 * Function to determine if the buffer has outstanding dependencies
13984 * that will cause a roll-back if the buffer is written. If wantcount
13985 * is set, return number of dependencies, otherwise just yes or no.
13986 */
13987 static int
softdep_count_dependencies(bp,wantcount)13988 softdep_count_dependencies(bp, wantcount)
13989 struct buf *bp;
13990 int wantcount;
13991 {
13992 struct worklist *wk;
13993 struct ufsmount *ump;
13994 struct bmsafemap *bmsafemap;
13995 struct freework *freework;
13996 struct inodedep *inodedep;
13997 struct indirdep *indirdep;
13998 struct freeblks *freeblks;
13999 struct allocindir *aip;
14000 struct pagedep *pagedep;
14001 struct dirrem *dirrem;
14002 struct newblk *newblk;
14003 struct mkdir *mkdir;
14004 struct diradd *dap;
14005 int i, retval;
14006
14007 ump = softdep_bp_to_mp(bp);
14008 if (ump == NULL)
14009 return (0);
14010 retval = 0;
14011 ACQUIRE_LOCK(ump);
14012 LIST_FOREACH(wk, &bp->b_dep, wk_list) {
14013 switch (wk->wk_type) {
14014
14015 case D_INODEDEP:
14016 inodedep = WK_INODEDEP(wk);
14017 if ((inodedep->id_state & DEPCOMPLETE) == 0) {
14018 /* bitmap allocation dependency */
14019 retval += 1;
14020 if (!wantcount)
14021 goto out;
14022 }
14023 if (TAILQ_FIRST(&inodedep->id_inoupdt)) {
14024 /* direct block pointer dependency */
14025 retval += 1;
14026 if (!wantcount)
14027 goto out;
14028 }
14029 if (TAILQ_FIRST(&inodedep->id_extupdt)) {
14030 /* direct block pointer dependency */
14031 retval += 1;
14032 if (!wantcount)
14033 goto out;
14034 }
14035 if (TAILQ_FIRST(&inodedep->id_inoreflst)) {
14036 /* Add reference dependency. */
14037 retval += 1;
14038 if (!wantcount)
14039 goto out;
14040 }
14041 continue;
14042
14043 case D_INDIRDEP:
14044 indirdep = WK_INDIRDEP(wk);
14045
14046 TAILQ_FOREACH(freework, &indirdep->ir_trunc, fw_next) {
14047 /* indirect truncation dependency */
14048 retval += 1;
14049 if (!wantcount)
14050 goto out;
14051 }
14052
14053 LIST_FOREACH(aip, &indirdep->ir_deplisthd, ai_next) {
14054 /* indirect block pointer dependency */
14055 retval += 1;
14056 if (!wantcount)
14057 goto out;
14058 }
14059 continue;
14060
14061 case D_PAGEDEP:
14062 pagedep = WK_PAGEDEP(wk);
14063 LIST_FOREACH(dirrem, &pagedep->pd_dirremhd, dm_next) {
14064 if (LIST_FIRST(&dirrem->dm_jremrefhd)) {
14065 /* Journal remove ref dependency. */
14066 retval += 1;
14067 if (!wantcount)
14068 goto out;
14069 }
14070 }
14071 for (i = 0; i < DAHASHSZ; i++) {
14072
14073 LIST_FOREACH(dap, &pagedep->pd_diraddhd[i], da_pdlist) {
14074 /* directory entry dependency */
14075 retval += 1;
14076 if (!wantcount)
14077 goto out;
14078 }
14079 }
14080 continue;
14081
14082 case D_BMSAFEMAP:
14083 bmsafemap = WK_BMSAFEMAP(wk);
14084 if (LIST_FIRST(&bmsafemap->sm_jaddrefhd)) {
14085 /* Add reference dependency. */
14086 retval += 1;
14087 if (!wantcount)
14088 goto out;
14089 }
14090 if (LIST_FIRST(&bmsafemap->sm_jnewblkhd)) {
14091 /* Allocate block dependency. */
14092 retval += 1;
14093 if (!wantcount)
14094 goto out;
14095 }
14096 continue;
14097
14098 case D_FREEBLKS:
14099 freeblks = WK_FREEBLKS(wk);
14100 if (LIST_FIRST(&freeblks->fb_jblkdephd)) {
14101 /* Freeblk journal dependency. */
14102 retval += 1;
14103 if (!wantcount)
14104 goto out;
14105 }
14106 continue;
14107
14108 case D_ALLOCDIRECT:
14109 case D_ALLOCINDIR:
14110 newblk = WK_NEWBLK(wk);
14111 if (newblk->nb_jnewblk) {
14112 /* Journal allocate dependency. */
14113 retval += 1;
14114 if (!wantcount)
14115 goto out;
14116 }
14117 continue;
14118
14119 case D_MKDIR:
14120 mkdir = WK_MKDIR(wk);
14121 if (mkdir->md_jaddref) {
14122 /* Journal reference dependency. */
14123 retval += 1;
14124 if (!wantcount)
14125 goto out;
14126 }
14127 continue;
14128
14129 case D_FREEWORK:
14130 case D_FREEDEP:
14131 case D_JSEGDEP:
14132 case D_JSEG:
14133 case D_SBDEP:
14134 /* never a dependency on these blocks */
14135 continue;
14136
14137 default:
14138 panic("softdep_count_dependencies: Unexpected type %s",
14139 TYPENAME(wk->wk_type));
14140 /* NOTREACHED */
14141 }
14142 }
14143 out:
14144 FREE_LOCK(ump);
14145 return (retval);
14146 }
14147
14148 /*
14149 * Acquire exclusive access to a buffer.
14150 * Must be called with a locked mtx parameter.
14151 * Return acquired buffer or NULL on failure.
14152 */
14153 static struct buf *
getdirtybuf(bp,lock,waitfor)14154 getdirtybuf(bp, lock, waitfor)
14155 struct buf *bp;
14156 struct rwlock *lock;
14157 int waitfor;
14158 {
14159 int error;
14160
14161 if (BUF_LOCK(bp, LK_EXCLUSIVE | LK_NOWAIT, NULL) != 0) {
14162 if (waitfor != MNT_WAIT)
14163 return (NULL);
14164 error = BUF_LOCK(bp,
14165 LK_EXCLUSIVE | LK_SLEEPFAIL | LK_INTERLOCK, lock);
14166 /*
14167 * Even if we successfully acquire bp here, we have dropped
14168 * lock, which may violates our guarantee.
14169 */
14170 if (error == 0)
14171 BUF_UNLOCK(bp);
14172 else if (error != ENOLCK)
14173 panic("getdirtybuf: inconsistent lock: %d", error);
14174 rw_wlock(lock);
14175 return (NULL);
14176 }
14177 if ((bp->b_vflags & BV_BKGRDINPROG) != 0) {
14178 if (lock != BO_LOCKPTR(bp->b_bufobj) && waitfor == MNT_WAIT) {
14179 rw_wunlock(lock);
14180 BO_LOCK(bp->b_bufobj);
14181 BUF_UNLOCK(bp);
14182 if ((bp->b_vflags & BV_BKGRDINPROG) != 0) {
14183 bp->b_vflags |= BV_BKGRDWAIT;
14184 msleep(&bp->b_xflags, BO_LOCKPTR(bp->b_bufobj),
14185 PRIBIO | PDROP, "getbuf", 0);
14186 } else
14187 BO_UNLOCK(bp->b_bufobj);
14188 rw_wlock(lock);
14189 return (NULL);
14190 }
14191 BUF_UNLOCK(bp);
14192 if (waitfor != MNT_WAIT)
14193 return (NULL);
14194 #ifdef DEBUG_VFS_LOCKS
14195 if (bp->b_vp->v_type != VCHR)
14196 ASSERT_BO_WLOCKED(bp->b_bufobj);
14197 #endif
14198 bp->b_vflags |= BV_BKGRDWAIT;
14199 rw_sleep(&bp->b_xflags, lock, PRIBIO, "getbuf", 0);
14200 return (NULL);
14201 }
14202 if ((bp->b_flags & B_DELWRI) == 0) {
14203 BUF_UNLOCK(bp);
14204 return (NULL);
14205 }
14206 bremfree(bp);
14207 return (bp);
14208 }
14209
14210
14211 /*
14212 * Check if it is safe to suspend the file system now. On entry,
14213 * the vnode interlock for devvp should be held. Return 0 with
14214 * the mount interlock held if the file system can be suspended now,
14215 * otherwise return EAGAIN with the mount interlock held.
14216 */
14217 int
softdep_check_suspend(struct mount * mp,struct vnode * devvp,int softdep_depcnt,int softdep_accdepcnt,int secondary_writes,int secondary_accwrites)14218 softdep_check_suspend(struct mount *mp,
14219 struct vnode *devvp,
14220 int softdep_depcnt,
14221 int softdep_accdepcnt,
14222 int secondary_writes,
14223 int secondary_accwrites)
14224 {
14225 struct bufobj *bo;
14226 struct ufsmount *ump;
14227 struct inodedep *inodedep;
14228 int error, unlinked;
14229
14230 bo = &devvp->v_bufobj;
14231 ASSERT_BO_WLOCKED(bo);
14232
14233 /*
14234 * If we are not running with soft updates, then we need only
14235 * deal with secondary writes as we try to suspend.
14236 */
14237 if (MOUNTEDSOFTDEP(mp) == 0) {
14238 MNT_ILOCK(mp);
14239 while (mp->mnt_secondary_writes != 0) {
14240 BO_UNLOCK(bo);
14241 msleep(&mp->mnt_secondary_writes, MNT_MTX(mp),
14242 (PUSER - 1) | PDROP, "secwr", 0);
14243 BO_LOCK(bo);
14244 MNT_ILOCK(mp);
14245 }
14246
14247 /*
14248 * Reasons for needing more work before suspend:
14249 * - Dirty buffers on devvp.
14250 * - Secondary writes occurred after start of vnode sync loop
14251 */
14252 error = 0;
14253 if (bo->bo_numoutput > 0 ||
14254 bo->bo_dirty.bv_cnt > 0 ||
14255 secondary_writes != 0 ||
14256 mp->mnt_secondary_writes != 0 ||
14257 secondary_accwrites != mp->mnt_secondary_accwrites)
14258 error = EAGAIN;
14259 BO_UNLOCK(bo);
14260 return (error);
14261 }
14262
14263 /*
14264 * If we are running with soft updates, then we need to coordinate
14265 * with them as we try to suspend.
14266 */
14267 ump = VFSTOUFS(mp);
14268 for (;;) {
14269 if (!TRY_ACQUIRE_LOCK(ump)) {
14270 BO_UNLOCK(bo);
14271 ACQUIRE_LOCK(ump);
14272 FREE_LOCK(ump);
14273 BO_LOCK(bo);
14274 continue;
14275 }
14276 MNT_ILOCK(mp);
14277 if (mp->mnt_secondary_writes != 0) {
14278 FREE_LOCK(ump);
14279 BO_UNLOCK(bo);
14280 msleep(&mp->mnt_secondary_writes,
14281 MNT_MTX(mp),
14282 (PUSER - 1) | PDROP, "secwr", 0);
14283 BO_LOCK(bo);
14284 continue;
14285 }
14286 break;
14287 }
14288
14289 unlinked = 0;
14290 if (MOUNTEDSUJ(mp)) {
14291 for (inodedep = TAILQ_FIRST(&ump->softdep_unlinked);
14292 inodedep != NULL;
14293 inodedep = TAILQ_NEXT(inodedep, id_unlinked)) {
14294 if ((inodedep->id_state & (UNLINKED | UNLINKLINKS |
14295 UNLINKONLIST)) != (UNLINKED | UNLINKLINKS |
14296 UNLINKONLIST) ||
14297 !check_inodedep_free(inodedep))
14298 continue;
14299 unlinked++;
14300 }
14301 }
14302
14303 /*
14304 * Reasons for needing more work before suspend:
14305 * - Dirty buffers on devvp.
14306 * - Softdep activity occurred after start of vnode sync loop
14307 * - Secondary writes occurred after start of vnode sync loop
14308 */
14309 error = 0;
14310 if (bo->bo_numoutput > 0 ||
14311 bo->bo_dirty.bv_cnt > 0 ||
14312 softdep_depcnt != unlinked ||
14313 ump->softdep_deps != unlinked ||
14314 softdep_accdepcnt != ump->softdep_accdeps ||
14315 secondary_writes != 0 ||
14316 mp->mnt_secondary_writes != 0 ||
14317 secondary_accwrites != mp->mnt_secondary_accwrites)
14318 error = EAGAIN;
14319 FREE_LOCK(ump);
14320 BO_UNLOCK(bo);
14321 return (error);
14322 }
14323
14324
14325 /*
14326 * Get the number of dependency structures for the file system, both
14327 * the current number and the total number allocated. These will
14328 * later be used to detect that softdep processing has occurred.
14329 */
14330 void
softdep_get_depcounts(struct mount * mp,int * softdep_depsp,int * softdep_accdepsp)14331 softdep_get_depcounts(struct mount *mp,
14332 int *softdep_depsp,
14333 int *softdep_accdepsp)
14334 {
14335 struct ufsmount *ump;
14336
14337 if (MOUNTEDSOFTDEP(mp) == 0) {
14338 *softdep_depsp = 0;
14339 *softdep_accdepsp = 0;
14340 return;
14341 }
14342 ump = VFSTOUFS(mp);
14343 ACQUIRE_LOCK(ump);
14344 *softdep_depsp = ump->softdep_deps;
14345 *softdep_accdepsp = ump->softdep_accdeps;
14346 FREE_LOCK(ump);
14347 }
14348
14349 /*
14350 * Wait for pending output on a vnode to complete.
14351 */
14352 static void
drain_output(vp)14353 drain_output(vp)
14354 struct vnode *vp;
14355 {
14356
14357 ASSERT_VOP_LOCKED(vp, "drain_output");
14358 (void)bufobj_wwait(&vp->v_bufobj, 0, 0);
14359 }
14360
14361 /*
14362 * Called whenever a buffer that is being invalidated or reallocated
14363 * contains dependencies. This should only happen if an I/O error has
14364 * occurred. The routine is called with the buffer locked.
14365 */
14366 static void
softdep_deallocate_dependencies(bp)14367 softdep_deallocate_dependencies(bp)
14368 struct buf *bp;
14369 {
14370
14371 if ((bp->b_ioflags & BIO_ERROR) == 0)
14372 panic("softdep_deallocate_dependencies: dangling deps");
14373 if (bp->b_vp != NULL && bp->b_vp->v_mount != NULL)
14374 softdep_error(bp->b_vp->v_mount->mnt_stat.f_mntonname, bp->b_error);
14375 else
14376 printf("softdep_deallocate_dependencies: "
14377 "got error %d while accessing filesystem\n", bp->b_error);
14378 if (bp->b_error != ENXIO)
14379 panic("softdep_deallocate_dependencies: unrecovered I/O error");
14380 }
14381
14382 /*
14383 * Function to handle asynchronous write errors in the filesystem.
14384 */
14385 static void
softdep_error(func,error)14386 softdep_error(func, error)
14387 char *func;
14388 int error;
14389 {
14390
14391 /* XXX should do something better! */
14392 printf("%s: got error %d while accessing filesystem\n", func, error);
14393 }
14394
14395 #ifdef DDB
14396
14397 static void
inodedep_print(struct inodedep * inodedep,int verbose)14398 inodedep_print(struct inodedep *inodedep, int verbose)
14399 {
14400 db_printf("%p fs %p st %x ino %jd inoblk %jd delta %jd nlink %jd"
14401 " saveino %p\n",
14402 inodedep, inodedep->id_fs, inodedep->id_state,
14403 (intmax_t)inodedep->id_ino,
14404 (intmax_t)fsbtodb(inodedep->id_fs,
14405 ino_to_fsba(inodedep->id_fs, inodedep->id_ino)),
14406 (intmax_t)inodedep->id_nlinkdelta,
14407 (intmax_t)inodedep->id_savednlink,
14408 inodedep->id_savedino1);
14409
14410 if (verbose == 0)
14411 return;
14412
14413 db_printf("\tpendinghd %p, bufwait %p, inowait %p, inoreflst %p, "
14414 "mkdiradd %p\n",
14415 LIST_FIRST(&inodedep->id_pendinghd),
14416 LIST_FIRST(&inodedep->id_bufwait),
14417 LIST_FIRST(&inodedep->id_inowait),
14418 TAILQ_FIRST(&inodedep->id_inoreflst),
14419 inodedep->id_mkdiradd);
14420 db_printf("\tinoupdt %p, newinoupdt %p, extupdt %p, newextupdt %p\n",
14421 TAILQ_FIRST(&inodedep->id_inoupdt),
14422 TAILQ_FIRST(&inodedep->id_newinoupdt),
14423 TAILQ_FIRST(&inodedep->id_extupdt),
14424 TAILQ_FIRST(&inodedep->id_newextupdt));
14425 }
14426
DB_SHOW_COMMAND(inodedep,db_show_inodedep)14427 DB_SHOW_COMMAND(inodedep, db_show_inodedep)
14428 {
14429
14430 if (have_addr == 0) {
14431 db_printf("Address required\n");
14432 return;
14433 }
14434 inodedep_print((struct inodedep*)addr, 1);
14435 }
14436
DB_SHOW_COMMAND(inodedeps,db_show_inodedeps)14437 DB_SHOW_COMMAND(inodedeps, db_show_inodedeps)
14438 {
14439 struct inodedep_hashhead *inodedephd;
14440 struct inodedep *inodedep;
14441 struct ufsmount *ump;
14442 int cnt;
14443
14444 if (have_addr == 0) {
14445 db_printf("Address required\n");
14446 return;
14447 }
14448 ump = (struct ufsmount *)addr;
14449 for (cnt = 0; cnt < ump->inodedep_hash_size; cnt++) {
14450 inodedephd = &ump->inodedep_hashtbl[cnt];
14451 LIST_FOREACH(inodedep, inodedephd, id_hash) {
14452 inodedep_print(inodedep, 0);
14453 }
14454 }
14455 }
14456
DB_SHOW_COMMAND(worklist,db_show_worklist)14457 DB_SHOW_COMMAND(worklist, db_show_worklist)
14458 {
14459 struct worklist *wk;
14460
14461 if (have_addr == 0) {
14462 db_printf("Address required\n");
14463 return;
14464 }
14465 wk = (struct worklist *)addr;
14466 printf("worklist: %p type %s state 0x%X\n",
14467 wk, TYPENAME(wk->wk_type), wk->wk_state);
14468 }
14469
DB_SHOW_COMMAND(workhead,db_show_workhead)14470 DB_SHOW_COMMAND(workhead, db_show_workhead)
14471 {
14472 struct workhead *wkhd;
14473 struct worklist *wk;
14474 int i;
14475
14476 if (have_addr == 0) {
14477 db_printf("Address required\n");
14478 return;
14479 }
14480 wkhd = (struct workhead *)addr;
14481 wk = LIST_FIRST(wkhd);
14482 for (i = 0; i < 100 && wk != NULL; i++, wk = LIST_NEXT(wk, wk_list))
14483 db_printf("worklist: %p type %s state 0x%X",
14484 wk, TYPENAME(wk->wk_type), wk->wk_state);
14485 if (i == 100)
14486 db_printf("workhead overflow");
14487 printf("\n");
14488 }
14489
14490
DB_SHOW_COMMAND(mkdirs,db_show_mkdirs)14491 DB_SHOW_COMMAND(mkdirs, db_show_mkdirs)
14492 {
14493 struct mkdirlist *mkdirlisthd;
14494 struct jaddref *jaddref;
14495 struct diradd *diradd;
14496 struct mkdir *mkdir;
14497
14498 if (have_addr == 0) {
14499 db_printf("Address required\n");
14500 return;
14501 }
14502 mkdirlisthd = (struct mkdirlist *)addr;
14503 LIST_FOREACH(mkdir, mkdirlisthd, md_mkdirs) {
14504 diradd = mkdir->md_diradd;
14505 db_printf("mkdir: %p state 0x%X dap %p state 0x%X",
14506 mkdir, mkdir->md_state, diradd, diradd->da_state);
14507 if ((jaddref = mkdir->md_jaddref) != NULL)
14508 db_printf(" jaddref %p jaddref state 0x%X",
14509 jaddref, jaddref->ja_state);
14510 db_printf("\n");
14511 }
14512 }
14513
14514 /* exported to ffs_vfsops.c */
14515 extern void db_print_ffs(struct ufsmount *ump);
14516 void
db_print_ffs(struct ufsmount * ump)14517 db_print_ffs(struct ufsmount *ump)
14518 {
14519 db_printf("mp %p %s devvp %p fs %p su_wl %d su_deps %d su_req %d\n",
14520 ump->um_mountp, ump->um_mountp->mnt_stat.f_mntonname,
14521 ump->um_devvp, ump->um_fs, ump->softdep_on_worklist,
14522 ump->softdep_deps, ump->softdep_req);
14523 }
14524
14525 #endif /* DDB */
14526
14527 #endif /* SOFTUPDATES */
14528