1113db2ddSJeff Roberson /*-
24d846d26SWarner Losh * SPDX-License-Identifier: BSD-2-Clause
31de7b4b8SPedro F. Giffuni *
4113db2ddSJeff Roberson * Copyright 2009, 2010 Jeffrey W. Roberson <jeff@FreeBSD.org>
5113db2ddSJeff Roberson * All rights reserved.
6113db2ddSJeff Roberson *
7113db2ddSJeff Roberson * Redistribution and use in source and binary forms, with or without
8113db2ddSJeff Roberson * modification, are permitted provided that the following conditions
9113db2ddSJeff Roberson * are met:
10113db2ddSJeff Roberson * 1. Redistributions of source code must retain the above copyright
11113db2ddSJeff Roberson * notice, this list of conditions and the following disclaimer.
12113db2ddSJeff Roberson * 2. Redistributions in binary form must reproduce the above copyright
13113db2ddSJeff Roberson * notice, this list of conditions and the following disclaimer in the
14113db2ddSJeff Roberson * documentation and/or other materials provided with the distribution.
15113db2ddSJeff Roberson *
16113db2ddSJeff Roberson * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND
17113db2ddSJeff Roberson * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18113db2ddSJeff Roberson * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19113db2ddSJeff Roberson * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE
20113db2ddSJeff Roberson * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21113db2ddSJeff Roberson * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22113db2ddSJeff Roberson * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23113db2ddSJeff Roberson * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24113db2ddSJeff Roberson * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25113db2ddSJeff Roberson * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26113db2ddSJeff Roberson * SUCH DAMAGE.
27113db2ddSJeff Roberson */
28113db2ddSJeff Roberson
29113db2ddSJeff Roberson #include <sys/param.h>
300947d19aSKonstantin Belousov #include <sys/disk.h>
31113db2ddSJeff Roberson #include <sys/disklabel.h>
32113db2ddSJeff Roberson #include <sys/mount.h>
33113db2ddSJeff Roberson #include <sys/stat.h>
34113db2ddSJeff Roberson
35d485c77fSKonstantin Belousov #include <ufs/ufs/extattr.h>
36d485c77fSKonstantin Belousov #include <ufs/ufs/quota.h>
37113db2ddSJeff Roberson #include <ufs/ufs/ufsmount.h>
38113db2ddSJeff Roberson #include <ufs/ufs/dinode.h>
39113db2ddSJeff Roberson #include <ufs/ufs/dir.h>
40113db2ddSJeff Roberson #include <ufs/ffs/fs.h>
41113db2ddSJeff Roberson
427649cb00SKirk McKusick #include <assert.h>
437649cb00SKirk McKusick #include <err.h>
44edad6026SXin LI #include <setjmp.h>
45edad6026SXin LI #include <stdarg.h>
46113db2ddSJeff Roberson #include <stdio.h>
47113db2ddSJeff Roberson #include <stdlib.h>
48113db2ddSJeff Roberson #include <stdint.h>
49113db2ddSJeff Roberson #include <string.h>
50113db2ddSJeff Roberson #include <strings.h>
51edad6026SXin LI #include <sysexits.h>
527649cb00SKirk McKusick #include <time.h>
53113db2ddSJeff Roberson
54113db2ddSJeff Roberson #include "fsck.h"
55113db2ddSJeff Roberson
56113db2ddSJeff Roberson #define DOTDOT_OFFSET DIRECTSIZ(1)
57113db2ddSJeff Roberson
58113db2ddSJeff Roberson struct suj_seg {
59113db2ddSJeff Roberson TAILQ_ENTRY(suj_seg) ss_next;
60113db2ddSJeff Roberson struct jsegrec ss_rec;
61113db2ddSJeff Roberson uint8_t *ss_blk;
62113db2ddSJeff Roberson };
63113db2ddSJeff Roberson
64113db2ddSJeff Roberson struct suj_rec {
65113db2ddSJeff Roberson TAILQ_ENTRY(suj_rec) sr_next;
66113db2ddSJeff Roberson union jrec *sr_rec;
67113db2ddSJeff Roberson };
68113db2ddSJeff Roberson TAILQ_HEAD(srechd, suj_rec);
69113db2ddSJeff Roberson
70113db2ddSJeff Roberson struct suj_ino {
71113db2ddSJeff Roberson LIST_ENTRY(suj_ino) si_next;
72113db2ddSJeff Roberson struct srechd si_recs;
73113db2ddSJeff Roberson struct srechd si_newrecs;
74113db2ddSJeff Roberson struct srechd si_movs;
75113db2ddSJeff Roberson struct jtrncrec *si_trunc;
76113db2ddSJeff Roberson ino_t si_ino;
77113db2ddSJeff Roberson char si_skipparent;
78113db2ddSJeff Roberson char si_hasrecs;
79113db2ddSJeff Roberson char si_blkadj;
80113db2ddSJeff Roberson char si_linkadj;
81113db2ddSJeff Roberson int si_mode;
82113db2ddSJeff Roberson nlink_t si_nlinkadj;
83113db2ddSJeff Roberson nlink_t si_nlink;
84113db2ddSJeff Roberson nlink_t si_dotlinks;
85113db2ddSJeff Roberson };
86113db2ddSJeff Roberson LIST_HEAD(inohd, suj_ino);
87113db2ddSJeff Roberson
88113db2ddSJeff Roberson struct suj_blk {
89113db2ddSJeff Roberson LIST_ENTRY(suj_blk) sb_next;
90113db2ddSJeff Roberson struct srechd sb_recs;
91113db2ddSJeff Roberson ufs2_daddr_t sb_blk;
92113db2ddSJeff Roberson };
93113db2ddSJeff Roberson LIST_HEAD(blkhd, suj_blk);
94113db2ddSJeff Roberson
95113db2ddSJeff Roberson struct suj_cg {
96113db2ddSJeff Roberson LIST_ENTRY(suj_cg) sc_next;
975cc52631SKirk McKusick struct blkhd sc_blkhash[HASHSIZE];
985cc52631SKirk McKusick struct inohd sc_inohash[HASHSIZE];
99113db2ddSJeff Roberson struct ino_blk *sc_lastiblk;
100113db2ddSJeff Roberson struct suj_ino *sc_lastino;
101113db2ddSJeff Roberson struct suj_blk *sc_lastblk;
1025cc52631SKirk McKusick struct bufarea *sc_cgbp;
103113db2ddSJeff Roberson struct cg *sc_cgp;
104113db2ddSJeff Roberson int sc_cgx;
105113db2ddSJeff Roberson };
106113db2ddSJeff Roberson
1075cc52631SKirk McKusick static LIST_HEAD(cghd, suj_cg) cghash[HASHSIZE];
1087703a6ffSScott Long static struct suj_cg *lastcg;
109113db2ddSJeff Roberson
1107703a6ffSScott Long static TAILQ_HEAD(seghd, suj_seg) allsegs;
1117703a6ffSScott Long static uint64_t oldseq;
112113db2ddSJeff Roberson static struct fs *fs = NULL;
1137703a6ffSScott Long static ino_t sujino;
1146f0ca273SKirk McKusick static char *joptype[JOP_NUMJOPTYPES] = JOP_NAMES;
115113db2ddSJeff Roberson
116113db2ddSJeff Roberson /*
117113db2ddSJeff Roberson * Summary statistics.
118113db2ddSJeff Roberson */
1197703a6ffSScott Long static uint64_t freefrags;
1207703a6ffSScott Long static uint64_t freeblocks;
1217703a6ffSScott Long static uint64_t freeinos;
1227703a6ffSScott Long static uint64_t freedir;
1237703a6ffSScott Long static uint64_t jbytes;
1247703a6ffSScott Long static uint64_t jrecs;
125113db2ddSJeff Roberson
126edad6026SXin LI static jmp_buf jmpbuf;
127edad6026SXin LI
128113db2ddSJeff Roberson typedef void (*ino_visitor)(ino_t, ufs_lbn_t, ufs2_daddr_t, int);
129edad6026SXin LI static void err_suj(const char *, ...) __dead2;
130113db2ddSJeff Roberson static void ino_trunc(ino_t, off_t);
131113db2ddSJeff Roberson static void ino_decr(ino_t);
132113db2ddSJeff Roberson static void ino_adjust(struct suj_ino *);
133113db2ddSJeff Roberson static void ino_build(struct suj_ino *);
134113db2ddSJeff Roberson static int blk_isfree(ufs2_daddr_t);
1357703a6ffSScott Long static void initsuj(void);
136113db2ddSJeff Roberson
137113db2ddSJeff Roberson static void *
errmalloc(size_t n)138113db2ddSJeff Roberson errmalloc(size_t n)
139113db2ddSJeff Roberson {
140113db2ddSJeff Roberson void *a;
141113db2ddSJeff Roberson
14281fbded2SKirk McKusick a = Malloc(n);
143113db2ddSJeff Roberson if (a == NULL)
144edad6026SXin LI err(EX_OSERR, "malloc(%zu)", n);
145113db2ddSJeff Roberson return (a);
146113db2ddSJeff Roberson }
147113db2ddSJeff Roberson
148113db2ddSJeff Roberson /*
149edad6026SXin LI * When hit a fatal error in journalling check, print out
150edad6026SXin LI * the error and then offer to fallback to normal fsck.
151edad6026SXin LI */
152edad6026SXin LI static void
err_suj(const char * restrict fmt,...)153edad6026SXin LI err_suj(const char * restrict fmt, ...)
154edad6026SXin LI {
155edad6026SXin LI va_list ap;
156edad6026SXin LI
157edad6026SXin LI if (preen)
158edad6026SXin LI (void)fprintf(stdout, "%s: ", cdevname);
159edad6026SXin LI
160edad6026SXin LI va_start(ap, fmt);
161edad6026SXin LI (void)vfprintf(stdout, fmt, ap);
162edad6026SXin LI va_end(ap);
163edad6026SXin LI
164edad6026SXin LI longjmp(jmpbuf, -1);
165edad6026SXin LI }
166edad6026SXin LI
167edad6026SXin LI /*
168113db2ddSJeff Roberson * Lookup a cg by number in the hash so we can keep track of which cgs
169113db2ddSJeff Roberson * need stats rebuilt.
170113db2ddSJeff Roberson */
171113db2ddSJeff Roberson static struct suj_cg *
cg_lookup(int cgx)172113db2ddSJeff Roberson cg_lookup(int cgx)
173113db2ddSJeff Roberson {
174113db2ddSJeff Roberson struct cghd *hd;
175113db2ddSJeff Roberson struct suj_cg *sc;
1765cc52631SKirk McKusick struct bufarea *cgbp;
177113db2ddSJeff Roberson
178edad6026SXin LI if (cgx < 0 || cgx >= fs->fs_ncg)
179edad6026SXin LI err_suj("Bad cg number %d\n", cgx);
180113db2ddSJeff Roberson if (lastcg && lastcg->sc_cgx == cgx)
181113db2ddSJeff Roberson return (lastcg);
1825cc52631SKirk McKusick cgbp = cglookup(cgx);
18340647558SChuck Silvers if (!check_cgmagic(cgx, cgbp))
1845cc52631SKirk McKusick err_suj("UNABLE TO REBUILD CYLINDER GROUP %d", cgx);
1855cc52631SKirk McKusick hd = &cghash[HASH(cgx)];
186113db2ddSJeff Roberson LIST_FOREACH(sc, hd, sc_next)
187113db2ddSJeff Roberson if (sc->sc_cgx == cgx) {
1885cc52631SKirk McKusick sc->sc_cgbp = cgbp;
1895cc52631SKirk McKusick sc->sc_cgp = sc->sc_cgbp->b_un.b_cg;
190113db2ddSJeff Roberson lastcg = sc;
191113db2ddSJeff Roberson return (sc);
192113db2ddSJeff Roberson }
193113db2ddSJeff Roberson sc = errmalloc(sizeof(*sc));
194113db2ddSJeff Roberson bzero(sc, sizeof(*sc));
1955cc52631SKirk McKusick sc->sc_cgbp = cgbp;
1965cc52631SKirk McKusick sc->sc_cgp = sc->sc_cgbp->b_un.b_cg;
197113db2ddSJeff Roberson sc->sc_cgx = cgx;
198113db2ddSJeff Roberson LIST_INSERT_HEAD(hd, sc, sc_next);
199113db2ddSJeff Roberson return (sc);
200113db2ddSJeff Roberson }
201113db2ddSJeff Roberson
202113db2ddSJeff Roberson /*
203113db2ddSJeff Roberson * Lookup an inode number in the hash and allocate a suj_ino if it does
204113db2ddSJeff Roberson * not exist.
205113db2ddSJeff Roberson */
206113db2ddSJeff Roberson static struct suj_ino *
ino_lookup(ino_t ino,int creat)207113db2ddSJeff Roberson ino_lookup(ino_t ino, int creat)
208113db2ddSJeff Roberson {
209113db2ddSJeff Roberson struct suj_ino *sino;
210113db2ddSJeff Roberson struct inohd *hd;
211113db2ddSJeff Roberson struct suj_cg *sc;
212113db2ddSJeff Roberson
213113db2ddSJeff Roberson sc = cg_lookup(ino_to_cg(fs, ino));
214113db2ddSJeff Roberson if (sc->sc_lastino && sc->sc_lastino->si_ino == ino)
215113db2ddSJeff Roberson return (sc->sc_lastino);
2165cc52631SKirk McKusick hd = &sc->sc_inohash[HASH(ino)];
217113db2ddSJeff Roberson LIST_FOREACH(sino, hd, si_next)
218113db2ddSJeff Roberson if (sino->si_ino == ino)
219113db2ddSJeff Roberson return (sino);
220113db2ddSJeff Roberson if (creat == 0)
221113db2ddSJeff Roberson return (NULL);
222113db2ddSJeff Roberson sino = errmalloc(sizeof(*sino));
223113db2ddSJeff Roberson bzero(sino, sizeof(*sino));
224113db2ddSJeff Roberson sino->si_ino = ino;
225113db2ddSJeff Roberson TAILQ_INIT(&sino->si_recs);
226113db2ddSJeff Roberson TAILQ_INIT(&sino->si_newrecs);
227113db2ddSJeff Roberson TAILQ_INIT(&sino->si_movs);
228113db2ddSJeff Roberson LIST_INSERT_HEAD(hd, sino, si_next);
229113db2ddSJeff Roberson
230113db2ddSJeff Roberson return (sino);
231113db2ddSJeff Roberson }
232113db2ddSJeff Roberson
233113db2ddSJeff Roberson /*
234113db2ddSJeff Roberson * Lookup a block number in the hash and allocate a suj_blk if it does
235113db2ddSJeff Roberson * not exist.
236113db2ddSJeff Roberson */
237113db2ddSJeff Roberson static struct suj_blk *
blk_lookup(ufs2_daddr_t blk,int creat)238113db2ddSJeff Roberson blk_lookup(ufs2_daddr_t blk, int creat)
239113db2ddSJeff Roberson {
240113db2ddSJeff Roberson struct suj_blk *sblk;
241113db2ddSJeff Roberson struct suj_cg *sc;
242113db2ddSJeff Roberson struct blkhd *hd;
243113db2ddSJeff Roberson
244113db2ddSJeff Roberson sc = cg_lookup(dtog(fs, blk));
245113db2ddSJeff Roberson if (sc->sc_lastblk && sc->sc_lastblk->sb_blk == blk)
246113db2ddSJeff Roberson return (sc->sc_lastblk);
2475cc52631SKirk McKusick hd = &sc->sc_blkhash[HASH(fragstoblks(fs, blk))];
248113db2ddSJeff Roberson LIST_FOREACH(sblk, hd, sb_next)
249113db2ddSJeff Roberson if (sblk->sb_blk == blk)
250113db2ddSJeff Roberson return (sblk);
251113db2ddSJeff Roberson if (creat == 0)
252113db2ddSJeff Roberson return (NULL);
253113db2ddSJeff Roberson sblk = errmalloc(sizeof(*sblk));
254113db2ddSJeff Roberson bzero(sblk, sizeof(*sblk));
255113db2ddSJeff Roberson sblk->sb_blk = blk;
256113db2ddSJeff Roberson TAILQ_INIT(&sblk->sb_recs);
257113db2ddSJeff Roberson LIST_INSERT_HEAD(hd, sblk, sb_next);
258113db2ddSJeff Roberson
259113db2ddSJeff Roberson return (sblk);
260113db2ddSJeff Roberson }
261113db2ddSJeff Roberson
262113db2ddSJeff Roberson static int
blk_overlaps(struct jblkrec * brec,ufs2_daddr_t start,int frags)263113db2ddSJeff Roberson blk_overlaps(struct jblkrec *brec, ufs2_daddr_t start, int frags)
264113db2ddSJeff Roberson {
265113db2ddSJeff Roberson ufs2_daddr_t bstart;
266113db2ddSJeff Roberson ufs2_daddr_t bend;
267113db2ddSJeff Roberson ufs2_daddr_t end;
268113db2ddSJeff Roberson
269113db2ddSJeff Roberson end = start + frags;
270113db2ddSJeff Roberson bstart = brec->jb_blkno + brec->jb_oldfrags;
271113db2ddSJeff Roberson bend = bstart + brec->jb_frags;
272113db2ddSJeff Roberson if (start < bend && end > bstart)
273113db2ddSJeff Roberson return (1);
274113db2ddSJeff Roberson return (0);
275113db2ddSJeff Roberson }
276113db2ddSJeff Roberson
277113db2ddSJeff Roberson static int
blk_equals(struct jblkrec * brec,ino_t ino,ufs_lbn_t lbn,ufs2_daddr_t start,int frags)278113db2ddSJeff Roberson blk_equals(struct jblkrec *brec, ino_t ino, ufs_lbn_t lbn, ufs2_daddr_t start,
279113db2ddSJeff Roberson int frags)
280113db2ddSJeff Roberson {
281113db2ddSJeff Roberson
282113db2ddSJeff Roberson if (brec->jb_ino != ino || brec->jb_lbn != lbn)
283113db2ddSJeff Roberson return (0);
284113db2ddSJeff Roberson if (brec->jb_blkno + brec->jb_oldfrags != start)
285113db2ddSJeff Roberson return (0);
2862db62a6bSJeff Roberson if (brec->jb_frags < frags)
287113db2ddSJeff Roberson return (0);
288113db2ddSJeff Roberson return (1);
289113db2ddSJeff Roberson }
290113db2ddSJeff Roberson
291113db2ddSJeff Roberson static void
blk_setmask(struct jblkrec * brec,int * mask)292113db2ddSJeff Roberson blk_setmask(struct jblkrec *brec, int *mask)
293113db2ddSJeff Roberson {
294113db2ddSJeff Roberson int i;
295113db2ddSJeff Roberson
296113db2ddSJeff Roberson for (i = brec->jb_oldfrags; i < brec->jb_oldfrags + brec->jb_frags; i++)
297113db2ddSJeff Roberson *mask |= 1 << i;
298113db2ddSJeff Roberson }
299113db2ddSJeff Roberson
300113db2ddSJeff Roberson /*
301113db2ddSJeff Roberson * Determine whether a given block has been reallocated to a new location.
302113db2ddSJeff Roberson * Returns a mask of overlapping bits if any frags have been reused or
303113db2ddSJeff Roberson * zero if the block has not been re-used and the contents can be trusted.
304113db2ddSJeff Roberson *
305113db2ddSJeff Roberson * This is used to ensure that an orphaned pointer due to truncate is safe
306113db2ddSJeff Roberson * to be freed. The mask value can be used to free partial blocks.
307113db2ddSJeff Roberson */
308113db2ddSJeff Roberson static int
blk_freemask(ufs2_daddr_t blk,ino_t ino,ufs_lbn_t lbn,int frags)309113db2ddSJeff Roberson blk_freemask(ufs2_daddr_t blk, ino_t ino, ufs_lbn_t lbn, int frags)
310113db2ddSJeff Roberson {
311113db2ddSJeff Roberson struct suj_blk *sblk;
312113db2ddSJeff Roberson struct suj_rec *srec;
313113db2ddSJeff Roberson struct jblkrec *brec;
314113db2ddSJeff Roberson int mask;
315113db2ddSJeff Roberson int off;
316113db2ddSJeff Roberson
317113db2ddSJeff Roberson /*
318113db2ddSJeff Roberson * To be certain we're not freeing a reallocated block we lookup
319113db2ddSJeff Roberson * this block in the blk hash and see if there is an allocation
320113db2ddSJeff Roberson * journal record that overlaps with any fragments in the block
321460ed610SKirk McKusick * we're concerned with. If any fragments have been reallocated
322113db2ddSJeff Roberson * the block has already been freed and re-used for another purpose.
323113db2ddSJeff Roberson */
324113db2ddSJeff Roberson mask = 0;
325113db2ddSJeff Roberson sblk = blk_lookup(blknum(fs, blk), 0);
326113db2ddSJeff Roberson if (sblk == NULL)
327113db2ddSJeff Roberson return (0);
328113db2ddSJeff Roberson off = blk - sblk->sb_blk;
329113db2ddSJeff Roberson TAILQ_FOREACH(srec, &sblk->sb_recs, sr_next) {
330113db2ddSJeff Roberson brec = (struct jblkrec *)srec->sr_rec;
331113db2ddSJeff Roberson /*
332113db2ddSJeff Roberson * If the block overlaps but does not match
333113db2ddSJeff Roberson * exactly this record refers to the current
334113db2ddSJeff Roberson * location.
335113db2ddSJeff Roberson */
336113db2ddSJeff Roberson if (blk_overlaps(brec, blk, frags) == 0)
337113db2ddSJeff Roberson continue;
338113db2ddSJeff Roberson if (blk_equals(brec, ino, lbn, blk, frags) == 1)
339113db2ddSJeff Roberson mask = 0;
340113db2ddSJeff Roberson else
341113db2ddSJeff Roberson blk_setmask(brec, &mask);
342113db2ddSJeff Roberson }
343113db2ddSJeff Roberson if (debug)
344113db2ddSJeff Roberson printf("blk_freemask: blk %jd sblk %jd off %d mask 0x%X\n",
345113db2ddSJeff Roberson blk, sblk->sb_blk, off, mask);
346113db2ddSJeff Roberson return (mask >> off);
347113db2ddSJeff Roberson }
348113db2ddSJeff Roberson
349113db2ddSJeff Roberson /*
350113db2ddSJeff Roberson * Determine whether it is safe to follow an indirect. It is not safe
351113db2ddSJeff Roberson * if any part of the indirect has been reallocated or the last journal
352113db2ddSJeff Roberson * entry was an allocation. Just allocated indirects may not have valid
353113db2ddSJeff Roberson * pointers yet and all of their children will have their own records.
354113db2ddSJeff Roberson * It is also not safe to follow an indirect if the cg bitmap has been
355113db2ddSJeff Roberson * cleared as a new allocation may write to the block prior to the journal
356113db2ddSJeff Roberson * being written.
357113db2ddSJeff Roberson *
358113db2ddSJeff Roberson * Returns 1 if it's safe to follow the indirect and 0 otherwise.
359113db2ddSJeff Roberson */
360113db2ddSJeff Roberson static int
blk_isindir(ufs2_daddr_t blk,ino_t ino,ufs_lbn_t lbn)361113db2ddSJeff Roberson blk_isindir(ufs2_daddr_t blk, ino_t ino, ufs_lbn_t lbn)
362113db2ddSJeff Roberson {
363113db2ddSJeff Roberson struct suj_blk *sblk;
364113db2ddSJeff Roberson struct jblkrec *brec;
365113db2ddSJeff Roberson
366113db2ddSJeff Roberson sblk = blk_lookup(blk, 0);
367113db2ddSJeff Roberson if (sblk == NULL)
368113db2ddSJeff Roberson return (1);
369113db2ddSJeff Roberson if (TAILQ_EMPTY(&sblk->sb_recs))
370113db2ddSJeff Roberson return (1);
371113db2ddSJeff Roberson brec = (struct jblkrec *)TAILQ_LAST(&sblk->sb_recs, srechd)->sr_rec;
372113db2ddSJeff Roberson if (blk_equals(brec, ino, lbn, blk, fs->fs_frag))
373113db2ddSJeff Roberson if (brec->jb_op == JOP_FREEBLK)
374113db2ddSJeff Roberson return (!blk_isfree(blk));
375113db2ddSJeff Roberson return (0);
376113db2ddSJeff Roberson }
377113db2ddSJeff Roberson
378113db2ddSJeff Roberson /*
379460ed610SKirk McKusick * Check to see if the requested block is available.
380460ed610SKirk McKusick * We can just check in the cylinder-group maps as
381460ed610SKirk McKusick * they will only have usable blocks in them.
382460ed610SKirk McKusick */
383460ed610SKirk McKusick ufs2_daddr_t
suj_checkblkavail(ufs2_daddr_t blkno,long frags)384e5d0d1c5SKirk McKusick suj_checkblkavail(ufs2_daddr_t blkno, long frags)
385460ed610SKirk McKusick {
386460ed610SKirk McKusick struct bufarea *cgbp;
387460ed610SKirk McKusick struct cg *cgp;
388460ed610SKirk McKusick ufs2_daddr_t j, k, baseblk;
389460ed610SKirk McKusick long cg;
390460ed610SKirk McKusick
39152f97104SKirk McKusick if ((u_int64_t)blkno > sblock.fs_size)
39252f97104SKirk McKusick return (0);
393460ed610SKirk McKusick cg = dtog(&sblock, blkno);
394460ed610SKirk McKusick cgbp = cglookup(cg);
395460ed610SKirk McKusick cgp = cgbp->b_un.b_cg;
39640647558SChuck Silvers if (!check_cgmagic(cg, cgbp))
397460ed610SKirk McKusick return (-((cg + 1) * sblock.fs_fpg - sblock.fs_frag));
398460ed610SKirk McKusick baseblk = dtogd(&sblock, blkno);
399460ed610SKirk McKusick for (j = 0; j <= sblock.fs_frag - frags; j++) {
400460ed610SKirk McKusick if (!isset(cg_blksfree(cgp), baseblk + j))
401460ed610SKirk McKusick continue;
402460ed610SKirk McKusick for (k = 1; k < frags; k++)
403460ed610SKirk McKusick if (!isset(cg_blksfree(cgp), baseblk + j + k))
404460ed610SKirk McKusick break;
405460ed610SKirk McKusick if (k < frags) {
406460ed610SKirk McKusick j += k;
407460ed610SKirk McKusick continue;
408460ed610SKirk McKusick }
409460ed610SKirk McKusick for (k = 0; k < frags; k++)
410460ed610SKirk McKusick clrbit(cg_blksfree(cgp), baseblk + j + k);
411460ed610SKirk McKusick n_blks += frags;
412460ed610SKirk McKusick if (frags == sblock.fs_frag)
413460ed610SKirk McKusick cgp->cg_cs.cs_nbfree--;
414460ed610SKirk McKusick else
415460ed610SKirk McKusick cgp->cg_cs.cs_nffree -= frags;
416460ed610SKirk McKusick cgdirty(cgbp);
417460ed610SKirk McKusick return ((cg * sblock.fs_fpg) + baseblk + j);
418460ed610SKirk McKusick }
419460ed610SKirk McKusick return (0);
420460ed610SKirk McKusick }
421460ed610SKirk McKusick
422460ed610SKirk McKusick /*
423113db2ddSJeff Roberson * Clear an inode from the cg bitmap. If the inode was already clear return
424113db2ddSJeff Roberson * 0 so the caller knows it does not have to check the inode contents.
425113db2ddSJeff Roberson */
426113db2ddSJeff Roberson static int
ino_free(ino_t ino,int mode)427113db2ddSJeff Roberson ino_free(ino_t ino, int mode)
428113db2ddSJeff Roberson {
429113db2ddSJeff Roberson struct suj_cg *sc;
430113db2ddSJeff Roberson uint8_t *inosused;
431113db2ddSJeff Roberson struct cg *cgp;
432113db2ddSJeff Roberson int cg;
433113db2ddSJeff Roberson
434113db2ddSJeff Roberson cg = ino_to_cg(fs, ino);
435113db2ddSJeff Roberson ino = ino % fs->fs_ipg;
436113db2ddSJeff Roberson sc = cg_lookup(cg);
437113db2ddSJeff Roberson cgp = sc->sc_cgp;
438113db2ddSJeff Roberson inosused = cg_inosused(cgp);
439113db2ddSJeff Roberson /*
440113db2ddSJeff Roberson * The bitmap may never have made it to the disk so we have to
441113db2ddSJeff Roberson * conditionally clear. We can avoid writing the cg in this case.
442113db2ddSJeff Roberson */
443113db2ddSJeff Roberson if (isclr(inosused, ino))
444113db2ddSJeff Roberson return (0);
445113db2ddSJeff Roberson freeinos++;
446113db2ddSJeff Roberson clrbit(inosused, ino);
447113db2ddSJeff Roberson if (ino < cgp->cg_irotor)
448113db2ddSJeff Roberson cgp->cg_irotor = ino;
449113db2ddSJeff Roberson cgp->cg_cs.cs_nifree++;
450d8ba45e2SEd Maste if ((mode & IFMT) == IFDIR) {
451113db2ddSJeff Roberson freedir++;
452113db2ddSJeff Roberson cgp->cg_cs.cs_ndir--;
453113db2ddSJeff Roberson }
4545cc52631SKirk McKusick cgdirty(sc->sc_cgbp);
455113db2ddSJeff Roberson
456113db2ddSJeff Roberson return (1);
457113db2ddSJeff Roberson }
458113db2ddSJeff Roberson
459113db2ddSJeff Roberson /*
460113db2ddSJeff Roberson * Free 'frags' frags starting at filesystem block 'bno' skipping any frags
461113db2ddSJeff Roberson * set in the mask.
462113db2ddSJeff Roberson */
463113db2ddSJeff Roberson static void
blk_free(ino_t ino,ufs2_daddr_t bno,int mask,int frags)464460ed610SKirk McKusick blk_free(ino_t ino, ufs2_daddr_t bno, int mask, int frags)
465113db2ddSJeff Roberson {
466113db2ddSJeff Roberson ufs1_daddr_t fragno, cgbno;
467113db2ddSJeff Roberson struct suj_cg *sc;
468113db2ddSJeff Roberson struct cg *cgp;
469113db2ddSJeff Roberson int i, cg;
470113db2ddSJeff Roberson uint8_t *blksfree;
471113db2ddSJeff Roberson
472113db2ddSJeff Roberson if (debug)
4732db62a6bSJeff Roberson printf("Freeing %d frags at blk %jd mask 0x%x\n",
4742db62a6bSJeff Roberson frags, bno, mask);
475460ed610SKirk McKusick /*
476460ed610SKirk McKusick * Check to see if the block needs to be claimed by a snapshot.
477460ed610SKirk McKusick * If wanted, the snapshot references it. Otherwise we free it.
478460ed610SKirk McKusick */
479460ed610SKirk McKusick if (snapblkfree(fs, bno, lfragtosize(fs, frags), ino,
480460ed610SKirk McKusick suj_checkblkavail))
481460ed610SKirk McKusick return;
482113db2ddSJeff Roberson cg = dtog(fs, bno);
483113db2ddSJeff Roberson sc = cg_lookup(cg);
484113db2ddSJeff Roberson cgp = sc->sc_cgp;
485113db2ddSJeff Roberson cgbno = dtogd(fs, bno);
486113db2ddSJeff Roberson blksfree = cg_blksfree(cgp);
487113db2ddSJeff Roberson
488113db2ddSJeff Roberson /*
489113db2ddSJeff Roberson * If it's not allocated we only wrote the journal entry
490113db2ddSJeff Roberson * and never the bitmaps. Here we unconditionally clear and
491113db2ddSJeff Roberson * resolve the cg summary later.
492113db2ddSJeff Roberson */
493113db2ddSJeff Roberson if (frags == fs->fs_frag && mask == 0) {
494113db2ddSJeff Roberson fragno = fragstoblks(fs, cgbno);
495113db2ddSJeff Roberson ffs_setblock(fs, blksfree, fragno);
496113db2ddSJeff Roberson freeblocks++;
497113db2ddSJeff Roberson } else {
498113db2ddSJeff Roberson /*
499113db2ddSJeff Roberson * deallocate the fragment
500113db2ddSJeff Roberson */
501113db2ddSJeff Roberson for (i = 0; i < frags; i++)
502239597e0SKirk McKusick if ((mask & (1 << i)) == 0 &&
503239597e0SKirk McKusick isclr(blksfree, cgbno +i)) {
504113db2ddSJeff Roberson freefrags++;
505113db2ddSJeff Roberson setbit(blksfree, cgbno + i);
506113db2ddSJeff Roberson }
507113db2ddSJeff Roberson }
5085cc52631SKirk McKusick cgdirty(sc->sc_cgbp);
509113db2ddSJeff Roberson }
510113db2ddSJeff Roberson
511113db2ddSJeff Roberson /*
512113db2ddSJeff Roberson * Returns 1 if the whole block starting at 'bno' is marked free and 0
513113db2ddSJeff Roberson * otherwise.
514113db2ddSJeff Roberson */
515113db2ddSJeff Roberson static int
blk_isfree(ufs2_daddr_t bno)516113db2ddSJeff Roberson blk_isfree(ufs2_daddr_t bno)
517113db2ddSJeff Roberson {
518113db2ddSJeff Roberson struct suj_cg *sc;
519113db2ddSJeff Roberson
520113db2ddSJeff Roberson sc = cg_lookup(dtog(fs, bno));
521113db2ddSJeff Roberson return ffs_isblock(fs, cg_blksfree(sc->sc_cgp), dtogd(fs, bno));
522113db2ddSJeff Roberson }
523113db2ddSJeff Roberson
524113db2ddSJeff Roberson /*
525113db2ddSJeff Roberson * Determine whether a block exists at a particular lbn in an inode.
526113db2ddSJeff Roberson * Returns 1 if found, 0 if not. lbn may be negative for indirects
527113db2ddSJeff Roberson * or ext blocks.
528113db2ddSJeff Roberson */
529113db2ddSJeff Roberson static int
blk_isat(ino_t ino,ufs_lbn_t lbn,ufs2_daddr_t blk,int * frags)530113db2ddSJeff Roberson blk_isat(ino_t ino, ufs_lbn_t lbn, ufs2_daddr_t blk, int *frags)
531113db2ddSJeff Roberson {
5325cc52631SKirk McKusick struct inode ip;
5335cc52631SKirk McKusick union dinode *dp;
534113db2ddSJeff Roberson ufs2_daddr_t nblk;
535113db2ddSJeff Roberson
5365cc52631SKirk McKusick ginode(ino, &ip);
5375cc52631SKirk McKusick dp = ip.i_dp;
5385cc52631SKirk McKusick if (DIP(dp, di_nlink) == 0 || DIP(dp, di_mode) == 0) {
5395cc52631SKirk McKusick irelse(&ip);
540113db2ddSJeff Roberson return (0);
5415cc52631SKirk McKusick }
5425cc52631SKirk McKusick nblk = ino_blkatoff(dp, ino, lbn, frags, NULL);
5435cc52631SKirk McKusick irelse(&ip);
544113db2ddSJeff Roberson return (nblk == blk);
545113db2ddSJeff Roberson }
546113db2ddSJeff Roberson
547113db2ddSJeff Roberson /*
54824d37c1eSJeff Roberson * Clear the directory entry at diroff that should point to child. Minimal
54924d37c1eSJeff Roberson * checking is done and it is assumed that this path was verified with isat.
55024d37c1eSJeff Roberson */
55124d37c1eSJeff Roberson static void
ino_clrat(ino_t parent,off_t diroff,ino_t child)55224d37c1eSJeff Roberson ino_clrat(ino_t parent, off_t diroff, ino_t child)
55324d37c1eSJeff Roberson {
55424d37c1eSJeff Roberson union dinode *dip;
55524d37c1eSJeff Roberson struct direct *dp;
5565cc52631SKirk McKusick struct inode ip;
55724d37c1eSJeff Roberson ufs2_daddr_t blk;
5585cc52631SKirk McKusick struct bufarea *bp;
55924d37c1eSJeff Roberson ufs_lbn_t lbn;
56024d37c1eSJeff Roberson int blksize;
56124d37c1eSJeff Roberson int frags;
56224d37c1eSJeff Roberson int doff;
56324d37c1eSJeff Roberson
56424d37c1eSJeff Roberson if (debug)
565623d7cb6SMatthew D Fleming printf("Clearing inode %ju from parent %ju at offset %jd\n",
566623d7cb6SMatthew D Fleming (uintmax_t)child, (uintmax_t)parent, diroff);
56724d37c1eSJeff Roberson
56824d37c1eSJeff Roberson lbn = lblkno(fs, diroff);
56924d37c1eSJeff Roberson doff = blkoff(fs, diroff);
5705cc52631SKirk McKusick ginode(parent, &ip);
5715cc52631SKirk McKusick dip = ip.i_dp;
5725cc52631SKirk McKusick blk = ino_blkatoff(dip, parent, lbn, &frags, NULL);
57324d37c1eSJeff Roberson blksize = sblksize(fs, DIP(dip, di_size), lbn);
5745cc52631SKirk McKusick irelse(&ip);
5755cc52631SKirk McKusick bp = getdatablk(blk, blksize, BT_DIRDATA);
5765cc52631SKirk McKusick if (bp->b_errs != 0)
5775cc52631SKirk McKusick err_suj("ino_clrat: UNRECOVERABLE I/O ERROR");
5785cc52631SKirk McKusick dp = (struct direct *)&bp->b_un.b_buf[doff];
57924d37c1eSJeff Roberson if (dp->d_ino != child)
580623d7cb6SMatthew D Fleming errx(1, "Inode %ju does not exist in %ju at %jd",
581623d7cb6SMatthew D Fleming (uintmax_t)child, (uintmax_t)parent, diroff);
58224d37c1eSJeff Roberson dp->d_ino = 0;
5835cc52631SKirk McKusick dirty(bp);
5845cc52631SKirk McKusick brelse(bp);
58524d37c1eSJeff Roberson /*
58624d37c1eSJeff Roberson * The actual .. reference count will already have been removed
58724d37c1eSJeff Roberson * from the parent by the .. remref record.
58824d37c1eSJeff Roberson */
58924d37c1eSJeff Roberson }
59024d37c1eSJeff Roberson
59124d37c1eSJeff Roberson /*
592113db2ddSJeff Roberson * Determines whether a pointer to an inode exists within a directory
593113db2ddSJeff Roberson * at a specified offset. Returns the mode of the found entry.
594113db2ddSJeff Roberson */
595113db2ddSJeff Roberson static int
ino_isat(ino_t parent,off_t diroff,ino_t child,int * mode,int * isdot)596113db2ddSJeff Roberson ino_isat(ino_t parent, off_t diroff, ino_t child, int *mode, int *isdot)
597113db2ddSJeff Roberson {
5985cc52631SKirk McKusick struct inode ip;
599113db2ddSJeff Roberson union dinode *dip;
6005cc52631SKirk McKusick struct bufarea *bp;
601113db2ddSJeff Roberson struct direct *dp;
602113db2ddSJeff Roberson ufs2_daddr_t blk;
603113db2ddSJeff Roberson ufs_lbn_t lbn;
604113db2ddSJeff Roberson int blksize;
605113db2ddSJeff Roberson int frags;
606113db2ddSJeff Roberson int dpoff;
607113db2ddSJeff Roberson int doff;
608113db2ddSJeff Roberson
609113db2ddSJeff Roberson *isdot = 0;
6105cc52631SKirk McKusick ginode(parent, &ip);
6115cc52631SKirk McKusick dip = ip.i_dp;
612113db2ddSJeff Roberson *mode = DIP(dip, di_mode);
613d8ba45e2SEd Maste if ((*mode & IFMT) != IFDIR) {
614113db2ddSJeff Roberson if (debug) {
615113db2ddSJeff Roberson /*
616113db2ddSJeff Roberson * This can happen if the parent inode
617113db2ddSJeff Roberson * was reallocated.
618113db2ddSJeff Roberson */
619113db2ddSJeff Roberson if (*mode != 0)
620623d7cb6SMatthew D Fleming printf("Directory %ju has bad mode %o\n",
621623d7cb6SMatthew D Fleming (uintmax_t)parent, *mode);
622113db2ddSJeff Roberson else
623623d7cb6SMatthew D Fleming printf("Directory %ju has zero mode\n",
624623d7cb6SMatthew D Fleming (uintmax_t)parent);
625113db2ddSJeff Roberson }
6265cc52631SKirk McKusick irelse(&ip);
627113db2ddSJeff Roberson return (0);
628113db2ddSJeff Roberson }
629113db2ddSJeff Roberson lbn = lblkno(fs, diroff);
630113db2ddSJeff Roberson doff = blkoff(fs, diroff);
631113db2ddSJeff Roberson blksize = sblksize(fs, DIP(dip, di_size), lbn);
632113db2ddSJeff Roberson if (diroff + DIRECTSIZ(1) > DIP(dip, di_size) || doff >= blksize) {
633113db2ddSJeff Roberson if (debug)
634623d7cb6SMatthew D Fleming printf("ino %ju absent from %ju due to offset %jd"
635113db2ddSJeff Roberson " exceeding size %jd\n",
636623d7cb6SMatthew D Fleming (uintmax_t)child, (uintmax_t)parent, diroff,
637623d7cb6SMatthew D Fleming DIP(dip, di_size));
6385cc52631SKirk McKusick irelse(&ip);
639113db2ddSJeff Roberson return (0);
640113db2ddSJeff Roberson }
6415cc52631SKirk McKusick blk = ino_blkatoff(dip, parent, lbn, &frags, NULL);
6425cc52631SKirk McKusick irelse(&ip);
643113db2ddSJeff Roberson if (blk <= 0) {
644113db2ddSJeff Roberson if (debug)
645623d7cb6SMatthew D Fleming printf("Sparse directory %ju", (uintmax_t)parent);
646113db2ddSJeff Roberson return (0);
647113db2ddSJeff Roberson }
6485cc52631SKirk McKusick bp = getdatablk(blk, blksize, BT_DIRDATA);
6495cc52631SKirk McKusick if (bp->b_errs != 0)
6505cc52631SKirk McKusick err_suj("ino_isat: UNRECOVERABLE I/O ERROR");
651113db2ddSJeff Roberson /*
652113db2ddSJeff Roberson * Walk through the records from the start of the block to be
653113db2ddSJeff Roberson * certain we hit a valid record and not some junk in the middle
654113db2ddSJeff Roberson * of a file name. Stop when we reach or pass the expected offset.
655113db2ddSJeff Roberson */
656f32d2926SPedro F. Giffuni dpoff = rounddown(doff, DIRBLKSIZ);
657113db2ddSJeff Roberson do {
6585cc52631SKirk McKusick dp = (struct direct *)&bp->b_un.b_buf[dpoff];
659113db2ddSJeff Roberson if (dpoff == doff)
660113db2ddSJeff Roberson break;
661113db2ddSJeff Roberson if (dp->d_reclen == 0)
662113db2ddSJeff Roberson break;
663113db2ddSJeff Roberson dpoff += dp->d_reclen;
664113db2ddSJeff Roberson } while (dpoff <= doff);
665113db2ddSJeff Roberson if (dpoff > fs->fs_bsize)
666623d7cb6SMatthew D Fleming err_suj("Corrupt directory block in dir ino %ju\n",
667623d7cb6SMatthew D Fleming (uintmax_t)parent);
668113db2ddSJeff Roberson /* Not found. */
669113db2ddSJeff Roberson if (dpoff != doff) {
670113db2ddSJeff Roberson if (debug)
671623d7cb6SMatthew D Fleming printf("ino %ju not found in %ju, lbn %jd, dpoff %d\n",
672623d7cb6SMatthew D Fleming (uintmax_t)child, (uintmax_t)parent, lbn, dpoff);
6735cc52631SKirk McKusick brelse(bp);
674113db2ddSJeff Roberson return (0);
675113db2ddSJeff Roberson }
676113db2ddSJeff Roberson /*
677113db2ddSJeff Roberson * We found the item in question. Record the mode and whether it's
678113db2ddSJeff Roberson * a . or .. link for the caller.
679113db2ddSJeff Roberson */
680113db2ddSJeff Roberson if (dp->d_ino == child) {
681113db2ddSJeff Roberson if (child == parent)
682113db2ddSJeff Roberson *isdot = 1;
683113db2ddSJeff Roberson else if (dp->d_namlen == 2 &&
684113db2ddSJeff Roberson dp->d_name[0] == '.' && dp->d_name[1] == '.')
685113db2ddSJeff Roberson *isdot = 1;
686113db2ddSJeff Roberson *mode = DTTOIF(dp->d_type);
6875cc52631SKirk McKusick brelse(bp);
688113db2ddSJeff Roberson return (1);
689113db2ddSJeff Roberson }
690113db2ddSJeff Roberson if (debug)
691623d7cb6SMatthew D Fleming printf("ino %ju doesn't match dirent ino %ju in parent %ju\n",
692623d7cb6SMatthew D Fleming (uintmax_t)child, (uintmax_t)dp->d_ino, (uintmax_t)parent);
6935cc52631SKirk McKusick brelse(bp);
694113db2ddSJeff Roberson return (0);
695113db2ddSJeff Roberson }
696113db2ddSJeff Roberson
697113db2ddSJeff Roberson #define VISIT_INDIR 0x0001
698113db2ddSJeff Roberson #define VISIT_EXT 0x0002
699113db2ddSJeff Roberson #define VISIT_ROOT 0x0004 /* Operation came via root & valid pointers. */
700113db2ddSJeff Roberson
701113db2ddSJeff Roberson /*
702113db2ddSJeff Roberson * Read an indirect level which may or may not be linked into an inode.
703113db2ddSJeff Roberson */
704113db2ddSJeff Roberson static void
indir_visit(ino_t ino,ufs_lbn_t lbn,ufs2_daddr_t blk,uint64_t * frags,ino_visitor visitor,int flags)705113db2ddSJeff Roberson indir_visit(ino_t ino, ufs_lbn_t lbn, ufs2_daddr_t blk, uint64_t *frags,
706113db2ddSJeff Roberson ino_visitor visitor, int flags)
707113db2ddSJeff Roberson {
7085cc52631SKirk McKusick struct bufarea *bp;
709113db2ddSJeff Roberson ufs_lbn_t lbnadd;
710113db2ddSJeff Roberson ufs2_daddr_t nblk;
711113db2ddSJeff Roberson ufs_lbn_t nlbn;
712113db2ddSJeff Roberson int level;
713113db2ddSJeff Roberson int i;
714113db2ddSJeff Roberson
715113db2ddSJeff Roberson /*
716113db2ddSJeff Roberson * Don't visit indirect blocks with contents we can't trust. This
717113db2ddSJeff Roberson * should only happen when indir_visit() is called to complete a
718113db2ddSJeff Roberson * truncate that never finished and not when a pointer is found via
719113db2ddSJeff Roberson * an inode.
720113db2ddSJeff Roberson */
721113db2ddSJeff Roberson if (blk == 0)
722113db2ddSJeff Roberson return;
723113db2ddSJeff Roberson level = lbn_level(lbn);
724113db2ddSJeff Roberson if (level == -1)
725edad6026SXin LI err_suj("Invalid level for lbn %jd\n", lbn);
726113db2ddSJeff Roberson if ((flags & VISIT_ROOT) == 0 && blk_isindir(blk, ino, lbn) == 0) {
727113db2ddSJeff Roberson if (debug)
728623d7cb6SMatthew D Fleming printf("blk %jd ino %ju lbn %jd(%d) is not indir.\n",
729623d7cb6SMatthew D Fleming blk, (uintmax_t)ino, lbn, level);
730113db2ddSJeff Roberson goto out;
731113db2ddSJeff Roberson }
732113db2ddSJeff Roberson lbnadd = 1;
733113db2ddSJeff Roberson for (i = level; i > 0; i--)
734113db2ddSJeff Roberson lbnadd *= NINDIR(fs);
7355cc52631SKirk McKusick bp = getdatablk(blk, fs->fs_bsize, BT_LEVEL1 + level);
7365cc52631SKirk McKusick if (bp->b_errs != 0)
737b796bfceSKirk McKusick err_suj("indir_visit: UNRECOVERABLE I/O ERROR\n");
738113db2ddSJeff Roberson for (i = 0; i < NINDIR(fs); i++) {
7395cc52631SKirk McKusick if ((nblk = IBLK(bp, i)) == 0)
740113db2ddSJeff Roberson continue;
741113db2ddSJeff Roberson if (level == 0) {
742113db2ddSJeff Roberson nlbn = -lbn + i * lbnadd;
743113db2ddSJeff Roberson (*frags) += fs->fs_frag;
744113db2ddSJeff Roberson visitor(ino, nlbn, nblk, fs->fs_frag);
745113db2ddSJeff Roberson } else {
746113db2ddSJeff Roberson nlbn = (lbn + 1) - (i * lbnadd);
747113db2ddSJeff Roberson indir_visit(ino, nlbn, nblk, frags, visitor, flags);
748113db2ddSJeff Roberson }
749113db2ddSJeff Roberson }
7505cc52631SKirk McKusick brelse(bp);
751113db2ddSJeff Roberson out:
752113db2ddSJeff Roberson if (flags & VISIT_INDIR) {
753113db2ddSJeff Roberson (*frags) += fs->fs_frag;
754113db2ddSJeff Roberson visitor(ino, lbn, blk, fs->fs_frag);
755113db2ddSJeff Roberson }
756113db2ddSJeff Roberson }
757113db2ddSJeff Roberson
758113db2ddSJeff Roberson /*
759113db2ddSJeff Roberson * Visit each block in an inode as specified by 'flags' and call a
760113db2ddSJeff Roberson * callback function. The callback may inspect or free blocks. The
761113db2ddSJeff Roberson * count of frags found according to the size in the file is returned.
762113db2ddSJeff Roberson * This is not valid for sparse files but may be used to determine
763113db2ddSJeff Roberson * the correct di_blocks for a file.
764113db2ddSJeff Roberson */
765113db2ddSJeff Roberson static uint64_t
ino_visit(union dinode * dp,ino_t ino,ino_visitor visitor,int flags)7665cc52631SKirk McKusick ino_visit(union dinode *dp, ino_t ino, ino_visitor visitor, int flags)
767113db2ddSJeff Roberson {
768113db2ddSJeff Roberson ufs_lbn_t nextlbn;
769113db2ddSJeff Roberson ufs_lbn_t tmpval;
770113db2ddSJeff Roberson ufs_lbn_t lbn;
771113db2ddSJeff Roberson uint64_t size;
772113db2ddSJeff Roberson uint64_t fragcnt;
773113db2ddSJeff Roberson int mode;
774113db2ddSJeff Roberson int frags;
775113db2ddSJeff Roberson int i;
776113db2ddSJeff Roberson
7775cc52631SKirk McKusick size = DIP(dp, di_size);
7785cc52631SKirk McKusick mode = DIP(dp, di_mode) & IFMT;
779113db2ddSJeff Roberson fragcnt = 0;
780113db2ddSJeff Roberson if ((flags & VISIT_EXT) &&
7815cc52631SKirk McKusick fs->fs_magic == FS_UFS2_MAGIC && dp->dp2.di_extsize) {
7821dc349abSEd Maste for (i = 0; i < UFS_NXADDR; i++) {
7835cc52631SKirk McKusick if (dp->dp2.di_extb[i] == 0)
784113db2ddSJeff Roberson continue;
7855cc52631SKirk McKusick frags = sblksize(fs, dp->dp2.di_extsize, i);
786113db2ddSJeff Roberson frags = numfrags(fs, frags);
787113db2ddSJeff Roberson fragcnt += frags;
7885cc52631SKirk McKusick visitor(ino, -1 - i, dp->dp2.di_extb[i], frags);
789113db2ddSJeff Roberson }
790113db2ddSJeff Roberson }
791113db2ddSJeff Roberson /* Skip datablocks for short links and devices. */
792d8ba45e2SEd Maste if (mode == IFBLK || mode == IFCHR ||
793d8ba45e2SEd Maste (mode == IFLNK && size < fs->fs_maxsymlinklen))
794113db2ddSJeff Roberson return (fragcnt);
7951dc349abSEd Maste for (i = 0; i < UFS_NDADDR; i++) {
7965cc52631SKirk McKusick if (DIP(dp, di_db[i]) == 0)
797113db2ddSJeff Roberson continue;
798113db2ddSJeff Roberson frags = sblksize(fs, size, i);
799113db2ddSJeff Roberson frags = numfrags(fs, frags);
800113db2ddSJeff Roberson fragcnt += frags;
8015cc52631SKirk McKusick visitor(ino, i, DIP(dp, di_db[i]), frags);
802113db2ddSJeff Roberson }
803113db2ddSJeff Roberson /*
804113db2ddSJeff Roberson * We know the following indirects are real as we're following
805113db2ddSJeff Roberson * real pointers to them.
806113db2ddSJeff Roberson */
807113db2ddSJeff Roberson flags |= VISIT_ROOT;
8081dc349abSEd Maste for (i = 0, tmpval = NINDIR(fs), lbn = UFS_NDADDR; i < UFS_NIADDR; i++,
809113db2ddSJeff Roberson lbn = nextlbn) {
810113db2ddSJeff Roberson nextlbn = lbn + tmpval;
811113db2ddSJeff Roberson tmpval *= NINDIR(fs);
8125cc52631SKirk McKusick if (DIP(dp, di_ib[i]) == 0)
813113db2ddSJeff Roberson continue;
8145cc52631SKirk McKusick indir_visit(ino, -lbn - i, DIP(dp, di_ib[i]), &fragcnt, visitor,
815113db2ddSJeff Roberson flags);
816113db2ddSJeff Roberson }
817113db2ddSJeff Roberson return (fragcnt);
818113db2ddSJeff Roberson }
819113db2ddSJeff Roberson
820113db2ddSJeff Roberson /*
821113db2ddSJeff Roberson * Null visitor function used when we just want to count blocks and
822113db2ddSJeff Roberson * record the lbn.
823113db2ddSJeff Roberson */
824113db2ddSJeff Roberson ufs_lbn_t visitlbn;
825113db2ddSJeff Roberson static void
null_visit(ino_t ino,ufs_lbn_t lbn,ufs2_daddr_t blk,int frags)826113db2ddSJeff Roberson null_visit(ino_t ino, ufs_lbn_t lbn, ufs2_daddr_t blk, int frags)
827113db2ddSJeff Roberson {
828113db2ddSJeff Roberson if (lbn > 0)
829113db2ddSJeff Roberson visitlbn = lbn;
830113db2ddSJeff Roberson }
831113db2ddSJeff Roberson
832113db2ddSJeff Roberson /*
833113db2ddSJeff Roberson * Recalculate di_blocks when we discover that a block allocation or
834113db2ddSJeff Roberson * free was not successfully completed. The kernel does not roll this back
835113db2ddSJeff Roberson * because it would be too expensive to compute which indirects were
836113db2ddSJeff Roberson * reachable at the time the inode was written.
837113db2ddSJeff Roberson */
838113db2ddSJeff Roberson static void
ino_adjblks(struct suj_ino * sino)839113db2ddSJeff Roberson ino_adjblks(struct suj_ino *sino)
840113db2ddSJeff Roberson {
8415cc52631SKirk McKusick struct inode ip;
8425cc52631SKirk McKusick union dinode *dp;
843113db2ddSJeff Roberson uint64_t blocks;
844113db2ddSJeff Roberson uint64_t frags;
845113db2ddSJeff Roberson off_t isize;
846113db2ddSJeff Roberson off_t size;
847113db2ddSJeff Roberson ino_t ino;
848113db2ddSJeff Roberson
849113db2ddSJeff Roberson ino = sino->si_ino;
8505cc52631SKirk McKusick ginode(ino, &ip);
8515cc52631SKirk McKusick dp = ip.i_dp;
852113db2ddSJeff Roberson /* No need to adjust zero'd inodes. */
8535cc52631SKirk McKusick if (DIP(dp, di_mode) == 0) {
8545cc52631SKirk McKusick irelse(&ip);
855113db2ddSJeff Roberson return;
8565cc52631SKirk McKusick }
857113db2ddSJeff Roberson /*
858113db2ddSJeff Roberson * Visit all blocks and count them as well as recording the last
859113db2ddSJeff Roberson * valid lbn in the file. If the file size doesn't agree with the
860113db2ddSJeff Roberson * last lbn we need to truncate to fix it. Otherwise just adjust
861113db2ddSJeff Roberson * the blocks count.
862113db2ddSJeff Roberson */
863113db2ddSJeff Roberson visitlbn = 0;
8645cc52631SKirk McKusick frags = ino_visit(dp, ino, null_visit, VISIT_INDIR | VISIT_EXT);
865113db2ddSJeff Roberson blocks = fsbtodb(fs, frags);
866113db2ddSJeff Roberson /*
867113db2ddSJeff Roberson * We assume the size and direct block list is kept coherent by
868113db2ddSJeff Roberson * softdep. For files that have extended into indirects we truncate
869113db2ddSJeff Roberson * to the size in the inode or the maximum size permitted by
870113db2ddSJeff Roberson * populated indirects.
871113db2ddSJeff Roberson */
8721dc349abSEd Maste if (visitlbn >= UFS_NDADDR) {
8735cc52631SKirk McKusick isize = DIP(dp, di_size);
874113db2ddSJeff Roberson size = lblktosize(fs, visitlbn + 1);
875113db2ddSJeff Roberson if (isize > size)
876113db2ddSJeff Roberson isize = size;
877113db2ddSJeff Roberson /* Always truncate to free any unpopulated indirects. */
8785cc52631SKirk McKusick ino_trunc(ino, isize);
8795cc52631SKirk McKusick irelse(&ip);
880113db2ddSJeff Roberson return;
881113db2ddSJeff Roberson }
8825cc52631SKirk McKusick if (blocks == DIP(dp, di_blocks)) {
8835cc52631SKirk McKusick irelse(&ip);
884113db2ddSJeff Roberson return;
8855cc52631SKirk McKusick }
886113db2ddSJeff Roberson if (debug)
887623d7cb6SMatthew D Fleming printf("ino %ju adjusting block count from %jd to %jd\n",
8885cc52631SKirk McKusick (uintmax_t)ino, DIP(dp, di_blocks), blocks);
8895cc52631SKirk McKusick DIP_SET(dp, di_blocks, blocks);
8905cc52631SKirk McKusick inodirty(&ip);
8915cc52631SKirk McKusick irelse(&ip);
892113db2ddSJeff Roberson }
893113db2ddSJeff Roberson
894113db2ddSJeff Roberson static void
blk_free_visit(ino_t ino,ufs_lbn_t lbn,ufs2_daddr_t blk,int frags)895113db2ddSJeff Roberson blk_free_visit(ino_t ino, ufs_lbn_t lbn, ufs2_daddr_t blk, int frags)
896113db2ddSJeff Roberson {
897113db2ddSJeff Roberson
898460ed610SKirk McKusick blk_free(ino, blk, blk_freemask(blk, ino, lbn, frags), frags);
899113db2ddSJeff Roberson }
900113db2ddSJeff Roberson
901113db2ddSJeff Roberson /*
902113db2ddSJeff Roberson * Free a block or tree of blocks that was previously rooted in ino at
903113db2ddSJeff Roberson * the given lbn. If the lbn is an indirect all children are freed
904113db2ddSJeff Roberson * recursively.
905113db2ddSJeff Roberson */
906113db2ddSJeff Roberson static void
blk_free_lbn(ufs2_daddr_t blk,ino_t ino,ufs_lbn_t lbn,int frags,int follow)907113db2ddSJeff Roberson blk_free_lbn(ufs2_daddr_t blk, ino_t ino, ufs_lbn_t lbn, int frags, int follow)
908113db2ddSJeff Roberson {
909113db2ddSJeff Roberson uint64_t resid;
910113db2ddSJeff Roberson int mask;
911113db2ddSJeff Roberson
912113db2ddSJeff Roberson mask = blk_freemask(blk, ino, lbn, frags);
913113db2ddSJeff Roberson resid = 0;
9141dc349abSEd Maste if (lbn <= -UFS_NDADDR && follow && mask == 0)
915113db2ddSJeff Roberson indir_visit(ino, lbn, blk, &resid, blk_free_visit, VISIT_INDIR);
916113db2ddSJeff Roberson else
917460ed610SKirk McKusick blk_free(ino, blk, mask, frags);
918113db2ddSJeff Roberson }
919113db2ddSJeff Roberson
920113db2ddSJeff Roberson static void
ino_setskip(struct suj_ino * sino,ino_t parent)921113db2ddSJeff Roberson ino_setskip(struct suj_ino *sino, ino_t parent)
922113db2ddSJeff Roberson {
923113db2ddSJeff Roberson int isdot;
924113db2ddSJeff Roberson int mode;
925113db2ddSJeff Roberson
926113db2ddSJeff Roberson if (ino_isat(sino->si_ino, DOTDOT_OFFSET, parent, &mode, &isdot))
927113db2ddSJeff Roberson sino->si_skipparent = 1;
928113db2ddSJeff Roberson }
929113db2ddSJeff Roberson
93024d37c1eSJeff Roberson static void
ino_remref(ino_t parent,ino_t child,uint64_t diroff,int isdotdot)93124d37c1eSJeff Roberson ino_remref(ino_t parent, ino_t child, uint64_t diroff, int isdotdot)
93224d37c1eSJeff Roberson {
93324d37c1eSJeff Roberson struct suj_ino *sino;
93424d37c1eSJeff Roberson struct suj_rec *srec;
93524d37c1eSJeff Roberson struct jrefrec *rrec;
93624d37c1eSJeff Roberson
93724d37c1eSJeff Roberson /*
93824d37c1eSJeff Roberson * Lookup this inode to see if we have a record for it.
93924d37c1eSJeff Roberson */
94024d37c1eSJeff Roberson sino = ino_lookup(child, 0);
94124d37c1eSJeff Roberson /*
94224d37c1eSJeff Roberson * Tell any child directories we've already removed their
94324d37c1eSJeff Roberson * parent link cnt. Don't try to adjust our link down again.
94424d37c1eSJeff Roberson */
94524d37c1eSJeff Roberson if (sino != NULL && isdotdot == 0)
94624d37c1eSJeff Roberson ino_setskip(sino, parent);
94724d37c1eSJeff Roberson /*
94824d37c1eSJeff Roberson * No valid record for this inode. Just drop the on-disk
94924d37c1eSJeff Roberson * link by one.
95024d37c1eSJeff Roberson */
95124d37c1eSJeff Roberson if (sino == NULL || sino->si_hasrecs == 0) {
95224d37c1eSJeff Roberson ino_decr(child);
95324d37c1eSJeff Roberson return;
95424d37c1eSJeff Roberson }
95524d37c1eSJeff Roberson /*
95624d37c1eSJeff Roberson * Use ino_adjust() if ino_check() has already processed this
95724d37c1eSJeff Roberson * child. If we lose the last non-dot reference to a
95824d37c1eSJeff Roberson * directory it will be discarded.
95924d37c1eSJeff Roberson */
96024d37c1eSJeff Roberson if (sino->si_linkadj) {
9615cc52631SKirk McKusick if (sino->si_nlink == 0)
9625cc52631SKirk McKusick err_suj("ino_remref: ino %ld mode 0%o about to go "
9635cc52631SKirk McKusick "negative\n", sino->si_ino, sino->si_mode);
96424d37c1eSJeff Roberson sino->si_nlink--;
96524d37c1eSJeff Roberson if (isdotdot)
96624d37c1eSJeff Roberson sino->si_dotlinks--;
96724d37c1eSJeff Roberson ino_adjust(sino);
96824d37c1eSJeff Roberson return;
96924d37c1eSJeff Roberson }
97024d37c1eSJeff Roberson /*
97124d37c1eSJeff Roberson * If we haven't yet processed this inode we need to make
97224d37c1eSJeff Roberson * sure we will successfully discover the lost path. If not
97324d37c1eSJeff Roberson * use nlinkadj to remember.
97424d37c1eSJeff Roberson */
97524d37c1eSJeff Roberson TAILQ_FOREACH(srec, &sino->si_recs, sr_next) {
97624d37c1eSJeff Roberson rrec = (struct jrefrec *)srec->sr_rec;
97724d37c1eSJeff Roberson if (rrec->jr_parent == parent &&
97824d37c1eSJeff Roberson rrec->jr_diroff == diroff)
97924d37c1eSJeff Roberson return;
98024d37c1eSJeff Roberson }
98124d37c1eSJeff Roberson sino->si_nlinkadj++;
98224d37c1eSJeff Roberson }
98324d37c1eSJeff Roberson
984113db2ddSJeff Roberson /*
985113db2ddSJeff Roberson * Free the children of a directory when the directory is discarded.
986113db2ddSJeff Roberson */
987113db2ddSJeff Roberson static void
ino_free_children(ino_t ino,ufs_lbn_t lbn,ufs2_daddr_t blk,int frags)988113db2ddSJeff Roberson ino_free_children(ino_t ino, ufs_lbn_t lbn, ufs2_daddr_t blk, int frags)
989113db2ddSJeff Roberson {
990113db2ddSJeff Roberson struct suj_ino *sino;
9915cc52631SKirk McKusick struct bufarea *bp;
992113db2ddSJeff Roberson struct direct *dp;
993113db2ddSJeff Roberson off_t diroff;
994113db2ddSJeff Roberson int skipparent;
99524d37c1eSJeff Roberson int isdotdot;
996113db2ddSJeff Roberson int dpoff;
997113db2ddSJeff Roberson int size;
998113db2ddSJeff Roberson
999113db2ddSJeff Roberson sino = ino_lookup(ino, 0);
1000113db2ddSJeff Roberson if (sino)
1001113db2ddSJeff Roberson skipparent = sino->si_skipparent;
1002113db2ddSJeff Roberson else
1003113db2ddSJeff Roberson skipparent = 0;
1004113db2ddSJeff Roberson size = lfragtosize(fs, frags);
10055cc52631SKirk McKusick bp = getdatablk(blk, size, BT_DIRDATA);
10065cc52631SKirk McKusick if (bp->b_errs != 0)
10075cc52631SKirk McKusick err_suj("ino_free_children: UNRECOVERABLE I/O ERROR");
10085cc52631SKirk McKusick dp = (struct direct *)&bp->b_un.b_buf[0];
1009113db2ddSJeff Roberson for (dpoff = 0; dpoff < size && dp->d_reclen; dpoff += dp->d_reclen) {
10105cc52631SKirk McKusick dp = (struct direct *)&bp->b_un.b_buf[dpoff];
10111dc349abSEd Maste if (dp->d_ino == 0 || dp->d_ino == UFS_WINO)
1012113db2ddSJeff Roberson continue;
1013113db2ddSJeff Roberson if (dp->d_namlen == 1 && dp->d_name[0] == '.')
1014113db2ddSJeff Roberson continue;
101524d37c1eSJeff Roberson isdotdot = dp->d_namlen == 2 && dp->d_name[0] == '.' &&
1016113db2ddSJeff Roberson dp->d_name[1] == '.';
101724d37c1eSJeff Roberson if (isdotdot && skipparent == 1)
1018113db2ddSJeff Roberson continue;
1019113db2ddSJeff Roberson if (debug)
1020623d7cb6SMatthew D Fleming printf("Directory %ju removing ino %ju name %s\n",
1021623d7cb6SMatthew D Fleming (uintmax_t)ino, (uintmax_t)dp->d_ino, dp->d_name);
1022113db2ddSJeff Roberson diroff = lblktosize(fs, lbn) + dpoff;
102324d37c1eSJeff Roberson ino_remref(ino, dp->d_ino, diroff, isdotdot);
1024113db2ddSJeff Roberson }
10255cc52631SKirk McKusick brelse(bp);
1026113db2ddSJeff Roberson }
1027113db2ddSJeff Roberson
1028113db2ddSJeff Roberson /*
1029113db2ddSJeff Roberson * Reclaim an inode, freeing all blocks and decrementing all children's
1030113db2ddSJeff Roberson * link counts. Free the inode back to the cg.
1031113db2ddSJeff Roberson */
1032113db2ddSJeff Roberson static void
ino_reclaim(struct inode * ip,ino_t ino,int mode)10335cc52631SKirk McKusick ino_reclaim(struct inode *ip, ino_t ino, int mode)
1034113db2ddSJeff Roberson {
10355cc52631SKirk McKusick union dinode *dp;
1036113db2ddSJeff Roberson uint32_t gen;
1037113db2ddSJeff Roberson
10385cc52631SKirk McKusick dp = ip->i_dp;
10391dc349abSEd Maste if (ino == UFS_ROOTINO)
10401dc349abSEd Maste err_suj("Attempting to free UFS_ROOTINO\n");
1041113db2ddSJeff Roberson if (debug)
1042623d7cb6SMatthew D Fleming printf("Truncating and freeing ino %ju, nlink %d, mode %o\n",
10435cc52631SKirk McKusick (uintmax_t)ino, DIP(dp, di_nlink), DIP(dp, di_mode));
1044113db2ddSJeff Roberson
1045113db2ddSJeff Roberson /* We are freeing an inode or directory. */
10465cc52631SKirk McKusick if ((DIP(dp, di_mode) & IFMT) == IFDIR)
10475cc52631SKirk McKusick ino_visit(dp, ino, ino_free_children, 0);
10485cc52631SKirk McKusick DIP_SET(dp, di_nlink, 0);
1049460ed610SKirk McKusick if ((DIP(dp, di_flags) & SF_SNAPSHOT) != 0)
1050460ed610SKirk McKusick snapremove(ino);
10515cc52631SKirk McKusick ino_visit(dp, ino, blk_free_visit, VISIT_EXT | VISIT_INDIR);
1052113db2ddSJeff Roberson /* Here we have to clear the inode and release any blocks it holds. */
10535cc52631SKirk McKusick gen = DIP(dp, di_gen);
1054113db2ddSJeff Roberson if (fs->fs_magic == FS_UFS1_MAGIC)
10555cc52631SKirk McKusick bzero(dp, sizeof(struct ufs1_dinode));
1056113db2ddSJeff Roberson else
10575cc52631SKirk McKusick bzero(dp, sizeof(struct ufs2_dinode));
10585cc52631SKirk McKusick DIP_SET(dp, di_gen, gen);
10595cc52631SKirk McKusick inodirty(ip);
1060113db2ddSJeff Roberson ino_free(ino, mode);
1061113db2ddSJeff Roberson return;
1062113db2ddSJeff Roberson }
1063113db2ddSJeff Roberson
1064113db2ddSJeff Roberson /*
1065113db2ddSJeff Roberson * Adjust an inode's link count down by one when a directory goes away.
1066113db2ddSJeff Roberson */
1067113db2ddSJeff Roberson static void
ino_decr(ino_t ino)1068113db2ddSJeff Roberson ino_decr(ino_t ino)
1069113db2ddSJeff Roberson {
10705cc52631SKirk McKusick struct inode ip;
10715cc52631SKirk McKusick union dinode *dp;
1072113db2ddSJeff Roberson int reqlink;
1073113db2ddSJeff Roberson int nlink;
1074113db2ddSJeff Roberson int mode;
1075113db2ddSJeff Roberson
10765cc52631SKirk McKusick ginode(ino, &ip);
10775cc52631SKirk McKusick dp = ip.i_dp;
10785cc52631SKirk McKusick nlink = DIP(dp, di_nlink);
10795cc52631SKirk McKusick mode = DIP(dp, di_mode);
1080113db2ddSJeff Roberson if (nlink < 1)
1081edad6026SXin LI err_suj("Inode %d link count %d invalid\n", ino, nlink);
1082113db2ddSJeff Roberson if (mode == 0)
1083edad6026SXin LI err_suj("Inode %d has a link of %d with 0 mode\n", ino, nlink);
1084113db2ddSJeff Roberson nlink--;
1085d8ba45e2SEd Maste if ((mode & IFMT) == IFDIR)
1086113db2ddSJeff Roberson reqlink = 2;
1087113db2ddSJeff Roberson else
1088113db2ddSJeff Roberson reqlink = 1;
1089113db2ddSJeff Roberson if (nlink < reqlink) {
1090113db2ddSJeff Roberson if (debug)
1091623d7cb6SMatthew D Fleming printf("ino %ju not enough links to live %d < %d\n",
1092623d7cb6SMatthew D Fleming (uintmax_t)ino, nlink, reqlink);
10935cc52631SKirk McKusick ino_reclaim(&ip, ino, mode);
10945cc52631SKirk McKusick irelse(&ip);
1095113db2ddSJeff Roberson return;
1096113db2ddSJeff Roberson }
10975cc52631SKirk McKusick DIP_SET(dp, di_nlink, nlink);
10985cc52631SKirk McKusick inodirty(&ip);
10995cc52631SKirk McKusick irelse(&ip);
1100113db2ddSJeff Roberson }
1101113db2ddSJeff Roberson
1102113db2ddSJeff Roberson /*
1103113db2ddSJeff Roberson * Adjust the inode link count to 'nlink'. If the count reaches zero
1104113db2ddSJeff Roberson * free it.
1105113db2ddSJeff Roberson */
1106113db2ddSJeff Roberson static void
ino_adjust(struct suj_ino * sino)1107113db2ddSJeff Roberson ino_adjust(struct suj_ino *sino)
1108113db2ddSJeff Roberson {
1109113db2ddSJeff Roberson struct jrefrec *rrec;
1110113db2ddSJeff Roberson struct suj_rec *srec;
1111113db2ddSJeff Roberson struct suj_ino *stmp;
11125cc52631SKirk McKusick union dinode *dp;
11135cc52631SKirk McKusick struct inode ip;
1114113db2ddSJeff Roberson nlink_t nlink;
111569921123SKonstantin Belousov nlink_t reqlink;
111624d37c1eSJeff Roberson int recmode;
111724d37c1eSJeff Roberson int isdot;
1118113db2ddSJeff Roberson int mode;
1119113db2ddSJeff Roberson ino_t ino;
1120113db2ddSJeff Roberson
1121113db2ddSJeff Roberson nlink = sino->si_nlink;
1122113db2ddSJeff Roberson ino = sino->si_ino;
1123d8ba45e2SEd Maste mode = sino->si_mode & IFMT;
112424d37c1eSJeff Roberson /*
112524d37c1eSJeff Roberson * If it's a directory with no dot links, it was truncated before
112624d37c1eSJeff Roberson * the name was cleared. We need to clear the dirent that
112724d37c1eSJeff Roberson * points at it.
112824d37c1eSJeff Roberson */
1129d8ba45e2SEd Maste if (mode == IFDIR && nlink == 1 && sino->si_dotlinks == 0) {
113024d37c1eSJeff Roberson sino->si_nlink = nlink = 0;
113124d37c1eSJeff Roberson TAILQ_FOREACH(srec, &sino->si_recs, sr_next) {
113224d37c1eSJeff Roberson rrec = (struct jrefrec *)srec->sr_rec;
113324d37c1eSJeff Roberson if (ino_isat(rrec->jr_parent, rrec->jr_diroff, ino,
113424d37c1eSJeff Roberson &recmode, &isdot) == 0)
113524d37c1eSJeff Roberson continue;
113624d37c1eSJeff Roberson ino_clrat(rrec->jr_parent, rrec->jr_diroff, ino);
113724d37c1eSJeff Roberson break;
113824d37c1eSJeff Roberson }
113924d37c1eSJeff Roberson if (srec == NULL)
1140623d7cb6SMatthew D Fleming errx(1, "Directory %ju name not found", (uintmax_t)ino);
114124d37c1eSJeff Roberson }
1142113db2ddSJeff Roberson /*
1143113db2ddSJeff Roberson * If it's a directory with no real names pointing to it go ahead
1144113db2ddSJeff Roberson * and truncate it. This will free any children.
1145113db2ddSJeff Roberson */
1146d8ba45e2SEd Maste if (mode == IFDIR && nlink - sino->si_dotlinks == 0) {
1147113db2ddSJeff Roberson sino->si_nlink = nlink = 0;
1148113db2ddSJeff Roberson /*
1149113db2ddSJeff Roberson * Mark any .. links so they know not to free this inode
1150113db2ddSJeff Roberson * when they are removed.
1151113db2ddSJeff Roberson */
1152113db2ddSJeff Roberson TAILQ_FOREACH(srec, &sino->si_recs, sr_next) {
1153113db2ddSJeff Roberson rrec = (struct jrefrec *)srec->sr_rec;
1154113db2ddSJeff Roberson if (rrec->jr_diroff == DOTDOT_OFFSET) {
1155113db2ddSJeff Roberson stmp = ino_lookup(rrec->jr_parent, 0);
1156113db2ddSJeff Roberson if (stmp)
1157113db2ddSJeff Roberson ino_setskip(stmp, ino);
1158113db2ddSJeff Roberson }
1159113db2ddSJeff Roberson }
1160113db2ddSJeff Roberson }
11615cc52631SKirk McKusick ginode(ino, &ip);
11625cc52631SKirk McKusick dp = ip.i_dp;
11635cc52631SKirk McKusick mode = DIP(dp, di_mode) & IFMT;
1164ed8d06aaSJohn Baldwin if (nlink > UFS_LINK_MAX)
11651c324569SKonstantin Belousov err_suj("ino %ju nlink manipulation error, new %ju, old %d\n",
11665cc52631SKirk McKusick (uintmax_t)ino, (uintmax_t)nlink, DIP(dp, di_nlink));
1167113db2ddSJeff Roberson if (debug)
11681c324569SKonstantin Belousov printf("Adjusting ino %ju, nlink %ju, old link %d lastmode %o\n",
11695cc52631SKirk McKusick (uintmax_t)ino, (uintmax_t)nlink, DIP(dp, di_nlink),
11701c324569SKonstantin Belousov sino->si_mode);
1171113db2ddSJeff Roberson if (mode == 0) {
1172113db2ddSJeff Roberson if (debug)
1173623d7cb6SMatthew D Fleming printf("ino %ju, zero inode freeing bitmap\n",
1174623d7cb6SMatthew D Fleming (uintmax_t)ino);
1175113db2ddSJeff Roberson ino_free(ino, sino->si_mode);
11765cc52631SKirk McKusick irelse(&ip);
1177113db2ddSJeff Roberson return;
1178113db2ddSJeff Roberson }
1179113db2ddSJeff Roberson /* XXX Should be an assert? */
1180113db2ddSJeff Roberson if (mode != sino->si_mode && debug)
1181623d7cb6SMatthew D Fleming printf("ino %ju, mode %o != %o\n",
1182623d7cb6SMatthew D Fleming (uintmax_t)ino, mode, sino->si_mode);
1183d8ba45e2SEd Maste if ((mode & IFMT) == IFDIR)
1184113db2ddSJeff Roberson reqlink = 2;
1185113db2ddSJeff Roberson else
1186113db2ddSJeff Roberson reqlink = 1;
1187113db2ddSJeff Roberson /* If the inode doesn't have enough links to live, free it. */
1188113db2ddSJeff Roberson if (nlink < reqlink) {
1189113db2ddSJeff Roberson if (debug)
11901c324569SKonstantin Belousov printf("ino %ju not enough links to live %ju < %ju\n",
11911c324569SKonstantin Belousov (uintmax_t)ino, (uintmax_t)nlink,
11921c324569SKonstantin Belousov (uintmax_t)reqlink);
11935cc52631SKirk McKusick ino_reclaim(&ip, ino, mode);
11945cc52631SKirk McKusick irelse(&ip);
1195113db2ddSJeff Roberson return;
1196113db2ddSJeff Roberson }
1197113db2ddSJeff Roberson /* If required write the updated link count. */
11985cc52631SKirk McKusick if (DIP(dp, di_nlink) == nlink) {
1199113db2ddSJeff Roberson if (debug)
1200623d7cb6SMatthew D Fleming printf("ino %ju, link matches, skipping.\n",
1201623d7cb6SMatthew D Fleming (uintmax_t)ino);
12025cc52631SKirk McKusick irelse(&ip);
1203113db2ddSJeff Roberson return;
1204113db2ddSJeff Roberson }
12055cc52631SKirk McKusick DIP_SET(dp, di_nlink, nlink);
12065cc52631SKirk McKusick inodirty(&ip);
12075cc52631SKirk McKusick irelse(&ip);
1208113db2ddSJeff Roberson }
1209113db2ddSJeff Roberson
1210113db2ddSJeff Roberson /*
1211113db2ddSJeff Roberson * Truncate some or all blocks in an indirect, freeing any that are required
1212113db2ddSJeff Roberson * and zeroing the indirect.
1213113db2ddSJeff Roberson */
1214113db2ddSJeff Roberson static void
indir_trunc(ino_t ino,ufs_lbn_t lbn,ufs2_daddr_t blk,ufs_lbn_t lastlbn,union dinode * dp)12155cc52631SKirk McKusick indir_trunc(ino_t ino, ufs_lbn_t lbn, ufs2_daddr_t blk, ufs_lbn_t lastlbn,
12165cc52631SKirk McKusick union dinode *dp)
1217113db2ddSJeff Roberson {
12185cc52631SKirk McKusick struct bufarea *bp;
1219113db2ddSJeff Roberson ufs_lbn_t lbnadd;
1220113db2ddSJeff Roberson ufs2_daddr_t nblk;
1221113db2ddSJeff Roberson ufs_lbn_t next;
1222113db2ddSJeff Roberson ufs_lbn_t nlbn;
12235cc52631SKirk McKusick int isdirty;
1224113db2ddSJeff Roberson int level;
1225113db2ddSJeff Roberson int i;
1226113db2ddSJeff Roberson
1227113db2ddSJeff Roberson if (blk == 0)
1228113db2ddSJeff Roberson return;
12295cc52631SKirk McKusick isdirty = 0;
1230113db2ddSJeff Roberson level = lbn_level(lbn);
1231113db2ddSJeff Roberson if (level == -1)
1232edad6026SXin LI err_suj("Invalid level for lbn %jd\n", lbn);
1233113db2ddSJeff Roberson lbnadd = 1;
1234113db2ddSJeff Roberson for (i = level; i > 0; i--)
1235113db2ddSJeff Roberson lbnadd *= NINDIR(fs);
12365cc52631SKirk McKusick bp = getdatablk(blk, fs->fs_bsize, BT_LEVEL1 + level);
12375cc52631SKirk McKusick if (bp->b_errs != 0)
12385cc52631SKirk McKusick err_suj("indir_trunc: UNRECOVERABLE I/O ERROR");
1239113db2ddSJeff Roberson for (i = 0; i < NINDIR(fs); i++) {
12405cc52631SKirk McKusick if ((nblk = IBLK(bp, i)) == 0)
1241113db2ddSJeff Roberson continue;
1242113db2ddSJeff Roberson if (level != 0) {
1243113db2ddSJeff Roberson nlbn = (lbn + 1) - (i * lbnadd);
1244113db2ddSJeff Roberson /*
1245113db2ddSJeff Roberson * Calculate the lbn of the next indirect to
1246113db2ddSJeff Roberson * determine if any of this indirect must be
1247113db2ddSJeff Roberson * reclaimed.
1248113db2ddSJeff Roberson */
1249113db2ddSJeff Roberson next = -(lbn + level) + ((i+1) * lbnadd);
1250113db2ddSJeff Roberson if (next <= lastlbn)
1251113db2ddSJeff Roberson continue;
12525cc52631SKirk McKusick indir_trunc(ino, nlbn, nblk, lastlbn, dp);
1253113db2ddSJeff Roberson /* If all of this indirect was reclaimed, free it. */
1254113db2ddSJeff Roberson nlbn = next - lbnadd;
1255113db2ddSJeff Roberson if (nlbn < lastlbn)
1256113db2ddSJeff Roberson continue;
1257113db2ddSJeff Roberson } else {
1258113db2ddSJeff Roberson nlbn = -lbn + i * lbnadd;
1259113db2ddSJeff Roberson if (nlbn < lastlbn)
1260113db2ddSJeff Roberson continue;
1261113db2ddSJeff Roberson }
12625cc52631SKirk McKusick isdirty = 1;
1263460ed610SKirk McKusick blk_free(ino, nblk, 0, fs->fs_frag);
12645cc52631SKirk McKusick IBLK_SET(bp, i, 0);
1265113db2ddSJeff Roberson }
12665cc52631SKirk McKusick if (isdirty)
12675cc52631SKirk McKusick dirty(bp);
12685cc52631SKirk McKusick brelse(bp);
1269113db2ddSJeff Roberson }
1270113db2ddSJeff Roberson
1271113db2ddSJeff Roberson /*
1272113db2ddSJeff Roberson * Truncate an inode to the minimum of the given size or the last populated
1273113db2ddSJeff Roberson * block after any over size have been discarded. The kernel would allocate
1274113db2ddSJeff Roberson * the last block in the file but fsck does not and neither do we. This
1275113db2ddSJeff Roberson * code never extends files, only shrinks them.
1276113db2ddSJeff Roberson */
1277113db2ddSJeff Roberson static void
ino_trunc(ino_t ino,off_t size)1278113db2ddSJeff Roberson ino_trunc(ino_t ino, off_t size)
1279113db2ddSJeff Roberson {
12805cc52631SKirk McKusick struct inode ip;
12815cc52631SKirk McKusick union dinode *dp;
12825cc52631SKirk McKusick struct bufarea *bp;
1283113db2ddSJeff Roberson ufs2_daddr_t bn;
1284113db2ddSJeff Roberson uint64_t totalfrags;
1285113db2ddSJeff Roberson ufs_lbn_t nextlbn;
1286113db2ddSJeff Roberson ufs_lbn_t lastlbn;
1287113db2ddSJeff Roberson ufs_lbn_t tmpval;
1288113db2ddSJeff Roberson ufs_lbn_t lbn;
1289113db2ddSJeff Roberson ufs_lbn_t i;
12905cc52631SKirk McKusick int blksize, frags;
1291113db2ddSJeff Roberson off_t cursize;
1292113db2ddSJeff Roberson off_t off;
1293113db2ddSJeff Roberson int mode;
1294113db2ddSJeff Roberson
12955cc52631SKirk McKusick ginode(ino, &ip);
12965cc52631SKirk McKusick dp = ip.i_dp;
12975cc52631SKirk McKusick mode = DIP(dp, di_mode) & IFMT;
12985cc52631SKirk McKusick cursize = DIP(dp, di_size);
1299460ed610SKirk McKusick /* If no size change, nothing to do */
1300460ed610SKirk McKusick if (size == cursize) {
1301460ed610SKirk McKusick irelse(&ip);
1302460ed610SKirk McKusick return;
1303460ed610SKirk McKusick }
1304113db2ddSJeff Roberson if (debug)
1305239597e0SKirk McKusick printf("Truncating ino %ju, mode %o to size %jd from "
1306239597e0SKirk McKusick "size %jd\n", (uintmax_t)ino, mode, size, cursize);
1307113db2ddSJeff Roberson
1308113db2ddSJeff Roberson /* Skip datablocks for short links and devices. */
1309d8ba45e2SEd Maste if (mode == 0 || mode == IFBLK || mode == IFCHR ||
13105cc52631SKirk McKusick (mode == IFLNK && cursize < fs->fs_maxsymlinklen)) {
13115cc52631SKirk McKusick irelse(&ip);
1312113db2ddSJeff Roberson return;
13135cc52631SKirk McKusick }
1314113db2ddSJeff Roberson /* Don't extend. */
13155cc52631SKirk McKusick if (size > cursize) {
13165cc52631SKirk McKusick irelse(&ip);
13175cc52631SKirk McKusick return;
13185cc52631SKirk McKusick }
13195cc52631SKirk McKusick if ((DIP(dp, di_flags) & SF_SNAPSHOT) != 0) {
13205cc52631SKirk McKusick if (size > 0)
13215cc52631SKirk McKusick err_suj("Partial truncation of ino %ju snapshot file\n",
13225cc52631SKirk McKusick (uintmax_t)ino);
1323460ed610SKirk McKusick snapremove(ino);
13245cc52631SKirk McKusick }
1325113db2ddSJeff Roberson lastlbn = lblkno(fs, blkroundup(fs, size));
13261dc349abSEd Maste for (i = lastlbn; i < UFS_NDADDR; i++) {
13275cc52631SKirk McKusick if ((bn = DIP(dp, di_db[i])) == 0)
1328113db2ddSJeff Roberson continue;
13295cc52631SKirk McKusick blksize = sblksize(fs, cursize, i);
1330460ed610SKirk McKusick blk_free(ino, bn, 0, numfrags(fs, blksize));
13315cc52631SKirk McKusick DIP_SET(dp, di_db[i], 0);
1332113db2ddSJeff Roberson }
1333113db2ddSJeff Roberson /*
1334113db2ddSJeff Roberson * Follow indirect blocks, freeing anything required.
1335113db2ddSJeff Roberson */
13361dc349abSEd Maste for (i = 0, tmpval = NINDIR(fs), lbn = UFS_NDADDR; i < UFS_NIADDR; i++,
1337113db2ddSJeff Roberson lbn = nextlbn) {
1338113db2ddSJeff Roberson nextlbn = lbn + tmpval;
1339113db2ddSJeff Roberson tmpval *= NINDIR(fs);
1340113db2ddSJeff Roberson /* If we're not freeing any in this indirect range skip it. */
1341113db2ddSJeff Roberson if (lastlbn >= nextlbn)
1342113db2ddSJeff Roberson continue;
1343460ed610SKirk McKusick if ((bn = DIP(dp, di_ib[i])) == 0)
1344113db2ddSJeff Roberson continue;
1345460ed610SKirk McKusick indir_trunc(ino, -lbn - i, bn, lastlbn, dp);
1346113db2ddSJeff Roberson /* If we freed everything in this indirect free the indir. */
1347113db2ddSJeff Roberson if (lastlbn > lbn)
1348113db2ddSJeff Roberson continue;
1349460ed610SKirk McKusick blk_free(ino, bn, 0, fs->fs_frag);
13505cc52631SKirk McKusick DIP_SET(dp, di_ib[i], 0);
1351113db2ddSJeff Roberson }
1352113db2ddSJeff Roberson /*
1353113db2ddSJeff Roberson * Now that we've freed any whole blocks that exceed the desired
1354113db2ddSJeff Roberson * truncation size, figure out how many blocks remain and what the
1355113db2ddSJeff Roberson * last populated lbn is. We will set the size to this last lbn
1356113db2ddSJeff Roberson * rather than worrying about allocating the final lbn as the kernel
1357113db2ddSJeff Roberson * would've done. This is consistent with normal fsck behavior.
1358113db2ddSJeff Roberson */
1359113db2ddSJeff Roberson visitlbn = 0;
13605cc52631SKirk McKusick totalfrags = ino_visit(dp, ino, null_visit, VISIT_INDIR | VISIT_EXT);
1361113db2ddSJeff Roberson if (size > lblktosize(fs, visitlbn + 1))
1362113db2ddSJeff Roberson size = lblktosize(fs, visitlbn + 1);
1363113db2ddSJeff Roberson /*
1364113db2ddSJeff Roberson * If we're truncating direct blocks we have to adjust frags
1365113db2ddSJeff Roberson * accordingly.
1366113db2ddSJeff Roberson */
13671dc349abSEd Maste if (visitlbn < UFS_NDADDR && totalfrags) {
1368113db2ddSJeff Roberson long oldspace, newspace;
1369113db2ddSJeff Roberson
13705cc52631SKirk McKusick bn = DIP(dp, di_db[visitlbn]);
1371113db2ddSJeff Roberson if (bn == 0)
1372623d7cb6SMatthew D Fleming err_suj("Bad blk at ino %ju lbn %jd\n",
1373623d7cb6SMatthew D Fleming (uintmax_t)ino, visitlbn);
1374113db2ddSJeff Roberson oldspace = sblksize(fs, cursize, visitlbn);
1375113db2ddSJeff Roberson newspace = sblksize(fs, size, visitlbn);
1376113db2ddSJeff Roberson if (oldspace != newspace) {
1377113db2ddSJeff Roberson bn += numfrags(fs, newspace);
1378113db2ddSJeff Roberson frags = numfrags(fs, oldspace - newspace);
1379460ed610SKirk McKusick blk_free(ino, bn, 0, frags);
1380113db2ddSJeff Roberson totalfrags -= frags;
1381113db2ddSJeff Roberson }
1382113db2ddSJeff Roberson }
13835cc52631SKirk McKusick DIP_SET(dp, di_blocks, fsbtodb(fs, totalfrags));
13845cc52631SKirk McKusick DIP_SET(dp, di_size, size);
13855cc52631SKirk McKusick inodirty(&ip);
1386113db2ddSJeff Roberson /*
1387113db2ddSJeff Roberson * If we've truncated into the middle of a block or frag we have
1388113db2ddSJeff Roberson * to zero it here. Otherwise the file could extend into
1389113db2ddSJeff Roberson * uninitialized space later.
1390113db2ddSJeff Roberson */
1391113db2ddSJeff Roberson off = blkoff(fs, size);
13925cc52631SKirk McKusick if (off && DIP(dp, di_mode) != IFDIR) {
1393113db2ddSJeff Roberson long clrsize;
1394113db2ddSJeff Roberson
13955cc52631SKirk McKusick bn = ino_blkatoff(dp, ino, visitlbn, &frags, NULL);
1396113db2ddSJeff Roberson if (bn == 0)
1397623d7cb6SMatthew D Fleming err_suj("Block missing from ino %ju at lbn %jd\n",
1398623d7cb6SMatthew D Fleming (uintmax_t)ino, visitlbn);
1399113db2ddSJeff Roberson clrsize = frags * fs->fs_fsize;
14005cc52631SKirk McKusick bp = getdatablk(bn, clrsize, BT_DATA);
14015cc52631SKirk McKusick if (bp->b_errs != 0)
14025cc52631SKirk McKusick err_suj("ino_trunc: UNRECOVERABLE I/O ERROR");
1403113db2ddSJeff Roberson clrsize -= off;
14045cc52631SKirk McKusick bzero(&bp->b_un.b_buf[off], clrsize);
14055cc52631SKirk McKusick dirty(bp);
14065cc52631SKirk McKusick brelse(bp);
1407113db2ddSJeff Roberson }
14085cc52631SKirk McKusick irelse(&ip);
1409113db2ddSJeff Roberson return;
1410113db2ddSJeff Roberson }
1411113db2ddSJeff Roberson
1412113db2ddSJeff Roberson /*
1413113db2ddSJeff Roberson * Process records available for one inode and determine whether the
1414113db2ddSJeff Roberson * link count is correct or needs adjusting.
1415113db2ddSJeff Roberson */
1416113db2ddSJeff Roberson static void
ino_check(struct suj_ino * sino)1417113db2ddSJeff Roberson ino_check(struct suj_ino *sino)
1418113db2ddSJeff Roberson {
1419113db2ddSJeff Roberson struct suj_rec *srec;
1420113db2ddSJeff Roberson struct jrefrec *rrec;
1421113db2ddSJeff Roberson nlink_t dotlinks;
142269921123SKonstantin Belousov nlink_t newlinks;
142369921123SKonstantin Belousov nlink_t removes;
142469921123SKonstantin Belousov nlink_t nlink;
1425113db2ddSJeff Roberson ino_t ino;
1426113db2ddSJeff Roberson int isdot;
1427113db2ddSJeff Roberson int isat;
1428113db2ddSJeff Roberson int mode;
1429113db2ddSJeff Roberson
1430113db2ddSJeff Roberson if (sino->si_hasrecs == 0)
1431113db2ddSJeff Roberson return;
1432113db2ddSJeff Roberson ino = sino->si_ino;
1433113db2ddSJeff Roberson rrec = (struct jrefrec *)TAILQ_FIRST(&sino->si_recs)->sr_rec;
1434113db2ddSJeff Roberson nlink = rrec->jr_nlink;
1435113db2ddSJeff Roberson newlinks = 0;
1436113db2ddSJeff Roberson dotlinks = 0;
1437113db2ddSJeff Roberson removes = sino->si_nlinkadj;
1438113db2ddSJeff Roberson TAILQ_FOREACH(srec, &sino->si_recs, sr_next) {
1439113db2ddSJeff Roberson rrec = (struct jrefrec *)srec->sr_rec;
1440113db2ddSJeff Roberson isat = ino_isat(rrec->jr_parent, rrec->jr_diroff,
1441113db2ddSJeff Roberson rrec->jr_ino, &mode, &isdot);
1442d8ba45e2SEd Maste if (isat && (mode & IFMT) != (rrec->jr_mode & IFMT))
1443edad6026SXin LI err_suj("Inode mode/directory type mismatch %o != %o\n",
1444113db2ddSJeff Roberson mode, rrec->jr_mode);
1445113db2ddSJeff Roberson if (debug)
14466f0ca273SKirk McKusick printf("jrefrec: op %s ino %ju, nlink %ju, parent %ju, "
1447113db2ddSJeff Roberson "diroff %jd, mode %o, isat %d, isdot %d\n",
14486f0ca273SKirk McKusick JOP_OPTYPE(rrec->jr_op), (uintmax_t)rrec->jr_ino,
14491c324569SKonstantin Belousov (uintmax_t)rrec->jr_nlink,
14501c324569SKonstantin Belousov (uintmax_t)rrec->jr_parent,
14511c324569SKonstantin Belousov (uintmax_t)rrec->jr_diroff,
1452623d7cb6SMatthew D Fleming rrec->jr_mode, isat, isdot);
1453d8ba45e2SEd Maste mode = rrec->jr_mode & IFMT;
1454113db2ddSJeff Roberson if (rrec->jr_op == JOP_REMREF)
1455113db2ddSJeff Roberson removes++;
1456113db2ddSJeff Roberson newlinks += isat;
1457113db2ddSJeff Roberson if (isdot)
1458113db2ddSJeff Roberson dotlinks += isat;
1459113db2ddSJeff Roberson }
1460113db2ddSJeff Roberson /*
1461113db2ddSJeff Roberson * The number of links that remain are the starting link count
1462113db2ddSJeff Roberson * subtracted by the total number of removes with the total
1463113db2ddSJeff Roberson * links discovered back in. An incomplete remove thus
1464113db2ddSJeff Roberson * makes no change to the link count but an add increases
1465113db2ddSJeff Roberson * by one.
1466113db2ddSJeff Roberson */
1467113db2ddSJeff Roberson if (debug)
14681c324569SKonstantin Belousov printf(
14691c324569SKonstantin Belousov "ino %ju nlink %ju newlinks %ju removes %ju dotlinks %ju\n",
14701c324569SKonstantin Belousov (uintmax_t)ino, (uintmax_t)nlink, (uintmax_t)newlinks,
14711c324569SKonstantin Belousov (uintmax_t)removes, (uintmax_t)dotlinks);
1472113db2ddSJeff Roberson nlink += newlinks;
1473113db2ddSJeff Roberson nlink -= removes;
1474113db2ddSJeff Roberson sino->si_linkadj = 1;
1475113db2ddSJeff Roberson sino->si_nlink = nlink;
1476113db2ddSJeff Roberson sino->si_dotlinks = dotlinks;
1477113db2ddSJeff Roberson sino->si_mode = mode;
1478113db2ddSJeff Roberson ino_adjust(sino);
1479113db2ddSJeff Roberson }
1480113db2ddSJeff Roberson
1481113db2ddSJeff Roberson /*
1482113db2ddSJeff Roberson * Process records available for one block and determine whether it is
1483113db2ddSJeff Roberson * still allocated and whether the owning inode needs to be updated or
1484113db2ddSJeff Roberson * a free completed.
1485113db2ddSJeff Roberson */
1486113db2ddSJeff Roberson static void
blk_check(struct suj_blk * sblk)1487113db2ddSJeff Roberson blk_check(struct suj_blk *sblk)
1488113db2ddSJeff Roberson {
1489113db2ddSJeff Roberson struct suj_rec *srec;
1490113db2ddSJeff Roberson struct jblkrec *brec;
1491113db2ddSJeff Roberson struct suj_ino *sino;
1492113db2ddSJeff Roberson ufs2_daddr_t blk;
1493113db2ddSJeff Roberson int mask;
1494113db2ddSJeff Roberson int frags;
1495113db2ddSJeff Roberson int isat;
1496113db2ddSJeff Roberson
1497113db2ddSJeff Roberson /*
1498113db2ddSJeff Roberson * Each suj_blk actually contains records for any fragments in that
1499113db2ddSJeff Roberson * block. As a result we must evaluate each record individually.
1500113db2ddSJeff Roberson */
1501113db2ddSJeff Roberson sino = NULL;
1502113db2ddSJeff Roberson TAILQ_FOREACH(srec, &sblk->sb_recs, sr_next) {
1503113db2ddSJeff Roberson brec = (struct jblkrec *)srec->sr_rec;
1504113db2ddSJeff Roberson frags = brec->jb_frags;
1505113db2ddSJeff Roberson blk = brec->jb_blkno + brec->jb_oldfrags;
1506113db2ddSJeff Roberson isat = blk_isat(brec->jb_ino, brec->jb_lbn, blk, &frags);
1507113db2ddSJeff Roberson if (sino == NULL || sino->si_ino != brec->jb_ino) {
1508113db2ddSJeff Roberson sino = ino_lookup(brec->jb_ino, 1);
1509113db2ddSJeff Roberson sino->si_blkadj = 1;
1510113db2ddSJeff Roberson }
1511113db2ddSJeff Roberson if (debug)
15126f0ca273SKirk McKusick printf("op %s blk %jd ino %ju lbn %jd frags %d isat %d "
15136f0ca273SKirk McKusick "(%d)\n", JOP_OPTYPE(brec->jb_op), blk,
15146f0ca273SKirk McKusick (uintmax_t)brec->jb_ino, brec->jb_lbn,
15156f0ca273SKirk McKusick brec->jb_frags, isat, frags);
1516113db2ddSJeff Roberson /*
1517113db2ddSJeff Roberson * If we found the block at this address we still have to
1518113db2ddSJeff Roberson * determine if we need to free the tail end that was
1519113db2ddSJeff Roberson * added by adding contiguous fragments from the same block.
1520113db2ddSJeff Roberson */
1521113db2ddSJeff Roberson if (isat == 1) {
1522113db2ddSJeff Roberson if (frags == brec->jb_frags)
1523113db2ddSJeff Roberson continue;
1524113db2ddSJeff Roberson mask = blk_freemask(blk, brec->jb_ino, brec->jb_lbn,
1525113db2ddSJeff Roberson brec->jb_frags);
1526113db2ddSJeff Roberson mask >>= frags;
1527113db2ddSJeff Roberson blk += frags;
1528113db2ddSJeff Roberson frags = brec->jb_frags - frags;
1529460ed610SKirk McKusick blk_free(brec->jb_ino, blk, mask, frags);
1530113db2ddSJeff Roberson continue;
1531113db2ddSJeff Roberson }
1532113db2ddSJeff Roberson /*
1533113db2ddSJeff Roberson * The block wasn't found, attempt to free it. It won't be
1534113db2ddSJeff Roberson * freed if it was actually reallocated. If this was an
1535113db2ddSJeff Roberson * allocation we don't want to follow indirects as they
1536113db2ddSJeff Roberson * may not be written yet. Any children of the indirect will
1537113db2ddSJeff Roberson * have their own records. If it's a free we need to
1538113db2ddSJeff Roberson * recursively free children.
1539113db2ddSJeff Roberson */
1540113db2ddSJeff Roberson blk_free_lbn(blk, brec->jb_ino, brec->jb_lbn, brec->jb_frags,
1541113db2ddSJeff Roberson brec->jb_op == JOP_FREEBLK);
1542113db2ddSJeff Roberson }
1543113db2ddSJeff Roberson }
1544113db2ddSJeff Roberson
1545113db2ddSJeff Roberson /*
1546113db2ddSJeff Roberson * Walk the list of inode records for this cg and resolve moved and duplicate
1547113db2ddSJeff Roberson * inode references now that we have a complete picture.
1548113db2ddSJeff Roberson */
1549113db2ddSJeff Roberson static void
cg_build(struct suj_cg * sc)1550113db2ddSJeff Roberson cg_build(struct suj_cg *sc)
1551113db2ddSJeff Roberson {
1552113db2ddSJeff Roberson struct suj_ino *sino;
1553113db2ddSJeff Roberson int i;
1554113db2ddSJeff Roberson
15555cc52631SKirk McKusick for (i = 0; i < HASHSIZE; i++)
1556113db2ddSJeff Roberson LIST_FOREACH(sino, &sc->sc_inohash[i], si_next)
1557113db2ddSJeff Roberson ino_build(sino);
1558113db2ddSJeff Roberson }
1559113db2ddSJeff Roberson
1560113db2ddSJeff Roberson /*
1561113db2ddSJeff Roberson * Handle inodes requiring truncation. This must be done prior to
1562113db2ddSJeff Roberson * looking up any inodes in directories.
1563113db2ddSJeff Roberson */
1564113db2ddSJeff Roberson static void
cg_trunc(struct suj_cg * sc)1565113db2ddSJeff Roberson cg_trunc(struct suj_cg *sc)
1566113db2ddSJeff Roberson {
1567113db2ddSJeff Roberson struct suj_ino *sino;
1568113db2ddSJeff Roberson int i;
1569113db2ddSJeff Roberson
15705cc52631SKirk McKusick for (i = 0; i < HASHSIZE; i++) {
1571280e091aSJeff Roberson LIST_FOREACH(sino, &sc->sc_inohash[i], si_next) {
1572113db2ddSJeff Roberson if (sino->si_trunc) {
1573113db2ddSJeff Roberson ino_trunc(sino->si_ino,
1574113db2ddSJeff Roberson sino->si_trunc->jt_size);
1575280e091aSJeff Roberson sino->si_blkadj = 0;
1576113db2ddSJeff Roberson sino->si_trunc = NULL;
1577113db2ddSJeff Roberson }
1578280e091aSJeff Roberson if (sino->si_blkadj)
1579280e091aSJeff Roberson ino_adjblks(sino);
1580280e091aSJeff Roberson }
1581280e091aSJeff Roberson }
1582113db2ddSJeff Roberson }
1583113db2ddSJeff Roberson
1584364e7245SKonstantin Belousov static void
cg_adj_blk(struct suj_cg * sc)1585364e7245SKonstantin Belousov cg_adj_blk(struct suj_cg *sc)
1586364e7245SKonstantin Belousov {
1587364e7245SKonstantin Belousov struct suj_ino *sino;
1588364e7245SKonstantin Belousov int i;
1589364e7245SKonstantin Belousov
15905cc52631SKirk McKusick for (i = 0; i < HASHSIZE; i++) {
1591364e7245SKonstantin Belousov LIST_FOREACH(sino, &sc->sc_inohash[i], si_next) {
1592364e7245SKonstantin Belousov if (sino->si_blkadj)
1593364e7245SKonstantin Belousov ino_adjblks(sino);
1594364e7245SKonstantin Belousov }
1595364e7245SKonstantin Belousov }
1596364e7245SKonstantin Belousov }
1597364e7245SKonstantin Belousov
1598113db2ddSJeff Roberson /*
1599113db2ddSJeff Roberson * Free any partially allocated blocks and then resolve inode block
1600113db2ddSJeff Roberson * counts.
1601113db2ddSJeff Roberson */
1602113db2ddSJeff Roberson static void
cg_check_blk(struct suj_cg * sc)1603113db2ddSJeff Roberson cg_check_blk(struct suj_cg *sc)
1604113db2ddSJeff Roberson {
1605113db2ddSJeff Roberson struct suj_blk *sblk;
1606113db2ddSJeff Roberson int i;
1607113db2ddSJeff Roberson
1608113db2ddSJeff Roberson
16095cc52631SKirk McKusick for (i = 0; i < HASHSIZE; i++)
1610113db2ddSJeff Roberson LIST_FOREACH(sblk, &sc->sc_blkhash[i], sb_next)
1611113db2ddSJeff Roberson blk_check(sblk);
1612113db2ddSJeff Roberson }
1613113db2ddSJeff Roberson
1614113db2ddSJeff Roberson /*
1615113db2ddSJeff Roberson * Walk the list of inode records for this cg, recovering any
1616113db2ddSJeff Roberson * changes which were not complete at the time of crash.
1617113db2ddSJeff Roberson */
1618113db2ddSJeff Roberson static void
cg_check_ino(struct suj_cg * sc)1619113db2ddSJeff Roberson cg_check_ino(struct suj_cg *sc)
1620113db2ddSJeff Roberson {
1621113db2ddSJeff Roberson struct suj_ino *sino;
1622113db2ddSJeff Roberson int i;
1623113db2ddSJeff Roberson
16245cc52631SKirk McKusick for (i = 0; i < HASHSIZE; i++)
1625113db2ddSJeff Roberson LIST_FOREACH(sino, &sc->sc_inohash[i], si_next)
1626113db2ddSJeff Roberson ino_check(sino);
1627113db2ddSJeff Roberson }
1628113db2ddSJeff Roberson
1629113db2ddSJeff Roberson static void
cg_apply(void (* apply)(struct suj_cg *))1630113db2ddSJeff Roberson cg_apply(void (*apply)(struct suj_cg *))
1631113db2ddSJeff Roberson {
1632113db2ddSJeff Roberson struct suj_cg *scg;
1633113db2ddSJeff Roberson int i;
1634113db2ddSJeff Roberson
16355cc52631SKirk McKusick for (i = 0; i < HASHSIZE; i++)
1636113db2ddSJeff Roberson LIST_FOREACH(scg, &cghash[i], sc_next)
1637113db2ddSJeff Roberson apply(scg);
1638113db2ddSJeff Roberson }
1639113db2ddSJeff Roberson
1640113db2ddSJeff Roberson /*
1641113db2ddSJeff Roberson * Process the unlinked but referenced file list. Freeing all inodes.
1642113db2ddSJeff Roberson */
1643113db2ddSJeff Roberson static void
ino_unlinked(void)1644113db2ddSJeff Roberson ino_unlinked(void)
1645113db2ddSJeff Roberson {
16465cc52631SKirk McKusick struct inode ip;
16475cc52631SKirk McKusick union dinode *dp;
1648113db2ddSJeff Roberson uint16_t mode;
1649113db2ddSJeff Roberson ino_t inon;
1650113db2ddSJeff Roberson ino_t ino;
1651113db2ddSJeff Roberson
1652113db2ddSJeff Roberson ino = fs->fs_sujfree;
1653113db2ddSJeff Roberson fs->fs_sujfree = 0;
1654113db2ddSJeff Roberson while (ino != 0) {
16555cc52631SKirk McKusick ginode(ino, &ip);
16565cc52631SKirk McKusick dp = ip.i_dp;
16575cc52631SKirk McKusick mode = DIP(dp, di_mode) & IFMT;
16585cc52631SKirk McKusick inon = DIP(dp, di_freelink);
16595cc52631SKirk McKusick DIP_SET(dp, di_freelink, 0);
16605cc52631SKirk McKusick inodirty(&ip);
1661113db2ddSJeff Roberson /*
1662113db2ddSJeff Roberson * XXX Should this be an errx?
1663113db2ddSJeff Roberson */
16645cc52631SKirk McKusick if (DIP(dp, di_nlink) == 0) {
1665113db2ddSJeff Roberson if (debug)
1666623d7cb6SMatthew D Fleming printf("Freeing unlinked ino %ju mode %o\n",
1667e25a029eSMatthew D Fleming (uintmax_t)ino, mode);
16685cc52631SKirk McKusick ino_reclaim(&ip, ino, mode);
1669113db2ddSJeff Roberson } else if (debug)
1670623d7cb6SMatthew D Fleming printf("Skipping ino %ju mode %o with link %d\n",
16715cc52631SKirk McKusick (uintmax_t)ino, mode, DIP(dp, di_nlink));
1672113db2ddSJeff Roberson ino = inon;
16735cc52631SKirk McKusick irelse(&ip);
1674113db2ddSJeff Roberson }
1675113db2ddSJeff Roberson }
1676113db2ddSJeff Roberson
1677113db2ddSJeff Roberson /*
1678113db2ddSJeff Roberson * Append a new record to the list of records requiring processing.
1679113db2ddSJeff Roberson */
1680113db2ddSJeff Roberson static void
ino_append(union jrec * rec)1681113db2ddSJeff Roberson ino_append(union jrec *rec)
1682113db2ddSJeff Roberson {
1683113db2ddSJeff Roberson struct jrefrec *refrec;
1684113db2ddSJeff Roberson struct jmvrec *mvrec;
1685113db2ddSJeff Roberson struct suj_ino *sino;
1686113db2ddSJeff Roberson struct suj_rec *srec;
1687113db2ddSJeff Roberson
1688113db2ddSJeff Roberson mvrec = &rec->rec_jmvrec;
1689113db2ddSJeff Roberson refrec = &rec->rec_jrefrec;
1690113db2ddSJeff Roberson if (debug && mvrec->jm_op == JOP_MVREF)
16911c324569SKonstantin Belousov printf("ino move: ino %ju, parent %ju, "
16921c324569SKonstantin Belousov "diroff %jd, oldoff %jd\n",
16931c324569SKonstantin Belousov (uintmax_t)mvrec->jm_ino, (uintmax_t)mvrec->jm_parent,
16941c324569SKonstantin Belousov (uintmax_t)mvrec->jm_newoff, (uintmax_t)mvrec->jm_oldoff);
1695113db2ddSJeff Roberson else if (debug &&
1696113db2ddSJeff Roberson (refrec->jr_op == JOP_ADDREF || refrec->jr_op == JOP_REMREF))
16976f0ca273SKirk McKusick printf("ino ref: op %s, ino %ju, nlink %ju, "
16981c324569SKonstantin Belousov "parent %ju, diroff %jd\n",
16996f0ca273SKirk McKusick JOP_OPTYPE(refrec->jr_op), (uintmax_t)refrec->jr_ino,
17001c324569SKonstantin Belousov (uintmax_t)refrec->jr_nlink,
17011c324569SKonstantin Belousov (uintmax_t)refrec->jr_parent, (uintmax_t)refrec->jr_diroff);
1702113db2ddSJeff Roberson sino = ino_lookup(((struct jrefrec *)rec)->jr_ino, 1);
1703113db2ddSJeff Roberson sino->si_hasrecs = 1;
1704113db2ddSJeff Roberson srec = errmalloc(sizeof(*srec));
1705113db2ddSJeff Roberson srec->sr_rec = rec;
1706113db2ddSJeff Roberson TAILQ_INSERT_TAIL(&sino->si_newrecs, srec, sr_next);
1707113db2ddSJeff Roberson }
1708113db2ddSJeff Roberson
1709113db2ddSJeff Roberson /*
1710113db2ddSJeff Roberson * Add a reference adjustment to the sino list and eliminate dups. The
1711113db2ddSJeff Roberson * primary loop in ino_build_ref() checks for dups but new ones may be
1712113db2ddSJeff Roberson * created as a result of offset adjustments.
1713113db2ddSJeff Roberson */
1714113db2ddSJeff Roberson static void
ino_add_ref(struct suj_ino * sino,struct suj_rec * srec)1715113db2ddSJeff Roberson ino_add_ref(struct suj_ino *sino, struct suj_rec *srec)
1716113db2ddSJeff Roberson {
1717113db2ddSJeff Roberson struct jrefrec *refrec;
1718113db2ddSJeff Roberson struct suj_rec *srn;
1719113db2ddSJeff Roberson struct jrefrec *rrn;
1720113db2ddSJeff Roberson
1721113db2ddSJeff Roberson refrec = (struct jrefrec *)srec->sr_rec;
1722113db2ddSJeff Roberson /*
1723113db2ddSJeff Roberson * We walk backwards so that the oldest link count is preserved. If
1724113db2ddSJeff Roberson * an add record conflicts with a remove keep the remove. Redundant
1725113db2ddSJeff Roberson * removes are eliminated in ino_build_ref. Otherwise we keep the
1726113db2ddSJeff Roberson * oldest record at a given location.
1727113db2ddSJeff Roberson */
1728113db2ddSJeff Roberson for (srn = TAILQ_LAST(&sino->si_recs, srechd); srn;
1729113db2ddSJeff Roberson srn = TAILQ_PREV(srn, srechd, sr_next)) {
1730113db2ddSJeff Roberson rrn = (struct jrefrec *)srn->sr_rec;
1731113db2ddSJeff Roberson if (rrn->jr_parent != refrec->jr_parent ||
1732113db2ddSJeff Roberson rrn->jr_diroff != refrec->jr_diroff)
1733113db2ddSJeff Roberson continue;
1734113db2ddSJeff Roberson if (rrn->jr_op == JOP_REMREF || refrec->jr_op == JOP_ADDREF) {
1735113db2ddSJeff Roberson rrn->jr_mode = refrec->jr_mode;
1736113db2ddSJeff Roberson return;
1737113db2ddSJeff Roberson }
1738113db2ddSJeff Roberson /*
1739113db2ddSJeff Roberson * Adding a remove.
1740113db2ddSJeff Roberson *
1741113db2ddSJeff Roberson * Replace the record in place with the old nlink in case
1742113db2ddSJeff Roberson * we replace the head of the list. Abandon srec as a dup.
1743113db2ddSJeff Roberson */
1744113db2ddSJeff Roberson refrec->jr_nlink = rrn->jr_nlink;
1745113db2ddSJeff Roberson srn->sr_rec = srec->sr_rec;
1746113db2ddSJeff Roberson return;
1747113db2ddSJeff Roberson }
1748113db2ddSJeff Roberson TAILQ_INSERT_TAIL(&sino->si_recs, srec, sr_next);
1749113db2ddSJeff Roberson }
1750113db2ddSJeff Roberson
1751113db2ddSJeff Roberson /*
1752113db2ddSJeff Roberson * Create a duplicate of a reference at a previous location.
1753113db2ddSJeff Roberson */
1754113db2ddSJeff Roberson static void
ino_dup_ref(struct suj_ino * sino,struct jrefrec * refrec,off_t diroff)1755113db2ddSJeff Roberson ino_dup_ref(struct suj_ino *sino, struct jrefrec *refrec, off_t diroff)
1756113db2ddSJeff Roberson {
1757113db2ddSJeff Roberson struct jrefrec *rrn;
1758113db2ddSJeff Roberson struct suj_rec *srn;
1759113db2ddSJeff Roberson
1760113db2ddSJeff Roberson rrn = errmalloc(sizeof(*refrec));
1761113db2ddSJeff Roberson *rrn = *refrec;
1762113db2ddSJeff Roberson rrn->jr_op = JOP_ADDREF;
1763113db2ddSJeff Roberson rrn->jr_diroff = diroff;
1764113db2ddSJeff Roberson srn = errmalloc(sizeof(*srn));
1765113db2ddSJeff Roberson srn->sr_rec = (union jrec *)rrn;
1766113db2ddSJeff Roberson ino_add_ref(sino, srn);
1767113db2ddSJeff Roberson }
1768113db2ddSJeff Roberson
1769113db2ddSJeff Roberson /*
1770113db2ddSJeff Roberson * Add a reference to the list at all known locations. We follow the offset
1771113db2ddSJeff Roberson * changes for a single instance and create duplicate add refs at each so
1772113db2ddSJeff Roberson * that we can tolerate any version of the directory block. Eliminate
1773113db2ddSJeff Roberson * removes which collide with adds that are seen in the journal. They should
1774113db2ddSJeff Roberson * not adjust the link count down.
1775113db2ddSJeff Roberson */
1776113db2ddSJeff Roberson static void
ino_build_ref(struct suj_ino * sino,struct suj_rec * srec)1777113db2ddSJeff Roberson ino_build_ref(struct suj_ino *sino, struct suj_rec *srec)
1778113db2ddSJeff Roberson {
1779113db2ddSJeff Roberson struct jrefrec *refrec;
1780113db2ddSJeff Roberson struct jmvrec *mvrec;
1781113db2ddSJeff Roberson struct suj_rec *srp;
1782113db2ddSJeff Roberson struct suj_rec *srn;
1783113db2ddSJeff Roberson struct jrefrec *rrn;
1784113db2ddSJeff Roberson off_t diroff;
1785113db2ddSJeff Roberson
1786113db2ddSJeff Roberson refrec = (struct jrefrec *)srec->sr_rec;
1787113db2ddSJeff Roberson /*
1788113db2ddSJeff Roberson * Search for a mvrec that matches this offset. Whether it's an add
1789113db2ddSJeff Roberson * or a remove we can delete the mvref after creating a dup record in
1790113db2ddSJeff Roberson * the old location.
1791113db2ddSJeff Roberson */
1792113db2ddSJeff Roberson if (!TAILQ_EMPTY(&sino->si_movs)) {
1793113db2ddSJeff Roberson diroff = refrec->jr_diroff;
1794113db2ddSJeff Roberson for (srn = TAILQ_LAST(&sino->si_movs, srechd); srn; srn = srp) {
1795113db2ddSJeff Roberson srp = TAILQ_PREV(srn, srechd, sr_next);
1796113db2ddSJeff Roberson mvrec = (struct jmvrec *)srn->sr_rec;
1797113db2ddSJeff Roberson if (mvrec->jm_parent != refrec->jr_parent ||
1798113db2ddSJeff Roberson mvrec->jm_newoff != diroff)
1799113db2ddSJeff Roberson continue;
1800113db2ddSJeff Roberson diroff = mvrec->jm_oldoff;
1801113db2ddSJeff Roberson TAILQ_REMOVE(&sino->si_movs, srn, sr_next);
1802edad6026SXin LI free(srn);
1803113db2ddSJeff Roberson ino_dup_ref(sino, refrec, diroff);
1804113db2ddSJeff Roberson }
1805113db2ddSJeff Roberson }
1806113db2ddSJeff Roberson /*
1807113db2ddSJeff Roberson * If a remove wasn't eliminated by an earlier add just append it to
1808113db2ddSJeff Roberson * the list.
1809113db2ddSJeff Roberson */
1810113db2ddSJeff Roberson if (refrec->jr_op == JOP_REMREF) {
1811113db2ddSJeff Roberson ino_add_ref(sino, srec);
1812113db2ddSJeff Roberson return;
1813113db2ddSJeff Roberson }
1814113db2ddSJeff Roberson /*
1815113db2ddSJeff Roberson * Walk the list of records waiting to be added to the list. We
1816113db2ddSJeff Roberson * must check for moves that apply to our current offset and remove
1817113db2ddSJeff Roberson * them from the list. Remove any duplicates to eliminate removes
1818113db2ddSJeff Roberson * with corresponding adds.
1819113db2ddSJeff Roberson */
1820113db2ddSJeff Roberson TAILQ_FOREACH_SAFE(srn, &sino->si_newrecs, sr_next, srp) {
1821113db2ddSJeff Roberson switch (srn->sr_rec->rec_jrefrec.jr_op) {
1822113db2ddSJeff Roberson case JOP_ADDREF:
1823113db2ddSJeff Roberson /*
1824113db2ddSJeff Roberson * This should actually be an error we should
1825113db2ddSJeff Roberson * have a remove for every add journaled.
1826113db2ddSJeff Roberson */
1827113db2ddSJeff Roberson rrn = (struct jrefrec *)srn->sr_rec;
1828113db2ddSJeff Roberson if (rrn->jr_parent != refrec->jr_parent ||
1829113db2ddSJeff Roberson rrn->jr_diroff != refrec->jr_diroff)
1830113db2ddSJeff Roberson break;
1831113db2ddSJeff Roberson TAILQ_REMOVE(&sino->si_newrecs, srn, sr_next);
1832113db2ddSJeff Roberson break;
1833113db2ddSJeff Roberson case JOP_REMREF:
1834113db2ddSJeff Roberson /*
1835113db2ddSJeff Roberson * Once we remove the current iteration of the
1836113db2ddSJeff Roberson * record at this address we're done.
1837113db2ddSJeff Roberson */
1838113db2ddSJeff Roberson rrn = (struct jrefrec *)srn->sr_rec;
1839113db2ddSJeff Roberson if (rrn->jr_parent != refrec->jr_parent ||
1840113db2ddSJeff Roberson rrn->jr_diroff != refrec->jr_diroff)
1841113db2ddSJeff Roberson break;
1842113db2ddSJeff Roberson TAILQ_REMOVE(&sino->si_newrecs, srn, sr_next);
1843113db2ddSJeff Roberson ino_add_ref(sino, srec);
1844113db2ddSJeff Roberson return;
1845113db2ddSJeff Roberson case JOP_MVREF:
1846113db2ddSJeff Roberson /*
1847113db2ddSJeff Roberson * Update our diroff based on any moves that match
1848113db2ddSJeff Roberson * and remove the move.
1849113db2ddSJeff Roberson */
1850113db2ddSJeff Roberson mvrec = (struct jmvrec *)srn->sr_rec;
1851113db2ddSJeff Roberson if (mvrec->jm_parent != refrec->jr_parent ||
1852113db2ddSJeff Roberson mvrec->jm_oldoff != refrec->jr_diroff)
1853113db2ddSJeff Roberson break;
1854113db2ddSJeff Roberson ino_dup_ref(sino, refrec, mvrec->jm_oldoff);
1855113db2ddSJeff Roberson refrec->jr_diroff = mvrec->jm_newoff;
1856113db2ddSJeff Roberson TAILQ_REMOVE(&sino->si_newrecs, srn, sr_next);
1857113db2ddSJeff Roberson break;
1858113db2ddSJeff Roberson default:
18596f0ca273SKirk McKusick err_suj("ino_build_ref: Unknown op %s\n",
18606f0ca273SKirk McKusick JOP_OPTYPE(srn->sr_rec->rec_jrefrec.jr_op));
1861113db2ddSJeff Roberson }
1862113db2ddSJeff Roberson }
1863113db2ddSJeff Roberson ino_add_ref(sino, srec);
1864113db2ddSJeff Roberson }
1865113db2ddSJeff Roberson
1866113db2ddSJeff Roberson /*
1867113db2ddSJeff Roberson * Walk the list of new records and add them in-order resolving any
1868113db2ddSJeff Roberson * dups and adjusted offsets.
1869113db2ddSJeff Roberson */
1870113db2ddSJeff Roberson static void
ino_build(struct suj_ino * sino)1871113db2ddSJeff Roberson ino_build(struct suj_ino *sino)
1872113db2ddSJeff Roberson {
1873113db2ddSJeff Roberson struct suj_rec *srec;
1874113db2ddSJeff Roberson
1875113db2ddSJeff Roberson while ((srec = TAILQ_FIRST(&sino->si_newrecs)) != NULL) {
1876113db2ddSJeff Roberson TAILQ_REMOVE(&sino->si_newrecs, srec, sr_next);
1877113db2ddSJeff Roberson switch (srec->sr_rec->rec_jrefrec.jr_op) {
1878113db2ddSJeff Roberson case JOP_ADDREF:
1879113db2ddSJeff Roberson case JOP_REMREF:
1880113db2ddSJeff Roberson ino_build_ref(sino, srec);
1881113db2ddSJeff Roberson break;
1882113db2ddSJeff Roberson case JOP_MVREF:
1883113db2ddSJeff Roberson /*
1884113db2ddSJeff Roberson * Add this mvrec to the queue of pending mvs.
1885113db2ddSJeff Roberson */
1886113db2ddSJeff Roberson TAILQ_INSERT_TAIL(&sino->si_movs, srec, sr_next);
1887113db2ddSJeff Roberson break;
1888113db2ddSJeff Roberson default:
18896f0ca273SKirk McKusick err_suj("ino_build: Unknown op %s\n",
18906f0ca273SKirk McKusick JOP_OPTYPE(srec->sr_rec->rec_jrefrec.jr_op));
1891113db2ddSJeff Roberson }
1892113db2ddSJeff Roberson }
1893113db2ddSJeff Roberson if (TAILQ_EMPTY(&sino->si_recs))
1894113db2ddSJeff Roberson sino->si_hasrecs = 0;
1895113db2ddSJeff Roberson }
1896113db2ddSJeff Roberson
1897113db2ddSJeff Roberson /*
1898113db2ddSJeff Roberson * Modify journal records so they refer to the base block number
1899113db2ddSJeff Roberson * and a start and end frag range. This is to facilitate the discovery
1900113db2ddSJeff Roberson * of overlapping fragment allocations.
1901113db2ddSJeff Roberson */
1902113db2ddSJeff Roberson static void
blk_build(struct jblkrec * blkrec)1903113db2ddSJeff Roberson blk_build(struct jblkrec *blkrec)
1904113db2ddSJeff Roberson {
1905113db2ddSJeff Roberson struct suj_rec *srec;
1906113db2ddSJeff Roberson struct suj_blk *sblk;
1907113db2ddSJeff Roberson struct jblkrec *blkrn;
1908113db2ddSJeff Roberson ufs2_daddr_t blk;
1909113db2ddSJeff Roberson int frag;
1910113db2ddSJeff Roberson
1911113db2ddSJeff Roberson if (debug)
19126f0ca273SKirk McKusick printf("blk_build: op %s blkno %jd frags %d oldfrags %d "
19131c324569SKonstantin Belousov "ino %ju lbn %jd\n",
19146f0ca273SKirk McKusick JOP_OPTYPE(blkrec->jb_op), (uintmax_t)blkrec->jb_blkno,
19151c324569SKonstantin Belousov blkrec->jb_frags, blkrec->jb_oldfrags,
19161c324569SKonstantin Belousov (uintmax_t)blkrec->jb_ino, (uintmax_t)blkrec->jb_lbn);
1917113db2ddSJeff Roberson
1918113db2ddSJeff Roberson blk = blknum(fs, blkrec->jb_blkno);
1919113db2ddSJeff Roberson frag = fragnum(fs, blkrec->jb_blkno);
1920b796bfceSKirk McKusick if (blkrec->jb_blkno < 0 || blk + fs->fs_frag - frag > fs->fs_size)
1921b796bfceSKirk McKusick err_suj("Out-of-bounds journal block number %jd\n",
1922b796bfceSKirk McKusick blkrec->jb_blkno);
1923113db2ddSJeff Roberson sblk = blk_lookup(blk, 1);
1924113db2ddSJeff Roberson /*
1925113db2ddSJeff Roberson * Rewrite the record using oldfrags to indicate the offset into
1926113db2ddSJeff Roberson * the block. Leave jb_frags as the actual allocated count.
1927113db2ddSJeff Roberson */
1928113db2ddSJeff Roberson blkrec->jb_blkno -= frag;
1929113db2ddSJeff Roberson blkrec->jb_oldfrags = frag;
1930113db2ddSJeff Roberson if (blkrec->jb_oldfrags + blkrec->jb_frags > fs->fs_frag)
1931edad6026SXin LI err_suj("Invalid fragment count %d oldfrags %d\n",
1932113db2ddSJeff Roberson blkrec->jb_frags, frag);
1933113db2ddSJeff Roberson /*
1934113db2ddSJeff Roberson * Detect dups. If we detect a dup we always discard the oldest
1935113db2ddSJeff Roberson * record as it is superseded by the new record. This speeds up
1936113db2ddSJeff Roberson * later stages but also eliminates free records which are used
1937113db2ddSJeff Roberson * to indicate that the contents of indirects can be trusted.
1938113db2ddSJeff Roberson */
1939113db2ddSJeff Roberson TAILQ_FOREACH(srec, &sblk->sb_recs, sr_next) {
1940113db2ddSJeff Roberson blkrn = (struct jblkrec *)srec->sr_rec;
1941113db2ddSJeff Roberson if (blkrn->jb_ino != blkrec->jb_ino ||
1942113db2ddSJeff Roberson blkrn->jb_lbn != blkrec->jb_lbn ||
1943113db2ddSJeff Roberson blkrn->jb_blkno != blkrec->jb_blkno ||
1944113db2ddSJeff Roberson blkrn->jb_frags != blkrec->jb_frags ||
1945113db2ddSJeff Roberson blkrn->jb_oldfrags != blkrec->jb_oldfrags)
1946113db2ddSJeff Roberson continue;
1947113db2ddSJeff Roberson if (debug)
1948113db2ddSJeff Roberson printf("Removed dup.\n");
1949113db2ddSJeff Roberson /* Discard the free which is a dup with an alloc. */
1950113db2ddSJeff Roberson if (blkrec->jb_op == JOP_FREEBLK)
1951113db2ddSJeff Roberson return;
1952113db2ddSJeff Roberson TAILQ_REMOVE(&sblk->sb_recs, srec, sr_next);
1953113db2ddSJeff Roberson free(srec);
1954113db2ddSJeff Roberson break;
1955113db2ddSJeff Roberson }
1956113db2ddSJeff Roberson srec = errmalloc(sizeof(*srec));
1957113db2ddSJeff Roberson srec->sr_rec = (union jrec *)blkrec;
1958113db2ddSJeff Roberson TAILQ_INSERT_TAIL(&sblk->sb_recs, srec, sr_next);
1959113db2ddSJeff Roberson }
1960113db2ddSJeff Roberson
1961113db2ddSJeff Roberson static void
ino_build_trunc(struct jtrncrec * rec)1962113db2ddSJeff Roberson ino_build_trunc(struct jtrncrec *rec)
1963113db2ddSJeff Roberson {
1964113db2ddSJeff Roberson struct suj_ino *sino;
1965113db2ddSJeff Roberson
1966113db2ddSJeff Roberson if (debug)
19671c324569SKonstantin Belousov printf("ino_build_trunc: op %d ino %ju, size %jd\n",
19681c324569SKonstantin Belousov rec->jt_op, (uintmax_t)rec->jt_ino,
19691c324569SKonstantin Belousov (uintmax_t)rec->jt_size);
1970101a9ac0SKirk McKusick if (chkfilesize(IFREG, rec->jt_size) == 0)
1971101a9ac0SKirk McKusick err_suj("ino_build: truncation size too large %ju\n",
1972101a9ac0SKirk McKusick (intmax_t)rec->jt_size);
1973113db2ddSJeff Roberson sino = ino_lookup(rec->jt_ino, 1);
1974280e091aSJeff Roberson if (rec->jt_op == JOP_SYNC) {
1975280e091aSJeff Roberson sino->si_trunc = NULL;
1976280e091aSJeff Roberson return;
1977280e091aSJeff Roberson }
1978280e091aSJeff Roberson if (sino->si_trunc == NULL || sino->si_trunc->jt_size > rec->jt_size)
1979113db2ddSJeff Roberson sino->si_trunc = rec;
1980113db2ddSJeff Roberson }
1981113db2ddSJeff Roberson
1982113db2ddSJeff Roberson /*
1983113db2ddSJeff Roberson * Build up tables of the operations we need to recover.
1984113db2ddSJeff Roberson */
1985113db2ddSJeff Roberson static void
suj_build(void)1986113db2ddSJeff Roberson suj_build(void)
1987113db2ddSJeff Roberson {
1988113db2ddSJeff Roberson struct suj_seg *seg;
1989113db2ddSJeff Roberson union jrec *rec;
1990113db2ddSJeff Roberson int off;
19914235bafaSPedro F. Giffuni int i;
1992113db2ddSJeff Roberson
1993113db2ddSJeff Roberson TAILQ_FOREACH(seg, &allsegs, ss_next) {
1994113db2ddSJeff Roberson if (debug)
1995113db2ddSJeff Roberson printf("seg %jd has %d records, oldseq %jd.\n",
1996113db2ddSJeff Roberson seg->ss_rec.jsr_seq, seg->ss_rec.jsr_cnt,
1997113db2ddSJeff Roberson seg->ss_rec.jsr_oldest);
1998113db2ddSJeff Roberson off = 0;
1999113db2ddSJeff Roberson rec = (union jrec *)seg->ss_blk;
2000113db2ddSJeff Roberson for (i = 0; i < seg->ss_rec.jsr_cnt; off += JREC_SIZE, rec++) {
2001113db2ddSJeff Roberson /* skip the segrec. */
20020947d19aSKonstantin Belousov if ((off % real_dev_bsize) == 0)
2003113db2ddSJeff Roberson continue;
2004113db2ddSJeff Roberson switch (rec->rec_jrefrec.jr_op) {
2005113db2ddSJeff Roberson case JOP_ADDREF:
2006113db2ddSJeff Roberson case JOP_REMREF:
2007113db2ddSJeff Roberson case JOP_MVREF:
2008113db2ddSJeff Roberson ino_append(rec);
2009113db2ddSJeff Roberson break;
2010113db2ddSJeff Roberson case JOP_NEWBLK:
2011113db2ddSJeff Roberson case JOP_FREEBLK:
2012113db2ddSJeff Roberson blk_build((struct jblkrec *)rec);
2013113db2ddSJeff Roberson break;
2014113db2ddSJeff Roberson case JOP_TRUNC:
201585e9da38SJeff Roberson case JOP_SYNC:
2016113db2ddSJeff Roberson ino_build_trunc((struct jtrncrec *)rec);
2017113db2ddSJeff Roberson break;
2018113db2ddSJeff Roberson default:
20196f0ca273SKirk McKusick err_suj("Unknown journal operation %s at %d\n",
20206f0ca273SKirk McKusick JOP_OPTYPE(rec->rec_jrefrec.jr_op), off);
2021113db2ddSJeff Roberson }
2022113db2ddSJeff Roberson i++;
2023113db2ddSJeff Roberson }
2024113db2ddSJeff Roberson }
2025113db2ddSJeff Roberson }
2026113db2ddSJeff Roberson
2027113db2ddSJeff Roberson /*
2028113db2ddSJeff Roberson * Prune the journal segments to those we care about based on the
2029113db2ddSJeff Roberson * oldest sequence in the newest segment. Order the segment list
2030113db2ddSJeff Roberson * based on sequence number.
2031113db2ddSJeff Roberson */
2032113db2ddSJeff Roberson static void
suj_prune(void)2033113db2ddSJeff Roberson suj_prune(void)
2034113db2ddSJeff Roberson {
2035113db2ddSJeff Roberson struct suj_seg *seg;
2036113db2ddSJeff Roberson struct suj_seg *segn;
2037113db2ddSJeff Roberson uint64_t newseq;
2038113db2ddSJeff Roberson int discard;
2039113db2ddSJeff Roberson
2040113db2ddSJeff Roberson if (debug)
2041113db2ddSJeff Roberson printf("Pruning up to %jd\n", oldseq);
2042113db2ddSJeff Roberson /* First free the expired segments. */
2043113db2ddSJeff Roberson TAILQ_FOREACH_SAFE(seg, &allsegs, ss_next, segn) {
2044113db2ddSJeff Roberson if (seg->ss_rec.jsr_seq >= oldseq)
2045113db2ddSJeff Roberson continue;
2046113db2ddSJeff Roberson TAILQ_REMOVE(&allsegs, seg, ss_next);
2047113db2ddSJeff Roberson free(seg->ss_blk);
2048113db2ddSJeff Roberson free(seg);
2049113db2ddSJeff Roberson }
2050113db2ddSJeff Roberson /* Next ensure that segments are ordered properly. */
2051113db2ddSJeff Roberson seg = TAILQ_FIRST(&allsegs);
2052113db2ddSJeff Roberson if (seg == NULL) {
2053113db2ddSJeff Roberson if (debug)
2054113db2ddSJeff Roberson printf("Empty journal\n");
2055113db2ddSJeff Roberson return;
2056113db2ddSJeff Roberson }
2057113db2ddSJeff Roberson newseq = seg->ss_rec.jsr_seq;
2058113db2ddSJeff Roberson for (;;) {
2059113db2ddSJeff Roberson seg = TAILQ_LAST(&allsegs, seghd);
2060113db2ddSJeff Roberson if (seg->ss_rec.jsr_seq >= newseq)
2061113db2ddSJeff Roberson break;
2062113db2ddSJeff Roberson TAILQ_REMOVE(&allsegs, seg, ss_next);
2063113db2ddSJeff Roberson TAILQ_INSERT_HEAD(&allsegs, seg, ss_next);
2064113db2ddSJeff Roberson newseq = seg->ss_rec.jsr_seq;
2065113db2ddSJeff Roberson
2066113db2ddSJeff Roberson }
2067edad6026SXin LI if (newseq != oldseq) {
20682db62a6bSJeff Roberson TAILQ_FOREACH(seg, &allsegs, ss_next) {
20692db62a6bSJeff Roberson printf("%jd, ", seg->ss_rec.jsr_seq);
20702db62a6bSJeff Roberson }
20712db62a6bSJeff Roberson printf("\n");
2072edad6026SXin LI err_suj("Journal file sequence mismatch %jd != %jd\n",
2073113db2ddSJeff Roberson newseq, oldseq);
2074edad6026SXin LI }
2075113db2ddSJeff Roberson /*
2076113db2ddSJeff Roberson * The kernel may asynchronously write segments which can create
2077113db2ddSJeff Roberson * gaps in the sequence space. Throw away any segments after the
2078113db2ddSJeff Roberson * gap as the kernel guarantees only those that are contiguously
2079113db2ddSJeff Roberson * reachable are marked as completed.
2080113db2ddSJeff Roberson */
2081113db2ddSJeff Roberson discard = 0;
2082113db2ddSJeff Roberson TAILQ_FOREACH_SAFE(seg, &allsegs, ss_next, segn) {
2083113db2ddSJeff Roberson if (!discard && newseq++ == seg->ss_rec.jsr_seq) {
2084113db2ddSJeff Roberson jrecs += seg->ss_rec.jsr_cnt;
20850947d19aSKonstantin Belousov jbytes += seg->ss_rec.jsr_blocks * real_dev_bsize;
2086113db2ddSJeff Roberson continue;
2087113db2ddSJeff Roberson }
2088113db2ddSJeff Roberson discard = 1;
2089113db2ddSJeff Roberson if (debug)
2090113db2ddSJeff Roberson printf("Journal order mismatch %jd != %jd pruning\n",
2091113db2ddSJeff Roberson newseq-1, seg->ss_rec.jsr_seq);
2092113db2ddSJeff Roberson TAILQ_REMOVE(&allsegs, seg, ss_next);
2093113db2ddSJeff Roberson free(seg->ss_blk);
2094113db2ddSJeff Roberson free(seg);
2095113db2ddSJeff Roberson }
2096113db2ddSJeff Roberson if (debug)
2097113db2ddSJeff Roberson printf("Processing journal segments from %jd to %jd\n",
2098113db2ddSJeff Roberson oldseq, newseq-1);
2099113db2ddSJeff Roberson }
2100113db2ddSJeff Roberson
2101113db2ddSJeff Roberson /*
2102113db2ddSJeff Roberson * Verify the journal inode before attempting to read records.
2103113db2ddSJeff Roberson */
2104113db2ddSJeff Roberson static int
suj_verifyino(union dinode * dp)21055cc52631SKirk McKusick suj_verifyino(union dinode *dp)
2106113db2ddSJeff Roberson {
2107113db2ddSJeff Roberson
21085cc52631SKirk McKusick if (DIP(dp, di_nlink) != 1) {
2109623d7cb6SMatthew D Fleming printf("Invalid link count %d for journal inode %ju\n",
21105cc52631SKirk McKusick DIP(dp, di_nlink), (uintmax_t)sujino);
2111113db2ddSJeff Roberson return (-1);
2112113db2ddSJeff Roberson }
2113113db2ddSJeff Roberson
21145cc52631SKirk McKusick if ((DIP(dp, di_flags) & (SF_IMMUTABLE | SF_NOUNLINK)) !=
2115113db2ddSJeff Roberson (SF_IMMUTABLE | SF_NOUNLINK)) {
2116623d7cb6SMatthew D Fleming printf("Invalid flags 0x%X for journal inode %ju\n",
21175cc52631SKirk McKusick DIP(dp, di_flags), (uintmax_t)sujino);
2118113db2ddSJeff Roberson return (-1);
2119113db2ddSJeff Roberson }
2120113db2ddSJeff Roberson
21215cc52631SKirk McKusick if (DIP(dp, di_mode) != (IFREG | IREAD)) {
2122623d7cb6SMatthew D Fleming printf("Invalid mode %o for journal inode %ju\n",
21235cc52631SKirk McKusick DIP(dp, di_mode), (uintmax_t)sujino);
2124113db2ddSJeff Roberson return (-1);
2125113db2ddSJeff Roberson }
2126113db2ddSJeff Roberson
21275cc52631SKirk McKusick if (DIP(dp, di_size) < SUJ_MIN) {
2128623d7cb6SMatthew D Fleming printf("Invalid size %jd for journal inode %ju\n",
21295cc52631SKirk McKusick DIP(dp, di_size), (uintmax_t)sujino);
2130113db2ddSJeff Roberson return (-1);
2131113db2ddSJeff Roberson }
2132113db2ddSJeff Roberson
21335cc52631SKirk McKusick if (DIP(dp, di_modrev) != fs->fs_mtime) {
2134344b5bf8SKirk McKusick if (!bkgrdcheck || debug)
2135344b5bf8SKirk McKusick printf("Journal timestamp does not match "
2136344b5bf8SKirk McKusick "fs mount time\n");
2137113db2ddSJeff Roberson return (-1);
2138113db2ddSJeff Roberson }
2139113db2ddSJeff Roberson
2140113db2ddSJeff Roberson return (0);
2141113db2ddSJeff Roberson }
2142113db2ddSJeff Roberson
2143113db2ddSJeff Roberson struct jblocks {
2144113db2ddSJeff Roberson struct jextent *jb_extent; /* Extent array. */
2145113db2ddSJeff Roberson int jb_avail; /* Available extents. */
2146113db2ddSJeff Roberson int jb_used; /* Last used extent. */
2147113db2ddSJeff Roberson int jb_head; /* Allocator head. */
2148113db2ddSJeff Roberson int jb_off; /* Allocator extent offset. */
2149113db2ddSJeff Roberson };
2150113db2ddSJeff Roberson struct jextent {
2151113db2ddSJeff Roberson ufs2_daddr_t je_daddr; /* Disk block address. */
2152113db2ddSJeff Roberson int je_blocks; /* Disk block count. */
2153113db2ddSJeff Roberson };
2154113db2ddSJeff Roberson
21557703a6ffSScott Long static struct jblocks *suj_jblocks;
2156113db2ddSJeff Roberson
2157113db2ddSJeff Roberson static struct jblocks *
jblocks_create(void)2158113db2ddSJeff Roberson jblocks_create(void)
2159113db2ddSJeff Roberson {
2160113db2ddSJeff Roberson struct jblocks *jblocks;
2161113db2ddSJeff Roberson int size;
2162113db2ddSJeff Roberson
2163113db2ddSJeff Roberson jblocks = errmalloc(sizeof(*jblocks));
2164113db2ddSJeff Roberson jblocks->jb_avail = 10;
2165113db2ddSJeff Roberson jblocks->jb_used = 0;
2166113db2ddSJeff Roberson jblocks->jb_head = 0;
2167113db2ddSJeff Roberson jblocks->jb_off = 0;
2168113db2ddSJeff Roberson size = sizeof(struct jextent) * jblocks->jb_avail;
2169113db2ddSJeff Roberson jblocks->jb_extent = errmalloc(size);
2170113db2ddSJeff Roberson bzero(jblocks->jb_extent, size);
2171113db2ddSJeff Roberson
2172113db2ddSJeff Roberson return (jblocks);
2173113db2ddSJeff Roberson }
2174113db2ddSJeff Roberson
2175113db2ddSJeff Roberson /*
2176113db2ddSJeff Roberson * Return the next available disk block and the amount of contiguous
2177113db2ddSJeff Roberson * free space it contains.
2178113db2ddSJeff Roberson */
2179113db2ddSJeff Roberson static ufs2_daddr_t
jblocks_next(struct jblocks * jblocks,int bytes,int * actual)2180113db2ddSJeff Roberson jblocks_next(struct jblocks *jblocks, int bytes, int *actual)
2181113db2ddSJeff Roberson {
2182113db2ddSJeff Roberson struct jextent *jext;
2183113db2ddSJeff Roberson ufs2_daddr_t daddr;
2184113db2ddSJeff Roberson int freecnt;
2185113db2ddSJeff Roberson int blocks;
2186113db2ddSJeff Roberson
21875cc52631SKirk McKusick blocks = btodb(bytes);
2188113db2ddSJeff Roberson jext = &jblocks->jb_extent[jblocks->jb_head];
2189113db2ddSJeff Roberson freecnt = jext->je_blocks - jblocks->jb_off;
2190113db2ddSJeff Roberson if (freecnt == 0) {
2191113db2ddSJeff Roberson jblocks->jb_off = 0;
2192113db2ddSJeff Roberson if (++jblocks->jb_head > jblocks->jb_used)
2193113db2ddSJeff Roberson return (0);
2194113db2ddSJeff Roberson jext = &jblocks->jb_extent[jblocks->jb_head];
2195113db2ddSJeff Roberson freecnt = jext->je_blocks;
2196113db2ddSJeff Roberson }
2197113db2ddSJeff Roberson if (freecnt > blocks)
2198113db2ddSJeff Roberson freecnt = blocks;
21995cc52631SKirk McKusick *actual = dbtob(freecnt);
2200113db2ddSJeff Roberson daddr = jext->je_daddr + jblocks->jb_off;
2201113db2ddSJeff Roberson
2202113db2ddSJeff Roberson return (daddr);
2203113db2ddSJeff Roberson }
2204113db2ddSJeff Roberson
2205113db2ddSJeff Roberson /*
2206113db2ddSJeff Roberson * Advance the allocation head by a specified number of bytes, consuming
2207113db2ddSJeff Roberson * one journal segment.
2208113db2ddSJeff Roberson */
2209113db2ddSJeff Roberson static void
jblocks_advance(struct jblocks * jblocks,int bytes)2210113db2ddSJeff Roberson jblocks_advance(struct jblocks *jblocks, int bytes)
2211113db2ddSJeff Roberson {
2212113db2ddSJeff Roberson
22135cc52631SKirk McKusick jblocks->jb_off += btodb(bytes);
2214113db2ddSJeff Roberson }
2215113db2ddSJeff Roberson
2216113db2ddSJeff Roberson static void
jblocks_destroy(struct jblocks * jblocks)2217113db2ddSJeff Roberson jblocks_destroy(struct jblocks *jblocks)
2218113db2ddSJeff Roberson {
2219113db2ddSJeff Roberson
2220113db2ddSJeff Roberson free(jblocks->jb_extent);
2221113db2ddSJeff Roberson free(jblocks);
2222113db2ddSJeff Roberson }
2223113db2ddSJeff Roberson
2224113db2ddSJeff Roberson static void
jblocks_add(struct jblocks * jblocks,ufs2_daddr_t daddr,int blocks)2225113db2ddSJeff Roberson jblocks_add(struct jblocks *jblocks, ufs2_daddr_t daddr, int blocks)
2226113db2ddSJeff Roberson {
2227113db2ddSJeff Roberson struct jextent *jext;
2228113db2ddSJeff Roberson int size;
2229113db2ddSJeff Roberson
2230113db2ddSJeff Roberson jext = &jblocks->jb_extent[jblocks->jb_used];
2231113db2ddSJeff Roberson /* Adding the first block. */
2232113db2ddSJeff Roberson if (jext->je_daddr == 0) {
2233113db2ddSJeff Roberson jext->je_daddr = daddr;
2234113db2ddSJeff Roberson jext->je_blocks = blocks;
2235113db2ddSJeff Roberson return;
2236113db2ddSJeff Roberson }
2237113db2ddSJeff Roberson /* Extending the last extent. */
2238113db2ddSJeff Roberson if (jext->je_daddr + jext->je_blocks == daddr) {
2239113db2ddSJeff Roberson jext->je_blocks += blocks;
2240113db2ddSJeff Roberson return;
2241113db2ddSJeff Roberson }
2242113db2ddSJeff Roberson /* Adding a new extent. */
2243113db2ddSJeff Roberson if (++jblocks->jb_used == jblocks->jb_avail) {
2244113db2ddSJeff Roberson jblocks->jb_avail *= 2;
2245113db2ddSJeff Roberson size = sizeof(struct jextent) * jblocks->jb_avail;
2246113db2ddSJeff Roberson jext = errmalloc(size);
2247113db2ddSJeff Roberson bzero(jext, size);
2248113db2ddSJeff Roberson bcopy(jblocks->jb_extent, jext,
2249113db2ddSJeff Roberson sizeof(struct jextent) * jblocks->jb_used);
2250113db2ddSJeff Roberson free(jblocks->jb_extent);
2251113db2ddSJeff Roberson jblocks->jb_extent = jext;
2252113db2ddSJeff Roberson }
2253113db2ddSJeff Roberson jext = &jblocks->jb_extent[jblocks->jb_used];
2254113db2ddSJeff Roberson jext->je_daddr = daddr;
2255113db2ddSJeff Roberson jext->je_blocks = blocks;
2256113db2ddSJeff Roberson
2257113db2ddSJeff Roberson return;
2258113db2ddSJeff Roberson }
2259113db2ddSJeff Roberson
2260113db2ddSJeff Roberson /*
2261113db2ddSJeff Roberson * Add a file block from the journal to the extent map. We can't read
2262113db2ddSJeff Roberson * each file block individually because the kernel treats it as a circular
2263e5263025SElyes Haouas * buffer and segments may span multiple contiguous blocks.
2264113db2ddSJeff Roberson */
2265113db2ddSJeff Roberson static void
suj_add_block(ino_t ino,ufs_lbn_t lbn,ufs2_daddr_t blk,int frags)2266113db2ddSJeff Roberson suj_add_block(ino_t ino, ufs_lbn_t lbn, ufs2_daddr_t blk, int frags)
2267113db2ddSJeff Roberson {
2268113db2ddSJeff Roberson
2269113db2ddSJeff Roberson jblocks_add(suj_jblocks, fsbtodb(fs, blk), fsbtodb(fs, frags));
2270113db2ddSJeff Roberson }
2271113db2ddSJeff Roberson
2272113db2ddSJeff Roberson static void
suj_read(void)2273113db2ddSJeff Roberson suj_read(void)
2274113db2ddSJeff Roberson {
2275*772430ddSKirk McKusick uint8_t block[1 * 1024 * 1024] __aligned(LIBUFS_BUFALIGN);
2276113db2ddSJeff Roberson struct suj_seg *seg;
2277113db2ddSJeff Roberson struct jsegrec *recn;
2278113db2ddSJeff Roberson struct jsegrec *rec;
2279113db2ddSJeff Roberson ufs2_daddr_t blk;
2280113db2ddSJeff Roberson int readsize;
22814235bafaSPedro F. Giffuni int blocks;
2282113db2ddSJeff Roberson int recsize;
2283113db2ddSJeff Roberson int size;
228411ec5dd0SPedro F. Giffuni int i;
2285113db2ddSJeff Roberson
2286113db2ddSJeff Roberson /*
2287113db2ddSJeff Roberson * Read records until we exhaust the journal space. If we find
2288113db2ddSJeff Roberson * an invalid record we start searching for a valid segment header
2289113db2ddSJeff Roberson * at the next block. This is because we don't have a head/tail
2290113db2ddSJeff Roberson * pointer and must recover the information indirectly. At the gap
2291113db2ddSJeff Roberson * between the head and tail we won't necessarily have a valid
2292113db2ddSJeff Roberson * segment.
2293113db2ddSJeff Roberson */
2294113db2ddSJeff Roberson restart:
2295113db2ddSJeff Roberson for (;;) {
2296113db2ddSJeff Roberson size = sizeof(block);
2297113db2ddSJeff Roberson blk = jblocks_next(suj_jblocks, size, &readsize);
2298113db2ddSJeff Roberson if (blk == 0)
2299113db2ddSJeff Roberson return;
2300113db2ddSJeff Roberson size = readsize;
2301113db2ddSJeff Roberson /*
2302113db2ddSJeff Roberson * Read 1MB at a time and scan for records within this block.
2303113db2ddSJeff Roberson */
23045cc52631SKirk McKusick if (pread(fsreadfd, &block, size, dbtob(blk)) != size) {
2305edad6026SXin LI err_suj("Error reading journal block %jd\n",
2306113db2ddSJeff Roberson (intmax_t)blk);
2307edad6026SXin LI }
2308113db2ddSJeff Roberson for (rec = (void *)block; size; size -= recsize,
2309113db2ddSJeff Roberson rec = (struct jsegrec *)((uintptr_t)rec + recsize)) {
23100947d19aSKonstantin Belousov recsize = real_dev_bsize;
2311113db2ddSJeff Roberson if (rec->jsr_time != fs->fs_mtime) {
23125cc52631SKirk McKusick #ifdef notdef
2313113db2ddSJeff Roberson if (debug)
2314113db2ddSJeff Roberson printf("Rec time %jd != fs mtime %jd\n",
2315113db2ddSJeff Roberson rec->jsr_time, fs->fs_mtime);
23165cc52631SKirk McKusick #endif
2317113db2ddSJeff Roberson jblocks_advance(suj_jblocks, recsize);
2318113db2ddSJeff Roberson continue;
2319113db2ddSJeff Roberson }
2320113db2ddSJeff Roberson if (rec->jsr_cnt == 0) {
2321113db2ddSJeff Roberson if (debug)
2322113db2ddSJeff Roberson printf("Found illegal count %d\n",
2323113db2ddSJeff Roberson rec->jsr_cnt);
2324113db2ddSJeff Roberson jblocks_advance(suj_jblocks, recsize);
2325113db2ddSJeff Roberson continue;
2326113db2ddSJeff Roberson }
2327113db2ddSJeff Roberson blocks = rec->jsr_blocks;
23280947d19aSKonstantin Belousov recsize = blocks * real_dev_bsize;
2329113db2ddSJeff Roberson if (recsize > size) {
2330113db2ddSJeff Roberson /*
2331113db2ddSJeff Roberson * We may just have run out of buffer, restart
2332113db2ddSJeff Roberson * the loop to re-read from this spot.
2333113db2ddSJeff Roberson */
2334113db2ddSJeff Roberson if (size < fs->fs_bsize &&
2335113db2ddSJeff Roberson size != readsize &&
2336113db2ddSJeff Roberson recsize <= fs->fs_bsize)
2337113db2ddSJeff Roberson goto restart;
2338113db2ddSJeff Roberson if (debug)
2339239597e0SKirk McKusick printf("Found invalid segsize "
2340239597e0SKirk McKusick "%d > %d\n", recsize, size);
23410947d19aSKonstantin Belousov recsize = real_dev_bsize;
2342113db2ddSJeff Roberson jblocks_advance(suj_jblocks, recsize);
2343113db2ddSJeff Roberson continue;
2344113db2ddSJeff Roberson }
2345113db2ddSJeff Roberson /*
2346113db2ddSJeff Roberson * Verify that all blocks in the segment are present.
2347113db2ddSJeff Roberson */
2348113db2ddSJeff Roberson for (i = 1; i < blocks; i++) {
23490947d19aSKonstantin Belousov recn = (void *)((uintptr_t)rec) + i *
23500947d19aSKonstantin Belousov real_dev_bsize;
2351113db2ddSJeff Roberson if (recn->jsr_seq == rec->jsr_seq &&
2352113db2ddSJeff Roberson recn->jsr_time == rec->jsr_time)
2353113db2ddSJeff Roberson continue;
2354113db2ddSJeff Roberson if (debug)
2355113db2ddSJeff Roberson printf("Incomplete record %jd (%d)\n",
2356113db2ddSJeff Roberson rec->jsr_seq, i);
23570947d19aSKonstantin Belousov recsize = i * real_dev_bsize;
2358113db2ddSJeff Roberson jblocks_advance(suj_jblocks, recsize);
2359113db2ddSJeff Roberson goto restart;
2360113db2ddSJeff Roberson }
2361113db2ddSJeff Roberson seg = errmalloc(sizeof(*seg));
2362113db2ddSJeff Roberson seg->ss_blk = errmalloc(recsize);
2363113db2ddSJeff Roberson seg->ss_rec = *rec;
2364113db2ddSJeff Roberson bcopy((void *)rec, seg->ss_blk, recsize);
2365113db2ddSJeff Roberson if (rec->jsr_oldest > oldseq)
2366113db2ddSJeff Roberson oldseq = rec->jsr_oldest;
2367113db2ddSJeff Roberson TAILQ_INSERT_TAIL(&allsegs, seg, ss_next);
2368113db2ddSJeff Roberson jblocks_advance(suj_jblocks, recsize);
2369113db2ddSJeff Roberson }
2370113db2ddSJeff Roberson }
2371113db2ddSJeff Roberson }
2372113db2ddSJeff Roberson
2373113db2ddSJeff Roberson /*
2374113db2ddSJeff Roberson * Orchestrate the verification of a filesystem via the softupdates journal.
2375113db2ddSJeff Roberson */
2376113db2ddSJeff Roberson int
suj_check(const char * filesys)2377113db2ddSJeff Roberson suj_check(const char *filesys)
2378113db2ddSJeff Roberson {
23795cc52631SKirk McKusick struct inodesc idesc;
23805cc52631SKirk McKusick struct csum *cgsum;
23816a71277cSKirk McKusick union dinode *dp, *jip;
23825cc52631SKirk McKusick struct inode ip;
2383113db2ddSJeff Roberson uint64_t blocks;
23845cc52631SKirk McKusick int i, retval;
2385edad6026SXin LI struct suj_seg *seg;
2386edad6026SXin LI struct suj_seg *segn;
2387113db2ddSJeff Roberson
23887703a6ffSScott Long initsuj();
2389a6bbdf81SKirk McKusick fs = &sblock;
23905cc52631SKirk McKusick if (real_dev_bsize == 0 && ioctl(fsreadfd, DIOCGSECTORSIZE,
2391a6bbdf81SKirk McKusick &real_dev_bsize) == -1)
2392a6bbdf81SKirk McKusick real_dev_bsize = secsize;
2393a6bbdf81SKirk McKusick if (debug)
2394a6bbdf81SKirk McKusick printf("dev_bsize %u\n", real_dev_bsize);
2395edad6026SXin LI
2396edad6026SXin LI /*
2397edad6026SXin LI * Set an exit point when SUJ check failed
2398edad6026SXin LI */
2399edad6026SXin LI retval = setjmp(jmpbuf);
2400edad6026SXin LI if (retval != 0) {
2401edad6026SXin LI pwarn("UNEXPECTED SU+J INCONSISTENCY\n");
2402edad6026SXin LI TAILQ_FOREACH_SAFE(seg, &allsegs, ss_next, segn) {
2403edad6026SXin LI TAILQ_REMOVE(&allsegs, seg, ss_next);
2404edad6026SXin LI free(seg->ss_blk);
2405edad6026SXin LI free(seg);
2406edad6026SXin LI }
2407edad6026SXin LI if (reply("FALLBACK TO FULL FSCK") == 0) {
2408edad6026SXin LI ckfini(0);
2409edad6026SXin LI exit(EEXIT);
2410edad6026SXin LI } else
2411edad6026SXin LI return (-1);
2412edad6026SXin LI }
2413edad6026SXin LI
2414113db2ddSJeff Roberson /*
24155cc52631SKirk McKusick * Search the root directory for the SUJ_FILE.
2416113db2ddSJeff Roberson */
24175cc52631SKirk McKusick idesc.id_type = DATA;
24185cc52631SKirk McKusick idesc.id_fix = IGNORE;
24195cc52631SKirk McKusick idesc.id_number = UFS_ROOTINO;
24205cc52631SKirk McKusick idesc.id_func = findino;
24215cc52631SKirk McKusick idesc.id_name = SUJ_FILE;
24225cc52631SKirk McKusick ginode(UFS_ROOTINO, &ip);
24236a71277cSKirk McKusick dp = ip.i_dp;
24246a71277cSKirk McKusick if ((DIP(dp, di_mode) & IFMT) != IFDIR) {
24256a71277cSKirk McKusick irelse(&ip);
24266a71277cSKirk McKusick err_suj("root inode is not a directory\n");
24276a71277cSKirk McKusick }
24286a71277cSKirk McKusick if (DIP(dp, di_size) < 0 || DIP(dp, di_size) > MAXDIRSIZE) {
24296a71277cSKirk McKusick irelse(&ip);
24306a71277cSKirk McKusick err_suj("negative or oversized root directory %jd\n",
24316a71277cSKirk McKusick (uintmax_t)DIP(dp, di_size));
24326a71277cSKirk McKusick }
24336a71277cSKirk McKusick if ((ckinode(dp, &idesc) & FOUND) == FOUND) {
24345cc52631SKirk McKusick sujino = idesc.id_parent;
24355cc52631SKirk McKusick irelse(&ip);
24365cc52631SKirk McKusick } else {
2437344b5bf8SKirk McKusick if (!bkgrdcheck || debug)
2438344b5bf8SKirk McKusick printf("Journal inode removed. "
2439344b5bf8SKirk McKusick "Use tunefs to re-create.\n");
2440edad6026SXin LI sblock.fs_flags &= ~FS_SUJ;
2441edad6026SXin LI sblock.fs_sujfree = 0;
24425cc52631SKirk McKusick irelse(&ip);
2443edad6026SXin LI return (-1);
2444edad6026SXin LI }
2445113db2ddSJeff Roberson /*
2446113db2ddSJeff Roberson * Fetch the journal inode and verify it.
2447113db2ddSJeff Roberson */
24485cc52631SKirk McKusick ginode(sujino, &ip);
24495cc52631SKirk McKusick jip = ip.i_dp;
2450344b5bf8SKirk McKusick if (!bkgrdcheck || debug)
2451113db2ddSJeff Roberson printf("** SU+J Recovering %s\n", filesys);
24525cc52631SKirk McKusick if (suj_verifyino(jip) != 0 || (!preen && !reply("USE JOURNAL"))) {
24535cc52631SKirk McKusick irelse(&ip);
2454113db2ddSJeff Roberson return (-1);
24555cc52631SKirk McKusick }
2456113db2ddSJeff Roberson /*
2457113db2ddSJeff Roberson * Build a list of journal blocks in jblocks before parsing the
2458113db2ddSJeff Roberson * available journal blocks in with suj_read().
2459113db2ddSJeff Roberson */
2460344b5bf8SKirk McKusick if (!bkgrdcheck || debug)
2461623d7cb6SMatthew D Fleming printf("** Reading %jd byte journal from inode %ju.\n",
2462623d7cb6SMatthew D Fleming DIP(jip, di_size), (uintmax_t)sujino);
2463113db2ddSJeff Roberson suj_jblocks = jblocks_create();
2464113db2ddSJeff Roberson blocks = ino_visit(jip, sujino, suj_add_block, 0);
2465edad6026SXin LI if (blocks != numfrags(fs, DIP(jip, di_size))) {
2466344b5bf8SKirk McKusick if (!bkgrdcheck || debug)
2467344b5bf8SKirk McKusick printf("Sparse journal inode %ju.\n",
2468344b5bf8SKirk McKusick (uintmax_t)sujino);
24695cc52631SKirk McKusick irelse(&ip);
2470edad6026SXin LI return (-1);
2471edad6026SXin LI }
2472344b5bf8SKirk McKusick /* If journal is valid then do journal check rather than background */
2473344b5bf8SKirk McKusick if (bkgrdcheck) {
2474344b5bf8SKirk McKusick irelse(&ip);
2475344b5bf8SKirk McKusick return (0);
2476344b5bf8SKirk McKusick }
24775cc52631SKirk McKusick irelse(&ip);
2478113db2ddSJeff Roberson suj_read();
2479113db2ddSJeff Roberson jblocks_destroy(suj_jblocks);
2480113db2ddSJeff Roberson suj_jblocks = NULL;
2481113db2ddSJeff Roberson if (preen || reply("RECOVER")) {
2482113db2ddSJeff Roberson printf("** Building recovery table.\n");
2483113db2ddSJeff Roberson suj_prune();
2484113db2ddSJeff Roberson suj_build();
2485113db2ddSJeff Roberson cg_apply(cg_build);
2486113db2ddSJeff Roberson printf("** Resolving unreferenced inode list.\n");
2487113db2ddSJeff Roberson ino_unlinked();
2488113db2ddSJeff Roberson printf("** Processing journal entries.\n");
2489113db2ddSJeff Roberson cg_apply(cg_trunc);
2490113db2ddSJeff Roberson cg_apply(cg_check_blk);
2491364e7245SKonstantin Belousov cg_apply(cg_adj_blk);
2492113db2ddSJeff Roberson cg_apply(cg_check_ino);
2493113db2ddSJeff Roberson }
2494239597e0SKirk McKusick if (preen == 0 && (jrecs > 0 || jbytes > 0) &&
2495239597e0SKirk McKusick reply("WRITE CHANGES") == 0)
2496113db2ddSJeff Roberson return (0);
2497113db2ddSJeff Roberson /*
2498460ed610SKirk McKusick * Check block counts of snapshot inodes and
2499460ed610SKirk McKusick * make copies of any needed snapshot blocks.
2500460ed610SKirk McKusick */
2501460ed610SKirk McKusick for (i = 0; i < snapcnt; i++)
2502460ed610SKirk McKusick check_blkcnt(&snaplist[i]);
2503460ed610SKirk McKusick snapflush(suj_checkblkavail);
2504460ed610SKirk McKusick /*
25055cc52631SKirk McKusick * Recompute the fs summary info from correct cs summaries.
2506113db2ddSJeff Roberson */
25075cc52631SKirk McKusick bzero(&fs->fs_cstotal, sizeof(struct csum_total));
25085cc52631SKirk McKusick for (i = 0; i < fs->fs_ncg; i++) {
25095cc52631SKirk McKusick cgsum = &fs->fs_cs(fs, i);
25105cc52631SKirk McKusick fs->fs_cstotal.cs_nffree += cgsum->cs_nffree;
25115cc52631SKirk McKusick fs->fs_cstotal.cs_nbfree += cgsum->cs_nbfree;
25125cc52631SKirk McKusick fs->fs_cstotal.cs_nifree += cgsum->cs_nifree;
25135cc52631SKirk McKusick fs->fs_cstotal.cs_ndir += cgsum->cs_ndir;
25145cc52631SKirk McKusick }
25155cc52631SKirk McKusick fs->fs_pendinginodes = 0;
25165cc52631SKirk McKusick fs->fs_pendingblocks = 0;
25175cc52631SKirk McKusick fs->fs_clean = 1;
25185cc52631SKirk McKusick fs->fs_time = time(NULL);
25195cc52631SKirk McKusick fs->fs_mtime = time(NULL);
25205cc52631SKirk McKusick sbdirty();
25215cc52631SKirk McKusick ckfini(1);
2522edad6026SXin LI if (jrecs > 0 || jbytes > 0) {
2523239597e0SKirk McKusick printf("** %jd journal records in %jd bytes for %.2f%% "
2524239597e0SKirk McKusick "utilization\n", jrecs, jbytes,
2525239597e0SKirk McKusick ((float)jrecs / (float)(jbytes / JREC_SIZE)) * 100);
2526239597e0SKirk McKusick printf("** Freed %jd inodes (%jd dirs) %jd blocks, and %jd "
2527239597e0SKirk McKusick "frags.\n", freeinos, freedir, freeblocks, freefrags);
2528edad6026SXin LI }
2529113db2ddSJeff Roberson
2530113db2ddSJeff Roberson return (0);
2531113db2ddSJeff Roberson }
25327703a6ffSScott Long
25337703a6ffSScott Long static void
initsuj(void)25347703a6ffSScott Long initsuj(void)
25357703a6ffSScott Long {
25367703a6ffSScott Long int i;
25377703a6ffSScott Long
25385cc52631SKirk McKusick for (i = 0; i < HASHSIZE; i++)
25397703a6ffSScott Long LIST_INIT(&cghash[i]);
25407703a6ffSScott Long lastcg = NULL;
25417703a6ffSScott Long TAILQ_INIT(&allsegs);
25427703a6ffSScott Long oldseq = 0;
25437703a6ffSScott Long fs = NULL;
25447703a6ffSScott Long sujino = 0;
25457703a6ffSScott Long freefrags = 0;
25467703a6ffSScott Long freeblocks = 0;
25477703a6ffSScott Long freeinos = 0;
25487703a6ffSScott Long freedir = 0;
25497703a6ffSScott Long jbytes = 0;
25507703a6ffSScott Long jrecs = 0;
25517703a6ffSScott Long suj_jblocks = NULL;
25527703a6ffSScott Long }
2553