2 * Copyright (c) 2005 The DragonFly Project. All rights reserved.
4 * This code is derived from software contributed to The DragonFly Project
5 * by Matthew Dillon <dillon@backplane.com>
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in
15 * the documentation and/or other materials provided with the
17 * 3. Neither the name of The DragonFly Project nor the names of its
18 * contributors may be used to endorse or promote products derived
19 * from this software without specific, prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
24 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
25 * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
26 * INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING,
27 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
28 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
29 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
30 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
31 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * $FreeBSD: src/sbin/dump/cache.c,v 1.1.2.1 2003/01/25 18:54:59 dillon Exp $
35 * $DragonFly: src/sbin/dump/cache.c,v 1.5 2006/10/21 04:10:02 pavalos Exp $
38 * Block cache for dump
41 #include <sys/param.h>
46 #include <sys/vnode.h>
49 #include <ufs/fsdir.h>
50 #include <ufs/inode.h>
52 #include <vfs/ufs/dir.h>
53 #include <vfs/ufs/dinode.h>
54 #include <vfs/ufs/fs.h>
57 #include <protocols/dumprestore.h>
69 typedef struct Block
{
70 struct Block
*b_HNext
; /* must be first field */
78 static char *DataBase
;
79 static Block
**BlockHash
;
91 if ((BlockSize
= sblock
->fs_bsize
* BLKFACTOR
) > MAXBSIZE
)
93 NBlocks
= cachesize
/ BlockSize
;
94 HSize
= NBlocks
/ HFACTOR
;
96 msg("Cache %d MB, blocksize = %d\n",
97 NBlocks
* BlockSize
/ (1024 * 1024), BlockSize
);
99 base
= calloc(sizeof(Block
), NBlocks
);
100 BlockHash
= calloc(sizeof(Block
*), HSize
);
101 DataBase
= mmap(NULL
, NBlocks
* BlockSize
,
102 PROT_READ
|PROT_WRITE
, MAP_ANON
, -1, 0);
103 for (i
= 0; i
< NBlocks
; ++i
) {
104 base
[i
].b_Data
= DataBase
+ i
* BlockSize
;
105 base
[i
].b_Offset
= (off_t
)-1;
107 base
[i
].b_HNext
= BlockHash
[hi
];
108 BlockHash
[hi
] = &base
[i
];
113 cread(int fd
, void *buf
, size_t nbytes
, off_t offset
)
123 * If the cache is disabled, or we do not yet know the filesystem
124 * block size, then revert to pread. Otherwise initialize the
125 * cache as necessary and continue.
127 if (cachesize
<= 0 || sblock
->fs_bsize
== 0)
128 return(pread(fd
, buf
, nbytes
, offset
));
129 if (DataBase
== NULL
)
133 * If the request crosses a cache block boundary, or the
134 * request is larger or equal to the cache block size,
135 * revert to pread(). Full-block-reads are typically
136 * one-time calls and caching would be detrimental.
138 mask
= ~(off_t
)(BlockSize
- 1);
139 if (nbytes
>= (unsigned)BlockSize
||
140 ((offset
^ (offset
+ nbytes
- 1)) & mask
) != 0) {
141 return(pread(fd
, buf
, nbytes
, offset
));
145 * Obtain and access the cache block. Cache a successful
146 * result. If an error occurs, revert to pread() (this might
147 * occur near the end of the media).
149 hi
= (offset
/ BlockSize
) % HSize
;
150 pblk
= &BlockHash
[hi
];
152 while ((blk
= *pblk
) != NULL
) {
153 if (((blk
->b_Offset
^ offset
) & mask
) == 0)
156 pblk
= &blk
->b_HNext
;
161 blk
->b_Offset
= offset
& mask
;
162 n
= pread(fd
, blk
->b_Data
, BlockSize
, blk
->b_Offset
);
163 if (n
!= BlockSize
) {
164 blk
->b_Offset
= (off_t
)-1;
169 bcopy(blk
->b_Data
+ (offset
- blk
->b_Offset
), buf
, nbytes
);
170 *pblk
= blk
->b_HNext
;
171 blk
->b_HNext
= BlockHash
[hi
];
175 return(pread(fd
, buf
, nbytes
, offset
));