e2fsprogs/lib/ext2fs/rw_bitmaps.c

303 lines
7.6 KiB
C
Raw Normal View History

1997-04-26 17:34:30 +04:00
/*
* rw_bitmaps.c --- routines to read and write the inode and block bitmaps.
*
1997-04-29 20:17:09 +04:00
* Copyright (C) 1993, 1994, 1994, 1996 Theodore Ts'o.
*
* %Begin-Header%
* This file may be redistributed under the terms of the GNU Public
* License.
* %End-Header%
1997-04-26 17:34:30 +04:00
*/
#include <stdio.h>
#include <string.h>
#if HAVE_UNISTD_H
1997-04-26 17:34:30 +04:00
#include <unistd.h>
#endif
1997-04-26 17:34:30 +04:00
#include <fcntl.h>
#include <time.h>
#ifdef HAVE_SYS_STAT_H
1997-04-26 17:34:30 +04:00
#include <sys/stat.h>
#endif
#ifdef HAVE_SYS_TYPES_H
1997-04-26 17:34:30 +04:00
#include <sys/types.h>
#endif
1997-04-26 17:34:30 +04:00
Many files: inode.c (ext2fs_open_inode_scan): Initialize the group variables so that we don't need to call get_next_blockgroup() the first time around. Saves a bit of time, and prevents us from needing to assign -1 to current_group (which is an unsigned value). icount.c (insert_icount_el): Cast the estimated number of inodes from a float to an ino_t. alloc.c, alloc_tables.c, badlbocks.c, bb_compat.c, bb_inode.c, bitmaps.c, bitops.c, block.c, bmap.c, bmove.c, brel_ma.c, check_desc.c, closefs.c, cmp_bitmaps.c, dblist.c, dblist_dir.c, dir_iterate.c, dirblock.c, dupfs.c, expanddir.c, ext2fs.h, fileio.c, freefs.c, get_pathname.c, getsize.c, icount.c, initialize.c, inline.c, inode.c, irel_ma.c, ismounted.c, link.c, lookup.c, mkdir.c, namei.c, native.c, newdir.c, openfs.c, read_bb.c, read_bb_file.c, rs_bitmap.c, rw_bitmaps.c, swapfs.c, test_io.c, tst_badblocks.c, tst_getsize.c, tst_iscan.c, unix_io.c, unlink.c, valid_blk.c, version.c: If EXT2_FLAT_INCLUDES is defined, then assume all of the ext2-specific header files are in a flat directory. block.c, bmove.c, dirblock.c, fileio.c: Explicitly cast all assignments from void * to be compatible with C++. closefs.c (ext2fs_flush): Add a call to io_channel_flush() to make sure the contents of the disk are flushed to disk. dblist.c (ext2fs_add_dir_block): Change new to be new_entry to avoid C++ namespace clash. bitmaps.c (ext2fs_copy_bitmap): Change new to be new_map to avoid C++ namespace clash. ext2fs.h, bb_inode.c, block.c, bmove.c, brel.h, brel_ma.c, irel.h, irel_ma.c, dblist.c, dblist_dir.c, dir_iterate.c, ext2fsP.h, expanddir.c, get_pathname.c, inode.c, link.c, unlink.c: Change private to be priv_data (to avoid C++ namespace clash)
1998-01-19 17:47:53 +03:00
#include "ext2_fs.h"
1997-04-26 17:34:30 +04:00
#include "ext2fs.h"
#include "e2image.h"
1997-04-26 17:34:30 +04:00
#if defined(__powerpc__) && defined(EXT2FS_ENABLE_SWAPFS)
/*
* On the PowerPC, the big-endian variant of the ext2 filesystem
* has its bitmaps stored as 32-bit words with bit 0 as the LSB
* of each word. Thus a bitmap with only bit 0 set would be, as
* a string of bytes, 00 00 00 01 00 ...
* To cope with this, we byte-reverse each word of a bitmap if
* we have a big-endian filesystem, that is, if we are *not*
* byte-swapping other word-sized numbers.
*/
#define EXT2_BIG_ENDIAN_BITMAPS
#endif
#ifdef EXT2_BIG_ENDIAN_BITMAPS
void ext2fs_swap_bitmap(ext2_filsys fs, char *bitmap, int nbytes)
{
__u32 *p = (__u32 *) bitmap;
int n;
for (n = nbytes / sizeof(__u32); n > 0; --n, ++p)
*p = ext2fs_swab32(*p);
}
#endif
1997-04-26 17:34:30 +04:00
errcode_t ext2fs_write_inode_bitmap(ext2_filsys fs)
{
dgrp_t i;
size_t nbytes;
1997-04-26 17:34:30 +04:00
errcode_t retval;
char * inode_bitmap = fs->inode_map->bitmap;
char * bitmap_block = NULL;
1997-04-29 20:17:09 +04:00
blk_t blk;
1997-04-26 17:34:30 +04:00
EXT2_CHECK_MAGIC(fs, EXT2_ET_MAGIC_EXT2FS_FILSYS);
if (!(fs->flags & EXT2_FLAG_RW))
return EXT2_ET_RO_FILSYS;
if (!inode_bitmap)
return 0;
nbytes = (size_t) ((EXT2_INODES_PER_GROUP(fs->super)+7) / 8);
1997-04-26 18:48:50 +04:00
retval = ext2fs_get_mem(fs->blocksize, (void **) &bitmap_block);
if (retval)
return retval;
1997-04-26 17:34:30 +04:00
memset(bitmap_block, 0xff, fs->blocksize);
for (i = 0; i < fs->group_desc_count; i++) {
memcpy(bitmap_block, inode_bitmap, nbytes);
1997-04-29 20:17:09 +04:00
blk = fs->group_desc[i].bg_inode_bitmap;
if (blk) {
#ifdef EXT2_BIG_ENDIAN_BITMAPS
if (!((fs->flags & EXT2_FLAG_SWAP_BYTES) ||
(fs->flags & EXT2_FLAG_SWAP_BYTES_WRITE)))
ext2fs_swap_bitmap(fs, bitmap_block, nbytes);
#endif
1997-04-29 20:17:09 +04:00
retval = io_channel_write_blk(fs->io, blk, 1,
bitmap_block);
if (retval)
return EXT2_ET_INODE_BITMAP_WRITE;
}
1997-04-26 17:34:30 +04:00
inode_bitmap += nbytes;
}
fs->flags |= EXT2_FLAG_CHANGED;
fs->flags &= ~EXT2_FLAG_IB_DIRTY;
ext2fs_free_mem((void **) &bitmap_block);
1997-04-26 17:34:30 +04:00
return 0;
}
errcode_t ext2fs_write_block_bitmap (ext2_filsys fs)
{
dgrp_t i;
1997-04-26 17:34:30 +04:00
int j;
int nbytes;
int nbits;
errcode_t retval;
char * block_bitmap = fs->block_map->bitmap;
char * bitmap_block = NULL;
1997-04-29 20:17:09 +04:00
blk_t blk;
1997-04-26 17:34:30 +04:00
EXT2_CHECK_MAGIC(fs, EXT2_ET_MAGIC_EXT2FS_FILSYS);
if (!(fs->flags & EXT2_FLAG_RW))
return EXT2_ET_RO_FILSYS;
if (!block_bitmap)
return 0;
nbytes = EXT2_BLOCKS_PER_GROUP(fs->super) / 8;
retval = ext2fs_get_mem(fs->blocksize, (void **) &bitmap_block);
if (retval)
return retval;
1997-04-26 17:34:30 +04:00
memset(bitmap_block, 0xff, fs->blocksize);
for (i = 0; i < fs->group_desc_count; i++) {
memcpy(bitmap_block, block_bitmap, nbytes);
if (i == fs->group_desc_count - 1) {
/* Force bitmap padding for the last group */
nbits = (int) ((fs->super->s_blocks_count
- fs->super->s_first_data_block)
% EXT2_BLOCKS_PER_GROUP(fs->super));
1997-04-26 17:34:30 +04:00
if (nbits)
for (j = nbits; j < fs->blocksize * 8; j++)
1997-04-26 18:37:06 +04:00
ext2fs_set_bit(j, bitmap_block);
1997-04-26 17:34:30 +04:00
}
1997-04-29 20:17:09 +04:00
blk = fs->group_desc[i].bg_block_bitmap;
if (blk) {
#ifdef EXT2_BIG_ENDIAN_BITMAPS
if (!((fs->flags & EXT2_FLAG_SWAP_BYTES) ||
(fs->flags & EXT2_FLAG_SWAP_BYTES_WRITE)))
ext2fs_swap_bitmap(fs, bitmap_block, nbytes);
#endif
1997-04-29 20:17:09 +04:00
retval = io_channel_write_blk(fs->io, blk, 1,
bitmap_block);
if (retval)
return EXT2_ET_BLOCK_BITMAP_WRITE;
}
1997-04-26 17:34:30 +04:00
block_bitmap += nbytes;
}
fs->flags |= EXT2_FLAG_CHANGED;
fs->flags &= ~EXT2_FLAG_BB_DIRTY;
ext2fs_free_mem((void **) &bitmap_block);
1997-04-26 17:34:30 +04:00
return 0;
}
static errcode_t read_bitmaps(ext2_filsys fs, int do_inode, int do_block)
{
dgrp_t i;
1997-04-26 17:58:21 +04:00
char *block_bitmap = 0, *inode_bitmap = 0;
1997-04-26 17:34:30 +04:00
char *buf;
errcode_t retval;
int block_nbytes = (int) EXT2_BLOCKS_PER_GROUP(fs->super) / 8;
int inode_nbytes = (int) EXT2_INODES_PER_GROUP(fs->super) / 8;
1997-04-29 20:17:09 +04:00
blk_t blk;
1997-04-26 17:34:30 +04:00
EXT2_CHECK_MAGIC(fs, EXT2_ET_MAGIC_EXT2FS_FILSYS);
fs->write_bitmaps = ext2fs_write_bitmaps;
retval = ext2fs_get_mem(strlen(fs->device_name) + 80, (void **) &buf);
if (retval)
return retval;
1997-04-26 17:34:30 +04:00
if (do_block) {
if (fs->block_map)
ext2fs_free_block_bitmap(fs->block_map);
sprintf(buf, "block bitmap for %s", fs->device_name);
retval = ext2fs_allocate_block_bitmap(fs, buf, &fs->block_map);
if (retval)
goto cleanup;
block_bitmap = fs->block_map->bitmap;
}
if (do_inode) {
if (fs->inode_map)
ext2fs_free_inode_bitmap(fs->inode_map);
sprintf(buf, "inode bitmap for %s", fs->device_name);
retval = ext2fs_allocate_inode_bitmap(fs, buf, &fs->inode_map);
if (retval)
goto cleanup;
inode_bitmap = fs->inode_map->bitmap;
}
ext2fs_free_mem((void **) &buf);
1997-04-26 17:34:30 +04:00
if (fs->flags & EXT2_FLAG_IMAGE_FILE) {
if (inode_bitmap) {
blk = (fs->image_header->offset_inodemap /
fs->blocksize);
retval = io_channel_read_blk(fs->io, blk,
-(inode_nbytes * fs->group_desc_count),
inode_bitmap);
if (retval)
goto cleanup;
}
if (block_bitmap) {
blk = (fs->image_header->offset_blockmap /
fs->blocksize);
retval = io_channel_read_blk(fs->io, blk,
-(block_nbytes * fs->group_desc_count),
block_bitmap);
if (retval)
goto cleanup;
}
return 0;
}
1997-04-26 17:34:30 +04:00
for (i = 0; i < fs->group_desc_count; i++) {
1997-04-26 17:58:21 +04:00
if (block_bitmap) {
1997-04-29 20:17:09 +04:00
blk = fs->group_desc[i].bg_block_bitmap;
if (blk) {
retval = io_channel_read_blk(fs->io, blk,
-block_nbytes, block_bitmap);
if (retval) {
retval = EXT2_ET_BLOCK_BITMAP_READ;
goto cleanup;
}
#ifdef EXT2_BIG_ENDIAN_BITMAPS
if (!((fs->flags & EXT2_FLAG_SWAP_BYTES) ||
(fs->flags & EXT2_FLAG_SWAP_BYTES_READ)))
ext2fs_swap_bitmap(fs, block_bitmap, block_nbytes);
#endif
1997-04-29 20:17:09 +04:00
} else
memset(block_bitmap, 0, block_nbytes);
1997-04-26 17:34:30 +04:00
block_bitmap += block_nbytes;
}
1997-04-26 17:58:21 +04:00
if (inode_bitmap) {
1997-04-29 20:17:09 +04:00
blk = fs->group_desc[i].bg_inode_bitmap;
if (blk) {
retval = io_channel_read_blk(fs->io, blk,
-inode_nbytes, inode_bitmap);
if (retval) {
retval = EXT2_ET_INODE_BITMAP_READ;
goto cleanup;
}
#ifdef EXT2_BIG_ENDIAN_BITMAPS
if (!((fs->flags & EXT2_FLAG_SWAP_BYTES) ||
(fs->flags & EXT2_FLAG_SWAP_BYTES_READ)))
ext2fs_swap_bitmap(fs, inode_bitmap, inode_nbytes);
#endif
1997-04-29 20:17:09 +04:00
} else
memset(inode_bitmap, 0, inode_nbytes);
1997-04-26 17:34:30 +04:00
inode_bitmap += inode_nbytes;
}
}
return 0;
cleanup:
if (do_block) {
ext2fs_free_mem((void **) &fs->block_map);
1997-04-26 17:34:30 +04:00
fs->block_map = 0;
}
if (do_inode) {
ext2fs_free_mem((void **) &fs->inode_map);
1997-04-26 17:34:30 +04:00
fs->inode_map = 0;
}
if (buf)
ext2fs_free_mem((void **) &buf);
1997-04-26 17:34:30 +04:00
return retval;
}
errcode_t ext2fs_read_inode_bitmap (ext2_filsys fs)
{
return read_bitmaps(fs, 1, 0);
}
errcode_t ext2fs_read_block_bitmap(ext2_filsys fs)
{
return read_bitmaps(fs, 0, 1);
}
errcode_t ext2fs_read_bitmaps(ext2_filsys fs)
{
EXT2_CHECK_MAGIC(fs, EXT2_ET_MAGIC_EXT2FS_FILSYS);
if (fs->inode_map && fs->block_map)
return 0;
1997-04-26 17:34:30 +04:00
return read_bitmaps(fs, !fs->inode_map, !fs->block_map);
}
errcode_t ext2fs_write_bitmaps(ext2_filsys fs)
{
errcode_t retval;
EXT2_CHECK_MAGIC(fs, EXT2_ET_MAGIC_EXT2FS_FILSYS);
if (fs->block_map && ext2fs_test_bb_dirty(fs)) {
retval = ext2fs_write_block_bitmap(fs);
if (retval)
return retval;
}
if (fs->inode_map && ext2fs_test_ib_dirty(fs)) {
retval = ext2fs_write_inode_bitmap(fs);
if (retval)
return retval;
}
return 0;
}