-
Notifications
You must be signed in to change notification settings - Fork 5
/
bitmap.c
417 lines (318 loc) · 10.1 KB
/
bitmap.c
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
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
/*
This file contains the routines that manipulate the map of used and
free blocks on disk.
THIS CODE COPYRIGHT DOMINIC GIAMPAOLO. NO WARRANTY IS EXPRESSED
OR IMPLIED. YOU MAY USE THIS CODE AND FREELY DISTRIBUTE IT FOR
NON-COMMERCIAL USE AS LONG AS THIS NOTICE REMAINS ATTACHED.
FOR COMMERCIAL USE, CONTACT DOMINIC GIAMPAOLO (dbg@be.com).
Dominic Giampaolo
dbg@be.com
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "myfs.h"
static void sanity_check_bitmap(myfs_info *myfs);
int
myfs_create_storage_map(myfs_info *myfs)
{
char *buff = NULL;
int ret, i, n, bsize;
size_t num_bytes, num_blocks;
ssize_t amt;
BitVector *bv;
myfs->bbm_sem = create_sem(1, "bbm");
if (myfs->bbm_sem < 0)
return ENOMEM;
bsize = myfs->dsb.block_size;
/*
calculate how many bitmap blocks we'll need by rounding up the
number of blocks on the disk to the nearest multiple of 8 times
the block size (8 == number of bits in a byte).
*/
n = myfs->dsb.num_blocks / 8;
n = ((n + bsize - 1) & ~(bsize - 1));
n /= bsize;
myfs->bbm.num_bitmap_blocks = n;
myfs->bbm.bv = (BitVector *)calloc(1, sizeof(BitVector));
if (myfs->bbm.bv == NULL) {
ret = ENOMEM;
goto err;
}
num_bytes = myfs->bbm.num_bitmap_blocks * myfs->dsb.block_size;
buff = (char *)calloc(1, num_bytes);
if (buff == NULL) {
ret = ENOMEM;
goto err;
}
myfs->bbm.bv->bits = (chunk *)buff;
myfs->bbm.bv->numbits = myfs->dsb.num_blocks;
/* fill in used blocks, including the superblock */
num_blocks = myfs->bbm.num_bitmap_blocks + 1;
if (GetFreeRangeOfBits(myfs->bbm.bv, num_blocks, NULL) != 0) {
printf("*** failed to allocate %ld bits in create_bitmap\n",
myfs->bbm.num_bitmap_blocks + 1);
ret = ENOSPC;
goto err;
}
/* write out the bitmap blocks, starting at block # 1 */
amt = write_blocks(myfs, 1, buff, n);
if (amt != n) {
ret = EINVAL;
goto err;
}
myfs->dsb.used_blocks += num_blocks;
return 0;
err:
if (buff)
free(buff);
myfs->bbm.bv = NULL;
if (myfs->bbm_sem > 0)
delete_sem(myfs->bbm_sem);
myfs->bbm_sem = -1;
return ret;
}
int
myfs_init_storage_map(myfs_info *myfs)
{
char *buff = NULL;
int i, n, ret, bsize;
size_t num_bytes;
ssize_t amt;
BitVector *bv;
myfs->bbm_sem = create_sem(1, "bbm");
if (myfs->bbm_sem < 0)
return ENOMEM;
bsize = myfs->dsb.block_size;
n = myfs->dsb.num_blocks / 8;
n = ((n + bsize - 1) & ~(bsize - 1));
n /= bsize;
myfs->bbm.num_bitmap_blocks = n;
myfs->bbm.bv = (BitVector *)calloc(1, sizeof(BitVector));
if (myfs->bbm.bv == NULL) {
ret = ENOMEM;
goto err;
}
num_bytes = myfs->bbm.num_bitmap_blocks * myfs->dsb.block_size;
buff = (char *)malloc(num_bytes);
if (buff == NULL) {
ret = ENOMEM;
goto err;
}
amt = read_blocks(myfs, 1, buff, n);
if (amt != n) {
printf("loading bitmap: failed to read %d bitmap blocks\n", n);
ret = EINVAL;
goto err;
}
myfs->bbm.bv->bits = (chunk *)buff;
myfs->bbm.bv->numbits = myfs->dsb.num_blocks;
if (IsSetBV(myfs->bbm.bv, 0) == 0) {
printf("myfs: danger! super block is not allocated! patching up...\n");
SetBV(myfs->bbm.bv, 0);
write_blocks(myfs, 1, myfs->bbm.bv[0].bits, 1);
}
printf("Checking block bitmap...\n");
sanity_check_bitmap(myfs);
printf("Done checking bitmap.\n");
return 0;
err:
if (buff)
free(buff);
myfs->bbm.bv = NULL;
if (myfs->bbm_sem > 0)
delete_sem(myfs->bbm_sem);
myfs->bbm_sem = -1;
return ret;
}
void
myfs_shutdown_storage_map(myfs_info *myfs)
{
if (myfs->bbm.bv) {
if (myfs->bbm.bv->bits) {
free(myfs->bbm.bv->bits);
myfs->bbm.bv->bits = NULL;
}
free(myfs->bbm.bv);
myfs->bbm.bv = NULL;
}
if (myfs->bbm_sem > 0)
delete_sem(myfs->bbm_sem);
myfs->bbm_sem = -1;
}
static int
real_allocate_blocks(myfs_info *myfs, fs_off_t *num_blocks,
fs_off_t *start_addr, int do_log_write, int exact)
{
int i, n, len, bsize = myfs->dsb.block_size, nblocks;
int biggest_free_chunk = 0, max_free_chunk = 1;
fs_off_t start = -1;
char *ptr;
BitVector *bv;
if (*num_blocks <= 0)
return EINVAL;
/* XXXdbg -- when journaling is implemented, fix this */
do_log_write = 0;
acquire_sem(myfs->bbm_sem);
if (*num_blocks > (myfs->dsb.num_blocks - myfs->dsb.used_blocks)) {
release_sem(myfs->bbm_sem);
return ENOSPC;
}
for(nblocks=*num_blocks; nblocks >= 1; nblocks /= 2) {
bv = myfs->bbm.bv;
start = GetFreeRangeOfBits(bv, nblocks, &biggest_free_chunk);
if (start != -1)
break;
if (biggest_free_chunk > max_free_chunk) {
max_free_chunk = biggest_free_chunk;
}
if (exact == LOOSE_ALLOCATION && biggest_free_chunk > 0 &&
biggest_free_chunk >= (nblocks>>4)) {
nblocks = biggest_free_chunk;
start = GetFreeRangeOfBits(bv, nblocks, NULL);
if (start != -1)
break;
}
if (start != -1 || exact == EXACT_ALLOCATION)
break;
if (start == -1 && exact == TRY_HARD_ALLOCATION && max_free_chunk > 1) {
if (max_free_chunk < nblocks)
nblocks = max_free_chunk;
start = GetFreeRangeOfBits(bv, nblocks, &biggest_free_chunk);
if (start != -1) {
i = 0;
break;
}
}
if (exact == LOOSE_ALLOCATION && nblocks > max_free_chunk*2) {
nblocks = max_free_chunk * 2; /* times 2 because of the loop continuation */
}
max_free_chunk = 1;
}
if (start == -1) {
release_sem(myfs->bbm_sem);
return ENOSPC;
}
*start_addr = (fs_off_t)start;
*num_blocks = nblocks;
/*
calculate the block number of the bitmap block we just modified.
the +1 accounts for the super block.
*/
n = (start / 8 / bsize) + 1;
len = (nblocks / 8 / bsize) + 1;
ptr = (char *)bv->bits + (((start / 8) / bsize) * bsize);
if (do_log_write) {
for(i=0; i < len; i++, ptr += bsize) {
if (myfs_write_journal_entry(myfs, myfs->cur_je, n+i, ptr) != 1) {
printf("error:1 failed to write bitmap block run %d:1!\n",n+i);
release_sem(myfs->bbm_sem);
return EINVAL;
}
}
} else if (write_blocks(myfs, n, ptr, len) != len) {
printf("error: 2 failed to write back bitmap block @ block %d!\n", n);
release_sem(myfs->bbm_sem);
return EINVAL;
}
myfs->dsb.used_blocks += *num_blocks;
release_sem(myfs->bbm_sem);
myfs->dsb.flags = MYFS_DIRTY;
return 0;
}
int
myfs_allocate_blocks(myfs_info *myfs, fs_off_t start_hint,
fs_off_t *num_blocks, fs_off_t *start_addr, int exact)
{
return real_allocate_blocks(myfs, num_blocks, start_addr, 1, exact);
}
/*
this is for internal use only -- it's needed when created a file system
and we can't start a journal transaction
*/
int
pre_allocate_blocks(myfs_info *myfs, fs_off_t *num_blocks,fs_off_t *start_addr)
{
return real_allocate_blocks(myfs, num_blocks, start_addr, 0,
LOOSE_ALLOCATION);
}
int
myfs_free_blocks(myfs_info *myfs, fs_off_t start, fs_off_t num_blocks)
{
int i, n, len, bsize = myfs->dsb.block_size;
char *ptr;
BitVector *bv;
int do_log_write = 0; /* XXXdbg - revisit when journaling works */
acquire_sem(myfs->bbm_sem);
bv = myfs->bbm.bv;
UnSetRangeBV(bv, start, num_blocks);
bv->is_full = 0;
/*
calculate the block number of the bitmap block we just modified.
the +1 accounts for the super block.
*/
n = (start / 8 / bsize) + 1;
/*
the number of blocks modified is the number of bits modified divided
by the number of bits in a disk block.
*/
len = (num_blocks / 8 / bsize) + 1;
ptr = (char *)bv->bits + (((start / 8) / bsize) * bsize);
for(i=0; i < len; i++, ptr += bsize) {
if (do_log_write) {
if (myfs_write_journal_entry(myfs, myfs->cur_je, n+i, ptr) != 1) {
printf("error: bitmap free: failed to write back bitmap "
"block run %d:1!\n", n+i);
release_sem(myfs->bbm_sem);
return EINVAL;
}
} else if (write_blocks(myfs, n+i, ptr, 1) != 1) {
printf("error: bitmap free:2: failed to write back bitmap "
"block @ block %d!\n", n);
release_sem(myfs->bbm_sem);
return EINVAL;
}
}
myfs->dsb.used_blocks -= len;
release_sem(myfs->bbm_sem);
myfs->dsb.flags = MYFS_DIRTY;
return 0;
}
int
myfs_check_blocks(myfs_info *myfs, fs_off_t start, fs_off_t len, int state)
{
int i;
BitVector *bv;
acquire_sem(myfs->bbm_sem);
bv = myfs->bbm.bv;
for(i=0; i < len; i++) {
if ((state == 1 && !IsSetBV(bv, start + i)) ||
(state == 0 && IsSetBV(bv, start + i))) {
break;
}
}
release_sem(myfs->bbm_sem);
if (i != len) {
return 0;
}
return 1;
}
static void
sanity_check_bitmap(myfs_info *myfs)
{
int i, j, k, *ptr;
fs_off_t used_blocks = 0;
BitVector *bv;
bv = myfs->bbm.bv;
ptr = bv->bits;
for(j=0; j < bv->numbits/(sizeof(int)*8); j++) {
for(k=0; k < sizeof(chunk)*CHAR_BIT; k++)
if (ptr[j] & (1 << k))
used_blocks++;
}
if (myfs->dsb.used_blocks != used_blocks) {
printf("*** super block sez %ld used blocks but it's really %ld\n",
myfs->dsb.used_blocks, used_blocks);
myfs->dsb.used_blocks = used_blocks;
}
}