summaryrefslogtreecommitdiff
path: root/ext2fs/hyper.c
blob: 627b1ac6c180cec4f9dccb14bfd1649e5bceea5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
/* Fetching and storing the hypermetadata (superblock and bg summary info)

   Copyright (C) 1994,95,96,99,2001,02 Free Software Foundation, Inc.
   Written by Miles Bader <miles@gnu.org>

   This program is free software; you can redistribute it and/or
   modify it under the terms of the GNU General Public License as
   published by the Free Software Foundation; either version 2, or (at
   your option) any later version.

   This program is distributed in the hope that it will be useful, but
   WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */

#include <string.h>
#include <stdio.h>
#include <error.h>
#include <hurd/store.h>
#include "ext2fs.h"

vm_address_t zeroblock;
unsigned char *modified_global_blocks;

static void
allocate_mod_map (void)
{
  static vm_size_t mod_map_size;

  if (modified_global_blocks && mod_map_size)
    /* Get rid of the old one.  */
    munmap (modified_global_blocks, mod_map_size);

 if (!diskfs_readonly && block_size < vm_page_size)
    /* If the block size is too small, we have to take extra care when
       writing out pages from the global pager, to make sure we don't stomp
       on any file pager blocks.  In this case use a bitmap to record which
       global blocks are actually modified so the pager can write only them. */
    {
      /* One bit per filesystem block.  */
      mod_map_size = le32toh (sblock->s_blocks_count) >> 3;
      modified_global_blocks = mmap (0, mod_map_size, PROT_READ|PROT_WRITE,
				     MAP_ANON, 0, 0);
      assert_backtrace (modified_global_blocks != (void *) -1);
    }
  else
    modified_global_blocks = 0;
}

unsigned int sblock_block = SBLOCK_BLOCK; /* in 1k blocks */

static int ext2fs_clean;	/* fs clean before we started writing? */

void
get_hypermetadata (void)
{
  error_t err;
  size_t read = 0;
  u_int32_t features;

  if (sblock != NULL)
    munmap (sblock, SBLOCK_SIZE);

  err = store_read (store, SBLOCK_OFFS >> store->log2_block_size,
		    SBLOCK_SIZE, (void **)&sblock, &read);
  if (err || read != SBLOCK_SIZE)
    ext2_panic ("Cannot read hypermetadata");

  if (sblock->s_magic != htole16 (EXT2_SUPER_MAGIC)
#ifdef EXT2FS_PRE_02B_COMPAT
      && sblock->s_magic != htole16 (EXT2_PRE_02B_MAGIC)
#endif
      )
    ext2_panic ("bad magic number %#x (should be %#x)",
		le16toh (sblock->s_magic), EXT2_SUPER_MAGIC);

  log2_block_size = EXT2_MIN_BLOCK_LOG_SIZE + le32toh(sblock->s_log_block_size);
  block_size = 1 << log2_block_size;

  if (block_size > EXT2_MAX_BLOCK_SIZE)
    ext2_panic ("block size %d is too big (max is %d bytes)",
		block_size, EXT2_MAX_BLOCK_SIZE);

  if (log2_block_size < store->log2_block_size)
    ext2_panic ("block size %d isn't a power-of-two multiple of the device"
		" block size (%zd)!",
		block_size, store->block_size);
  log2_dev_blocks_per_fs_block = log2_block_size - store->log2_block_size;

  log2_stat_blocks_per_fs_block = 0;
  while ((512 << log2_stat_blocks_per_fs_block) < block_size)
    log2_stat_blocks_per_fs_block++;
  if ((512 << log2_stat_blocks_per_fs_block) != block_size)
    ext2_panic ("block size %d isn't a power-of-two multiple of 512!",
		block_size);

  if ((store->size >> log2_block_size) < le32toh (sblock->s_blocks_count))
    ext2_panic ("disk size (%qd bytes) too small; superblock says we need %qd",
		(long long int) store->size,
	       (long long int) le32toh (sblock->s_blocks_count) << log2_block_size);
  if (log2_dev_blocks_per_fs_block != 0
      && (store->size & ((1 << log2_dev_blocks_per_fs_block) - 1)) != 0)
    ext2_warning ("%Ld (%zd byte) device blocks "
		  " unused after last filesystem (%d byte) block",
		  (store->size & ((1 << log2_dev_blocks_per_fs_block) - 1)),
		  store->block_size, block_size);

  /* Set these handy variables.  */
  inodes_per_block = block_size / EXT2_INODE_SIZE (sblock);

  frag_size = EXT2_MIN_FRAG_SIZE << le32toh (sblock->s_log_frag_size);
  if (frag_size == 0)
    ext2_panic ("frag size is zero!");
  frags_per_block = block_size / frag_size;

  if (le32toh (sblock->s_rev_level) > EXT2_GOOD_OLD_REV)
    {
      features = EXT2_HAS_INCOMPAT_FEATURE(sblock, EXT2_FEATURE_INCOMPAT_UNSUPPORTED);
      if (features)
	ext2_panic ("could not mount because of unsupported optional features "
		    "(0x%x)",
		    features);
      features = EXT2_HAS_RO_COMPAT_FEATURE(sblock, EXT2_FEATURE_RO_COMPAT_UNSUPPORTED);
      if (features)
	{
	  ext2_warning ("mounted readonly because of "
			"unsupported optional features (0x%x)",
			features);
	  diskfs_readonly = 1;
	}
      if (le16toh (sblock->s_inode_size) != EXT2_GOOD_OLD_INODE_SIZE)
	ext2_panic ("inode size %d isn't supported", le16toh (sblock->s_inode_size));
    }

  groups_count =
    ((le32toh (sblock->s_blocks_count) - le32toh (sblock->s_first_data_block) +
      le32toh (sblock->s_blocks_per_group) - 1)
     / le32toh (sblock->s_blocks_per_group));

  itb_per_group = le32toh (sblock->s_inodes_per_group) / inodes_per_block;
  desc_per_block = block_size / sizeof (struct ext2_group_desc);
  addr_per_block = block_size / sizeof (block_t);
  db_per_group = (groups_count + desc_per_block - 1) / desc_per_block;

  ext2fs_clean = sblock->s_state & htole16 (EXT2_VALID_FS);
  if (! ext2fs_clean)
    {
      ext2_warning ("FILESYSTEM NOT UNMOUNTED CLEANLY; PLEASE fsck");
      if (! diskfs_readonly)
	{
	  diskfs_readonly = 1;
	  ext2_warning ("MOUNTED READ-ONLY; MUST USE `fsysopts --writable'");
	}
    }

  allocate_mod_map ();

  /* A handy source of page-aligned zeros.  */
  if (zeroblock == 0)
    {
      zeroblock = (vm_address_t) mmap (0, block_size, PROT_READ, MAP_ANON, 0, 0);
      assert_backtrace (zeroblock != (vm_address_t) MAP_FAILED);
    }
}

static struct ext2_super_block *mapped_sblock;

void
map_hypermetadata (void)
{
  mapped_sblock = (struct ext2_super_block *) boffs_ptr (SBLOCK_OFFS);

  /* Cache a convenient pointer to the block group descriptors for allocation.
     These are stored in the filesystem blocks following the superblock.  */
  group_desc_image =
    (struct ext2_group_desc *) bptr (bptr_block (mapped_sblock) + 1);
}

error_t
diskfs_set_hypermetadata (int wait, int clean)
{
  if (clean && ext2fs_clean && !(sblock->s_state & htole16 (EXT2_VALID_FS)))
    /* The filesystem is clean, so we need to set the clean flag.  */
    {
      sblock->s_state |= htole16 (EXT2_VALID_FS);
      sblock_dirty = 1;
    }
  else if (!clean && (sblock->s_state & htole16 (EXT2_VALID_FS)))
    /* The filesystem just became dirty, so clear the clean flag.  */
    {
      sblock->s_state &= htole16 (~EXT2_VALID_FS);
      sblock_dirty = 1;
      wait = 1;
    }

 if (sblock_dirty)
   {
     /* Before writing, set the time of write */
     sblock->s_wtime = htole32 (diskfs_mtime->seconds);
     sblock_dirty = 0;
     memcpy (mapped_sblock, sblock, SBLOCK_SIZE);
     disk_cache_block_ref_ptr (mapped_sblock);
     record_global_poke (mapped_sblock);
   }

  sync_global (wait);

  /* Should check writability here and return EROFS if necessary. XXX */
  return 0;
}

void
diskfs_readonly_changed (int readonly)
{
  allocate_mod_map ();

  (*(readonly ? store_set_flags : store_clear_flags)) (store, STORE_READONLY);

  mprotect (disk_cache, disk_cache_size,
	    PROT_READ | (readonly ? 0 : PROT_WRITE));

  if (!readonly && !(sblock->s_state & htole16 (EXT2_VALID_FS)))
    ext2_warning ("UNCLEANED FILESYSTEM NOW WRITABLE");
}