libstand/dosfs: cache FAT32 in 128 Kb blocks to save loader memory
Current implementation of dosfs in libstand reads full File Allocation Table to the RAM in the initialization code. In the extreme case of FAT32 filesystem, this structure will take up to 256-1024 Mb of loader memory, depending on the cluster size. Proposed patch reduces libstands/dosfs memory requirements to 128 Kb for all variants of dosfs filesystem. For FAT12 and FAT16 filesystems, File Allocation Table is cached in full, as before. For FAT32, File Allocation Table is broken into the equal blocks of 128 Kilobytes (32768 entries), and only current block is cached. Because per-filesystem context is now small, global FAT cache (for all instances of dosfs filesystem) is replaced by local per-instance cache. Submitted by: Mikhail.Kupchik_gmail.com Reviewed by: tsoome, allanjude Differential Revision: https://reviews.freebsd.org/D9547
This commit is contained in:
parent
a3a4eaf6fe
commit
3949295f36
@ -65,6 +65,7 @@ struct fs_ops dosfs_fsops = {
|
|||||||
#define DEPSEC 16 /* directory entries per sector */
|
#define DEPSEC 16 /* directory entries per sector */
|
||||||
#define DSHIFT 4 /* DEPSEC shift */
|
#define DSHIFT 4 /* DEPSEC shift */
|
||||||
#define LOCLUS 2 /* lowest cluster number */
|
#define LOCLUS 2 /* lowest cluster number */
|
||||||
|
#define FATBLKSZ 0x20000 /* size of block in the FAT cache buffer */
|
||||||
|
|
||||||
/* DOS "BIOS Parameter Block" */
|
/* DOS "BIOS Parameter Block" */
|
||||||
typedef struct {
|
typedef struct {
|
||||||
@ -132,18 +133,6 @@ static DOS_DE dot[2] = {
|
|||||||
((u_int)cv2((de)->dex.h_clus) << 16) | \
|
((u_int)cv2((de)->dex.h_clus) << 16) | \
|
||||||
cv2((de)->clus))
|
cv2((de)->clus))
|
||||||
|
|
||||||
/*
|
|
||||||
* fat cache metadata
|
|
||||||
*/
|
|
||||||
struct fatcache {
|
|
||||||
int unit; /* disk unit number */
|
|
||||||
int size; /* buffer (and fat) size in sectors */
|
|
||||||
u_char *buf;
|
|
||||||
};
|
|
||||||
|
|
||||||
static struct fatcache fat;
|
|
||||||
|
|
||||||
static int dosunmount(DOS_FS *);
|
|
||||||
static int parsebs(DOS_FS *, DOS_BS *);
|
static int parsebs(DOS_FS *, DOS_BS *);
|
||||||
static int namede(DOS_FS *, const char *, DOS_DE **);
|
static int namede(DOS_FS *, const char *, DOS_DE **);
|
||||||
static int lookup(DOS_FS *, u_int, const char *, DOS_DE **);
|
static int lookup(DOS_FS *, u_int, const char *, DOS_DE **);
|
||||||
@ -153,36 +142,37 @@ static off_t fsize(DOS_FS *, DOS_DE *);
|
|||||||
static int fatcnt(DOS_FS *, u_int);
|
static int fatcnt(DOS_FS *, u_int);
|
||||||
static int fatget(DOS_FS *, u_int *);
|
static int fatget(DOS_FS *, u_int *);
|
||||||
static int fatend(u_int, u_int);
|
static int fatend(u_int, u_int);
|
||||||
static int ioread(DOS_FS *, u_int, void *, u_int);
|
static int ioread(DOS_FS *, u_int, void *, size_t);
|
||||||
static int ioget(struct open_file *, daddr_t, void *, u_int);
|
static int ioget(struct open_file *, daddr_t, void *, size_t);
|
||||||
|
|
||||||
static void
|
static int
|
||||||
dos_read_fat(DOS_FS *fs, struct open_file *fd)
|
dos_read_fatblk(DOS_FS *fs, struct open_file *fd, u_int blknum)
|
||||||
{
|
{
|
||||||
struct devdesc *dd = fd->f_devdata;
|
int err;
|
||||||
|
size_t io_size;
|
||||||
|
daddr_t offset_in_fat, max_offset_in_fat;
|
||||||
|
|
||||||
if (fat.buf != NULL) { /* can we reuse old buffer? */
|
offset_in_fat = ((daddr_t)blknum) * FATBLKSZ;
|
||||||
if (fat.size != fs->spf) {
|
max_offset_in_fat = secbyt(fs->spf);
|
||||||
free(fat.buf); /* no, free old buffer */
|
io_size = FATBLKSZ;
|
||||||
fat.buf = NULL;
|
if (offset_in_fat > max_offset_in_fat)
|
||||||
}
|
offset_in_fat = max_offset_in_fat;
|
||||||
|
if (offset_in_fat + io_size > max_offset_in_fat)
|
||||||
|
io_size = ((size_t)(max_offset_in_fat - offset_in_fat));
|
||||||
|
|
||||||
|
if (io_size != 0) {
|
||||||
|
err = ioget(fd, fs->lsnfat + bytsec(offset_in_fat),
|
||||||
|
fs->fatbuf, io_size);
|
||||||
|
if (err != 0) {
|
||||||
|
fs->fatbuf_blknum = ((u_int)(-1));
|
||||||
|
return (err);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
if (io_size < FATBLKSZ)
|
||||||
|
memset(fs->fatbuf + io_size, 0, FATBLKSZ - io_size);
|
||||||
|
|
||||||
if (fat.buf == NULL)
|
fs->fatbuf_blknum = blknum;
|
||||||
fat.buf = malloc(secbyt(fs->spf));
|
return (0);
|
||||||
|
|
||||||
if (fat.buf != NULL) {
|
|
||||||
if (ioget(fd, fs->lsnfat, fat.buf, secbyt(fs->spf)) == 0) {
|
|
||||||
fat.size = fs->spf;
|
|
||||||
fat.unit = dd->d_unit;
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (fat.buf != NULL) /* got IO error */
|
|
||||||
free(fat.buf);
|
|
||||||
fat.buf = NULL;
|
|
||||||
fat.unit = -1; /* impossible unit */
|
|
||||||
fat.size = 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -192,24 +182,27 @@ static int
|
|||||||
dos_mount(DOS_FS *fs, struct open_file *fd)
|
dos_mount(DOS_FS *fs, struct open_file *fd)
|
||||||
{
|
{
|
||||||
int err;
|
int err;
|
||||||
struct devdesc *dd = fd->f_devdata;
|
|
||||||
u_char *buf;
|
u_char *buf;
|
||||||
|
|
||||||
bzero(fs, sizeof(DOS_FS));
|
bzero(fs, sizeof(DOS_FS));
|
||||||
fs->fd = fd;
|
fs->fd = fd;
|
||||||
|
|
||||||
if ((err = !(buf = malloc(secbyt(1))) ? errno : 0) ||
|
if ((buf = malloc(secbyt(1))) == NULL)
|
||||||
(err = ioget(fs->fd, 0, buf, secbyt(1))) ||
|
return (errno);
|
||||||
|
if ((err = ioget(fs->fd, 0, buf, secbyt(1))) ||
|
||||||
(err = parsebs(fs, (DOS_BS *)buf))) {
|
(err = parsebs(fs, (DOS_BS *)buf))) {
|
||||||
if (buf != NULL)
|
free(buf);
|
||||||
free(buf);
|
|
||||||
(void)dosunmount(fs);
|
|
||||||
return (err);
|
return (err);
|
||||||
}
|
}
|
||||||
free(buf);
|
free(buf);
|
||||||
|
|
||||||
if (fat.buf == NULL || fat.unit != dd->d_unit)
|
if ((fs->fatbuf = malloc(FATBLKSZ)) == NULL)
|
||||||
dos_read_fat(fs, fd);
|
return (errno);
|
||||||
|
err = dos_read_fatblk(fs, fd, 0);
|
||||||
|
if (err != 0) {
|
||||||
|
free(fs->fatbuf);
|
||||||
|
return (err);
|
||||||
|
}
|
||||||
|
|
||||||
fs->root = dot[0];
|
fs->root = dot[0];
|
||||||
fs->root.name[0] = ' ';
|
fs->root.name[0] = ' ';
|
||||||
@ -228,21 +221,9 @@ dos_mount(DOS_FS *fs, struct open_file *fd)
|
|||||||
static int
|
static int
|
||||||
dos_unmount(DOS_FS *fs)
|
dos_unmount(DOS_FS *fs)
|
||||||
{
|
{
|
||||||
int err;
|
|
||||||
|
|
||||||
if (fs->links)
|
if (fs->links)
|
||||||
return (EBUSY);
|
return (EBUSY);
|
||||||
if ((err = dosunmount(fs)))
|
free(fs->fatbuf);
|
||||||
return (err);
|
|
||||||
return (0);
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Common code shared by dos_mount() and dos_unmount()
|
|
||||||
*/
|
|
||||||
static int
|
|
||||||
dosunmount(DOS_FS *fs)
|
|
||||||
{
|
|
||||||
free(fs);
|
free(fs);
|
||||||
return (0);
|
return (0);
|
||||||
}
|
}
|
||||||
@ -257,16 +238,20 @@ dos_open(const char *path, struct open_file *fd)
|
|||||||
DOS_FILE *f;
|
DOS_FILE *f;
|
||||||
DOS_FS *fs;
|
DOS_FS *fs;
|
||||||
u_int size, clus;
|
u_int size, clus;
|
||||||
int err = 0;
|
int err;
|
||||||
|
|
||||||
/* Allocate mount structure, associate with open */
|
/* Allocate mount structure, associate with open */
|
||||||
fs = malloc(sizeof(DOS_FS));
|
if ((fs = malloc(sizeof(DOS_FS))) == NULL)
|
||||||
|
return (errno);
|
||||||
|
if ((err = dos_mount(fs, fd))) {
|
||||||
|
free(fs);
|
||||||
|
return (err);
|
||||||
|
}
|
||||||
|
|
||||||
if ((err = dos_mount(fs, fd)))
|
if ((err = namede(fs, path, &de))) {
|
||||||
goto out;
|
dos_unmount(fs);
|
||||||
|
return (err);
|
||||||
if ((err = namede(fs, path, &de)))
|
}
|
||||||
goto out;
|
|
||||||
|
|
||||||
clus = stclus(fs->fatsz, de);
|
clus = stclus(fs->fatsz, de);
|
||||||
size = cv4(de->size);
|
size = cv4(de->size);
|
||||||
@ -274,18 +259,20 @@ dos_open(const char *path, struct open_file *fd)
|
|||||||
if ((!(de->attr & FA_DIR) && (!clus != !size)) ||
|
if ((!(de->attr & FA_DIR) && (!clus != !size)) ||
|
||||||
((de->attr & FA_DIR) && size) ||
|
((de->attr & FA_DIR) && size) ||
|
||||||
(clus && !okclus(fs, clus))) {
|
(clus && !okclus(fs, clus))) {
|
||||||
err = EINVAL;
|
dos_unmount(fs);
|
||||||
goto out;
|
return (EINVAL);
|
||||||
|
}
|
||||||
|
if ((f = malloc(sizeof(DOS_FILE))) == NULL) {
|
||||||
|
err = errno;
|
||||||
|
dos_unmount(fs);
|
||||||
|
return (err);
|
||||||
}
|
}
|
||||||
f = malloc(sizeof(DOS_FILE));
|
|
||||||
bzero(f, sizeof(DOS_FILE));
|
bzero(f, sizeof(DOS_FILE));
|
||||||
f->fs = fs;
|
f->fs = fs;
|
||||||
fs->links++;
|
fs->links++;
|
||||||
f->de = *de;
|
f->de = *de;
|
||||||
fd->f_fsdata = (void *)f;
|
fd->f_fsdata = (void *)f;
|
||||||
|
return (0);
|
||||||
out:
|
|
||||||
return (err);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -761,34 +748,57 @@ fatcnt(DOS_FS *fs, u_int c)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Get next cluster in cluster chain. Use in core fat cache unless another
|
* Get next cluster in cluster chain. Use in core fat cache unless
|
||||||
* device replaced it.
|
* the number of current 128K block in FAT has changed.
|
||||||
*/
|
*/
|
||||||
static int
|
static int
|
||||||
fatget(DOS_FS *fs, u_int *c)
|
fatget(DOS_FS *fs, u_int *c)
|
||||||
{
|
{
|
||||||
u_char buf[4];
|
u_int val_in, val_out, offset, blknum, nbyte;
|
||||||
u_int x, offset, n, nbyte;
|
const u_char *p_entry;
|
||||||
struct devdesc *dd = fs->fd->f_devdata;
|
int err;
|
||||||
int err = 0;
|
|
||||||
|
|
||||||
if (fat.unit != dd->d_unit) {
|
/* check input value to prevent overflow in fatoff() */
|
||||||
/* fat cache was changed to another device, don't use it */
|
val_in = *c;
|
||||||
err = ioread(fs, secbyt(fs->lsnfat) + fatoff(fs->fatsz, *c), buf,
|
if (val_in & 0xf0000000)
|
||||||
fs->fatsz != 32 ? 2 : 4);
|
return (EINVAL);
|
||||||
if (err)
|
|
||||||
return (err);
|
|
||||||
} else {
|
|
||||||
offset = fatoff(fs->fatsz, *c);
|
|
||||||
nbyte = fs->fatsz != 32 ? 2 : 4;
|
|
||||||
|
|
||||||
if (offset + nbyte > secbyt(fat.size))
|
/* ensure that current 128K FAT block is cached */
|
||||||
return (EINVAL);
|
offset = fatoff(fs->fatsz, val_in);
|
||||||
memcpy(buf, fat.buf + offset, nbyte);
|
nbyte = fs->fatsz != 32 ? 2 : 4;
|
||||||
|
if (offset + nbyte > secbyt(fs->spf))
|
||||||
|
return (EINVAL);
|
||||||
|
blknum = offset / FATBLKSZ;
|
||||||
|
offset %= FATBLKSZ;
|
||||||
|
if (offset + nbyte > FATBLKSZ)
|
||||||
|
return (EINVAL);
|
||||||
|
if (blknum != fs->fatbuf_blknum) {
|
||||||
|
err = dos_read_fatblk(fs, fs->fd, blknum);
|
||||||
|
if (err != 0)
|
||||||
|
return (err);
|
||||||
}
|
}
|
||||||
|
p_entry = fs->fatbuf + offset;
|
||||||
|
|
||||||
x = fs->fatsz != 32 ? cv2(buf) : cv4(buf);
|
/* extract cluster number from FAT entry */
|
||||||
*c = fs->fatsz == 12 ? *c & 1 ? x >> 4 : x & 0xfff : x;
|
switch (fs->fatsz) {
|
||||||
|
case 32:
|
||||||
|
val_out = cv4(p_entry);
|
||||||
|
val_out &= 0x0fffffff;
|
||||||
|
break;
|
||||||
|
case 16:
|
||||||
|
val_out = cv2(p_entry);
|
||||||
|
break;
|
||||||
|
case 12:
|
||||||
|
val_out = cv2(p_entry);
|
||||||
|
if (val_in & 1)
|
||||||
|
val_out >>= 4;
|
||||||
|
else
|
||||||
|
val_out &= 0xfff;
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
return (EINVAL);
|
||||||
|
}
|
||||||
|
*c = val_out;
|
||||||
return (0);
|
return (0);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -805,7 +815,7 @@ fatend(u_int sz, u_int c)
|
|||||||
* Offset-based I/O primitive
|
* Offset-based I/O primitive
|
||||||
*/
|
*/
|
||||||
static int
|
static int
|
||||||
ioread(DOS_FS *fs, u_int offset, void *buf, u_int nbyte)
|
ioread(DOS_FS *fs, u_int offset, void *buf, size_t nbyte)
|
||||||
{
|
{
|
||||||
char *s;
|
char *s;
|
||||||
u_int off, n;
|
u_int off, n;
|
||||||
@ -843,8 +853,16 @@ ioread(DOS_FS *fs, u_int offset, void *buf, u_int nbyte)
|
|||||||
* Sector-based I/O primitive
|
* Sector-based I/O primitive
|
||||||
*/
|
*/
|
||||||
static int
|
static int
|
||||||
ioget(struct open_file *fd, daddr_t lsec, void *buf, u_int size)
|
ioget(struct open_file *fd, daddr_t lsec, void *buf, size_t size)
|
||||||
{
|
{
|
||||||
return ((fd->f_dev->dv_strategy)(fd->f_devdata, F_READ, lsec,
|
size_t rsize;
|
||||||
size, buf, NULL));
|
int rv;
|
||||||
|
|
||||||
|
/* Make sure we get full read or error. */
|
||||||
|
rsize = 0;
|
||||||
|
rv = (fd->f_dev->dv_strategy)(fd->f_devdata, F_READ, lsec,
|
||||||
|
size, buf, &rsize);
|
||||||
|
if ((rv == 0) && (size != rsize))
|
||||||
|
rv = EIO;
|
||||||
|
return (rv);
|
||||||
}
|
}
|
||||||
|
@ -96,6 +96,8 @@ typedef union {
|
|||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
struct open_file *fd; /* file descriptor */
|
struct open_file *fd; /* file descriptor */
|
||||||
|
u_char *fatbuf; /* FAT cache buffer */
|
||||||
|
u_int fatbuf_blknum; /* number of 128K block in FAT cache buffer */
|
||||||
u_int links; /* active links to structure */
|
u_int links; /* active links to structure */
|
||||||
u_int spc; /* sectors per cluster */
|
u_int spc; /* sectors per cluster */
|
||||||
u_int bsize; /* cluster size in bytes */
|
u_int bsize; /* cluster size in bytes */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user