lfs_debug.c revision 1.38 1 1.38 dholland /* $NetBSD: lfs_debug.c,v 1.38 2009/07/19 04:16:23 dholland Exp $ */
2 1.2 cgd
3 1.9 perseant /*-
4 1.20 perseant * Copyright (c) 1999, 2000, 2001, 2002, 2003 The NetBSD Foundation, Inc.
5 1.9 perseant * All rights reserved.
6 1.9 perseant *
7 1.9 perseant * This code is derived from software contributed to The NetBSD Foundation
8 1.9 perseant * by Konrad E. Schroder <perseant (at) hhhh.org>.
9 1.9 perseant *
10 1.9 perseant * Redistribution and use in source and binary forms, with or without
11 1.9 perseant * modification, are permitted provided that the following conditions
12 1.9 perseant * are met:
13 1.9 perseant * 1. Redistributions of source code must retain the above copyright
14 1.9 perseant * notice, this list of conditions and the following disclaimer.
15 1.9 perseant * 2. Redistributions in binary form must reproduce the above copyright
16 1.9 perseant * notice, this list of conditions and the following disclaimer in the
17 1.9 perseant * documentation and/or other materials provided with the distribution.
18 1.9 perseant *
19 1.9 perseant * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20 1.9 perseant * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21 1.9 perseant * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 1.9 perseant * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23 1.9 perseant * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 1.9 perseant * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 1.9 perseant * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 1.9 perseant * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 1.9 perseant * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 1.9 perseant * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 1.9 perseant * POSSIBILITY OF SUCH DAMAGE.
30 1.9 perseant */
31 1.1 mycroft /*
32 1.1 mycroft * Copyright (c) 1991, 1993
33 1.1 mycroft * The Regents of the University of California. All rights reserved.
34 1.1 mycroft *
35 1.1 mycroft * Redistribution and use in source and binary forms, with or without
36 1.1 mycroft * modification, are permitted provided that the following conditions
37 1.1 mycroft * are met:
38 1.1 mycroft * 1. Redistributions of source code must retain the above copyright
39 1.1 mycroft * notice, this list of conditions and the following disclaimer.
40 1.1 mycroft * 2. Redistributions in binary form must reproduce the above copyright
41 1.1 mycroft * notice, this list of conditions and the following disclaimer in the
42 1.1 mycroft * documentation and/or other materials provided with the distribution.
43 1.23 agc * 3. Neither the name of the University nor the names of its contributors
44 1.1 mycroft * may be used to endorse or promote products derived from this software
45 1.1 mycroft * without specific prior written permission.
46 1.1 mycroft *
47 1.1 mycroft * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
48 1.1 mycroft * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
49 1.1 mycroft * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
50 1.1 mycroft * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
51 1.1 mycroft * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
52 1.1 mycroft * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
53 1.1 mycroft * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
54 1.1 mycroft * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
55 1.1 mycroft * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
56 1.1 mycroft * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
57 1.1 mycroft * SUCH DAMAGE.
58 1.1 mycroft *
59 1.2 cgd * @(#)lfs_debug.c 8.1 (Berkeley) 6/11/93
60 1.1 mycroft */
61 1.1 mycroft
62 1.35 lukem #include <sys/cdefs.h>
63 1.38 dholland __KERNEL_RCSID(0, "$NetBSD: lfs_debug.c,v 1.38 2009/07/19 04:16:23 dholland Exp $");
64 1.35 lukem
65 1.1 mycroft #ifdef DEBUG
66 1.14 lukem
67 1.26 perseant #include <machine/stdarg.h>
68 1.26 perseant
69 1.1 mycroft #include <sys/param.h>
70 1.3 christos #include <sys/systm.h>
71 1.1 mycroft #include <sys/namei.h>
72 1.1 mycroft #include <sys/vnode.h>
73 1.1 mycroft #include <sys/mount.h>
74 1.16 perseant #include <sys/buf.h>
75 1.26 perseant #include <sys/syslog.h>
76 1.34 christos #include <sys/proc.h>
77 1.1 mycroft
78 1.1 mycroft #include <ufs/ufs/inode.h>
79 1.1 mycroft #include <ufs/lfs/lfs.h>
80 1.1 mycroft #include <ufs/lfs/lfs_extern.h>
81 1.16 perseant
82 1.16 perseant int lfs_lognum;
83 1.16 perseant struct lfs_log_entry lfs_log[LFS_LOGLENGTH];
84 1.16 perseant
85 1.38 dholland int
86 1.38 dholland lfs_bwrite_log(struct buf *bp, const char *file, int line)
87 1.16 perseant {
88 1.21 perseant struct vop_bwrite_args a;
89 1.38 dholland
90 1.21 perseant a.a_desc = VDESC(vop_bwrite);
91 1.21 perseant a.a_bp = bp;
92 1.16 perseant
93 1.36 ad if (!(bp->b_flags & B_GATHERED) && !(bp->b_oflags & BO_DELWRI)) {
94 1.30 perseant LFS_ENTER_LOG("write", file, line, bp->b_lblkno, bp->b_flags,
95 1.30 perseant curproc->p_pid);
96 1.30 perseant }
97 1.21 perseant return (VCALL(bp->b_vp, VOFFSET(vop_bwrite), &a));
98 1.16 perseant }
99 1.16 perseant
100 1.38 dholland void
101 1.38 dholland lfs_dumplog(void)
102 1.16 perseant {
103 1.16 perseant int i;
104 1.31 christos const char *cp;
105 1.16 perseant
106 1.30 perseant for (i = lfs_lognum; i != (lfs_lognum - 1) % LFS_LOGLENGTH;
107 1.30 perseant i = (i + 1) % LFS_LOGLENGTH)
108 1.16 perseant if (lfs_log[i].file) {
109 1.30 perseant /* Only print out basename, for readability */
110 1.30 perseant cp = lfs_log[i].file;
111 1.30 perseant while(*cp)
112 1.30 perseant ++cp;
113 1.30 perseant while(*cp != '/' && cp > lfs_log[i].file)
114 1.30 perseant --cp;
115 1.30 perseant
116 1.30 perseant printf("lbn %" PRId64 " %s %lx %d, %d %s\n",
117 1.16 perseant lfs_log[i].block,
118 1.16 perseant lfs_log[i].op,
119 1.16 perseant lfs_log[i].flags,
120 1.30 perseant lfs_log[i].pid,
121 1.16 perseant lfs_log[i].line,
122 1.30 perseant cp);
123 1.16 perseant }
124 1.16 perseant }
125 1.1 mycroft
126 1.25 perry void
127 1.12 perseant lfs_dump_super(struct lfs *lfsp)
128 1.1 mycroft {
129 1.1 mycroft int i;
130 1.25 perry
131 1.6 christos printf("%s%x\t%s%x\t%s%d\t%s%d\n",
132 1.9 perseant "magic ", lfsp->lfs_magic,
133 1.9 perseant "version ", lfsp->lfs_version,
134 1.9 perseant "size ", lfsp->lfs_size,
135 1.9 perseant "ssize ", lfsp->lfs_ssize);
136 1.6 christos printf("%s%d\t%s%d\t%s%d\t%s%d\n",
137 1.9 perseant "dsize ", lfsp->lfs_dsize,
138 1.9 perseant "bsize ", lfsp->lfs_bsize,
139 1.9 perseant "fsize ", lfsp->lfs_fsize,
140 1.9 perseant "frag ", lfsp->lfs_frag);
141 1.25 perry
142 1.6 christos printf("%s%d\t%s%d\t%s%d\t%s%d\n",
143 1.9 perseant "minfree ", lfsp->lfs_minfree,
144 1.9 perseant "inopb ", lfsp->lfs_inopb,
145 1.9 perseant "ifpb ", lfsp->lfs_ifpb,
146 1.9 perseant "nindir ", lfsp->lfs_nindir);
147 1.25 perry
148 1.6 christos printf("%s%d\t%s%d\t%s%d\t%s%d\n",
149 1.9 perseant "nseg ", lfsp->lfs_nseg,
150 1.9 perseant "nspf ", lfsp->lfs_nspf,
151 1.9 perseant "cleansz ", lfsp->lfs_cleansz,
152 1.9 perseant "segtabsz ", lfsp->lfs_segtabsz);
153 1.25 perry
154 1.8 fvdl printf("%s%x\t%s%d\t%s%lx\t%s%d\n",
155 1.9 perseant "segmask ", lfsp->lfs_segmask,
156 1.9 perseant "segshift ", lfsp->lfs_segshift,
157 1.9 perseant "bmask ", (unsigned long)lfsp->lfs_bmask,
158 1.9 perseant "bshift ", lfsp->lfs_bshift);
159 1.25 perry
160 1.8 fvdl printf("%s%lu\t%s%d\t%s%lx\t%s%u\n",
161 1.9 perseant "ffmask ", (unsigned long)lfsp->lfs_ffmask,
162 1.9 perseant "ffshift ", lfsp->lfs_ffshift,
163 1.9 perseant "fbmask ", (unsigned long)lfsp->lfs_fbmask,
164 1.9 perseant "fbshift ", lfsp->lfs_fbshift);
165 1.25 perry
166 1.6 christos printf("%s%d\t%s%d\t%s%x\t%s%qx\n",
167 1.9 perseant "sushift ", lfsp->lfs_sushift,
168 1.9 perseant "fsbtodb ", lfsp->lfs_fsbtodb,
169 1.9 perseant "cksum ", lfsp->lfs_cksum,
170 1.9 perseant "maxfilesize ", (long long)lfsp->lfs_maxfilesize);
171 1.25 perry
172 1.6 christos printf("Superblock disk addresses:");
173 1.1 mycroft for (i = 0; i < LFS_MAXNUMSB; i++)
174 1.6 christos printf(" %x", lfsp->lfs_sboffs[i]);
175 1.6 christos printf("\n");
176 1.25 perry
177 1.6 christos printf("Checkpoint Info\n");
178 1.6 christos printf("%s%d\t%s%x\t%s%d\n",
179 1.20 perseant "freehd ", lfsp->lfs_freehd,
180 1.9 perseant "idaddr ", lfsp->lfs_idaddr,
181 1.9 perseant "ifile ", lfsp->lfs_ifile);
182 1.6 christos printf("%s%x\t%s%d\t%s%x\t%s%x\t%s%x\t%s%x\n",
183 1.9 perseant "bfree ", lfsp->lfs_bfree,
184 1.9 perseant "nfiles ", lfsp->lfs_nfiles,
185 1.9 perseant "lastseg ", lfsp->lfs_lastseg,
186 1.9 perseant "nextseg ", lfsp->lfs_nextseg,
187 1.9 perseant "curseg ", lfsp->lfs_curseg,
188 1.9 perseant "offset ", lfsp->lfs_offset);
189 1.12 perseant printf("tstamp %llx\n", (long long)lfsp->lfs_tstamp);
190 1.1 mycroft }
191 1.1 mycroft
192 1.1 mycroft void
193 1.22 fvdl lfs_dump_dinode(struct ufs1_dinode *dip)
194 1.1 mycroft {
195 1.1 mycroft int i;
196 1.25 perry
197 1.10 perseant printf("%s%u\t%s%d\t%s%u\t%s%u\t%s%qu\t%s%d\n",
198 1.10 perseant "mode ", dip->di_mode,
199 1.10 perseant "nlink ", dip->di_nlink,
200 1.10 perseant "uid ", dip->di_uid,
201 1.10 perseant "gid ", dip->di_gid,
202 1.10 perseant "size ", (long long)dip->di_size,
203 1.10 perseant "blocks ", dip->di_blocks);
204 1.6 christos printf("inum %d\n", dip->di_inumber);
205 1.6 christos printf("Direct Addresses\n");
206 1.1 mycroft for (i = 0; i < NDADDR; i++) {
207 1.6 christos printf("\t%x", dip->di_db[i]);
208 1.1 mycroft if ((i % 6) == 5)
209 1.6 christos printf("\n");
210 1.1 mycroft }
211 1.1 mycroft for (i = 0; i < NIADDR; i++)
212 1.6 christos printf("\t%x", dip->di_ib[i]);
213 1.6 christos printf("\n");
214 1.9 perseant }
215 1.9 perseant
216 1.9 perseant void
217 1.9 perseant lfs_check_segsum(struct lfs *fs, struct segment *sp, char *file, int line)
218 1.9 perseant {
219 1.24 simonb int actual;
220 1.9 perseant #if 0
221 1.25 perry static int offset;
222 1.9 perseant #endif
223 1.25 perry
224 1.24 simonb if ((actual = 1) == 1)
225 1.9 perseant return; /* XXXX not checking this anymore, really */
226 1.25 perry
227 1.19 yamt if (sp->sum_bytes_left >= FINFOSIZE
228 1.9 perseant && sp->fip->fi_nblocks > 512) {
229 1.9 perseant printf("%s:%d: fi_nblocks = %d\n",file,line,sp->fip->fi_nblocks);
230 1.9 perseant #ifdef DDB
231 1.9 perseant Debugger();
232 1.9 perseant #endif
233 1.9 perseant }
234 1.25 perry
235 1.15 chs if (sp->sum_bytes_left > 484) {
236 1.9 perseant printf("%s:%d: bad value (%d = -%d) for sum_bytes_left\n",
237 1.12 perseant file, line, sp->sum_bytes_left, fs->lfs_sumsize-sp->sum_bytes_left);
238 1.9 perseant panic("too many bytes");
239 1.9 perseant }
240 1.25 perry
241 1.12 perseant actual = fs->lfs_sumsize
242 1.9 perseant /* amount taken up by FINFOs */
243 1.9 perseant - ((char *)&(sp->fip->fi_blocks[sp->fip->fi_nblocks]) - (char *)(sp->segsum))
244 1.9 perseant /* amount taken up by inode blocks */
245 1.19 yamt - sizeof(int32_t)*((sp->ninodes+INOPB(fs)-1) / INOPB(fs));
246 1.9 perseant #if 0
247 1.25 perry if (actual - sp->sum_bytes_left < offset)
248 1.25 perry {
249 1.9 perseant printf("%s:%d: offset changed %d -> %d\n", file, line,
250 1.9 perseant offset, actual-sp->sum_bytes_left);
251 1.9 perseant offset = actual - sp->sum_bytes_left;
252 1.9 perseant /* panic("byte mismatch"); */
253 1.9 perseant }
254 1.9 perseant #endif
255 1.9 perseant #if 0
256 1.15 chs if (actual != sp->sum_bytes_left)
257 1.9 perseant printf("%s:%d: warning: segsum miscalc at %d (-%d => %d)\n",
258 1.9 perseant file, line, sp->sum_bytes_left,
259 1.12 perseant fs->lfs_sumsize-sp->sum_bytes_left,
260 1.9 perseant actual);
261 1.9 perseant #endif
262 1.15 chs if (sp->sum_bytes_left > 0
263 1.12 perseant && ((char *)(sp->segsum))[fs->lfs_sumsize
264 1.19 yamt - sizeof(int32_t) * ((sp->ninodes+INOPB(fs)-1) / INOPB(fs))
265 1.9 perseant - sp->sum_bytes_left] != '\0') {
266 1.9 perseant printf("%s:%d: warning: segsum overwrite at %d (-%d => %d)\n",
267 1.9 perseant file, line, sp->sum_bytes_left,
268 1.12 perseant fs->lfs_sumsize-sp->sum_bytes_left,
269 1.9 perseant actual);
270 1.9 perseant #ifdef DDB
271 1.9 perseant Debugger();
272 1.9 perseant #endif
273 1.9 perseant }
274 1.9 perseant }
275 1.9 perseant
276 1.9 perseant void
277 1.12 perseant lfs_check_bpp(struct lfs *fs, struct segment *sp, char *file, int line)
278 1.9 perseant {
279 1.9 perseant daddr_t blkno;
280 1.9 perseant struct buf **bpp;
281 1.9 perseant struct vnode *devvp;
282 1.25 perry
283 1.9 perseant devvp = VTOI(fs->lfs_ivnode)->i_devvp;
284 1.9 perseant blkno = (*(sp->bpp))->b_blkno;
285 1.15 chs for (bpp = sp->bpp; bpp < sp->cbpp; bpp++) {
286 1.15 chs if ((*bpp)->b_blkno != blkno) {
287 1.15 chs if ((*bpp)->b_vp == devvp) {
288 1.18 kleink printf("Oops, would misplace raw block "
289 1.18 kleink "0x%" PRIx64 " at 0x%" PRIx64 "\n",
290 1.9 perseant (*bpp)->b_blkno,
291 1.9 perseant blkno);
292 1.9 perseant } else {
293 1.32 christos printf("%s:%d: misplace ino %llu lbn %" PRId64
294 1.18 kleink " at 0x%" PRIx64 " instead of "
295 1.18 kleink "0x%" PRIx64 "\n",
296 1.9 perseant file, line,
297 1.32 christos (unsigned long long)
298 1.32 christos VTOI((*bpp)->b_vp)->i_number,
299 1.32 christos (*bpp)->b_lblkno,
300 1.9 perseant blkno,
301 1.9 perseant (*bpp)->b_blkno);
302 1.9 perseant }
303 1.9 perseant }
304 1.12 perseant blkno += fsbtodb(fs, btofsb(fs, (*bpp)->b_bcount));
305 1.9 perseant }
306 1.1 mycroft }
307 1.26 perseant
308 1.26 perseant int lfs_debug_log_subsys[DLOG_MAX];
309 1.26 perseant
310 1.26 perseant /*
311 1.26 perseant * Log events from various debugging areas of LFS, depending on what
312 1.26 perseant * the user has enabled.
313 1.26 perseant */
314 1.26 perseant void
315 1.26 perseant lfs_debug_log(int subsys, const char *fmt, ...)
316 1.26 perseant {
317 1.27 simonb va_list ap;
318 1.26 perseant
319 1.26 perseant /* If not debugging this subsys, exit */
320 1.26 perseant if (lfs_debug_log_subsys[subsys] == 0)
321 1.26 perseant return;
322 1.26 perseant
323 1.29 christos va_start(ap, fmt);
324 1.28 christos vlog(LOG_DEBUG, fmt, ap);
325 1.27 simonb va_end(ap);
326 1.26 perseant }
327 1.1 mycroft #endif /* DEBUG */
328