source: mainline/uspace/srv/fs/minixfs/mfs_balloc.c@ 8a49fed

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 8a49fed was 8a49fed, checked in by Maurizio Lombardi <m.lombardi85@…>, 14 years ago

Added implementation of mfs_truncate(), it does not prune indirect blocks yet.

  • Property mode set to 100644
File size: 4.9 KB
Line 
1/*
2 * Copyright (c) 2011 Maurizio Lombardi
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * - Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * - Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * - The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29/** @addtogroup fs
30 * @{
31 */
32
33#include <stdlib.h>
34#include "mfs.h"
35#include "mfs_utils.h"
36
37static int
38find_free_bit_and_set(bitchunk_t *b, const int bsize,
39 const bool native, unsigned start_bit);
40
41int
42mfs_free_bit(struct mfs_instance *inst, uint32_t idx, bmap_id_t bid)
43{
44 struct mfs_sb_info *sbi;
45 int r;
46 unsigned start_block;
47 block_t *b;
48
49 assert(inst != NULL);
50 sbi = inst->sbi;
51 assert(sbi != NULL);
52
53 if (bid == BMAP_ZONE) {
54 start_block = 2 + sbi->ibmap_blocks;
55 if (idx > sbi->nzones) {
56 printf(NAME ": Error! Trying to free beyond the" \
57 "bitmap max size\n");
58 return -1;
59 }
60 } else {
61 /*bid == BMAP_INODE*/
62 start_block = 2;
63 if (idx > sbi->ninodes) {
64 printf(NAME ": Error! Trying to free beyond the" \
65 "bitmap max size\n");
66 return -1;
67 }
68 }
69
70 /*Compute the bitmap block*/
71 uint32_t block = idx / (sbi->block_size * 8) + start_block;
72
73 r = block_get(&b, inst->handle, block, BLOCK_FLAGS_NONE);
74 on_error(r, goto out_err);
75
76 /*Compute the bit index in the block*/
77 idx %= (sbi->block_size * 8);
78 bitchunk_t *ptr = b->data;
79 bitchunk_t chunk;
80 const size_t chunk_bits = sizeof(bitchunk_t) * 8;
81
82 chunk = conv32(sbi->native, ptr[idx / chunk_bits]);
83 chunk &= ~(1 << (idx % chunk_bits));
84 ptr[idx / chunk_bits] = conv32(sbi->native, chunk);
85 b->dirty = true;
86 r = block_put(b);
87
88out_err:
89 return r;
90}
91
92int
93mfs_alloc_bit(struct mfs_instance *inst, uint32_t *idx, bmap_id_t bid)
94{
95 struct mfs_sb_info *sbi;
96 uint32_t limit;
97 unsigned long nblocks;
98 unsigned *search, i, start_block;
99 unsigned bits_per_block;
100 int r, freebit;
101
102 assert(inst != NULL);
103 sbi = inst->sbi;
104 assert(sbi != NULL);
105
106 if (bid == BMAP_ZONE) {
107 search = &sbi->zsearch;
108 start_block = 2 + sbi->ibmap_blocks;
109 nblocks = sbi->zbmap_blocks;
110 limit = sbi->nzones;
111 } else {
112 /*bid == BMAP_INODE*/
113 search = &sbi->isearch;
114 start_block = 2;
115 nblocks = sbi->ibmap_blocks;
116 limit = sbi->ninodes;
117 }
118 bits_per_block = sbi->block_size * 8;
119
120 block_t *b;
121
122retry:
123
124 for (i = *search / bits_per_block; i < nblocks; ++i) {
125 r = block_get(&b, inst->handle, i + start_block,
126 BLOCK_FLAGS_NONE);
127
128 on_error(r, goto out);
129
130 freebit = find_free_bit_and_set(b->data, sbi->block_size,
131 sbi->native, *search);
132 if (freebit == -1) {
133 /*No free bit in this block*/
134 block_put(b);
135 continue;
136 }
137
138 /*Free bit found in this block, compute the real index*/
139 *idx = freebit + bits_per_block * i;
140 *idx += (bid == BMAP_INODE);
141 mfsdebug("alloc index %d %d\n", (int) *idx, i);
142 if (*idx > limit) {
143 /*Index is beyond the limit, it is invalid*/
144 r = block_put(b);
145 on_error(r, goto out);
146 break;
147 }
148
149 *search = *idx;
150 b->dirty = true;
151 r = block_put(b);
152 goto out;
153 }
154
155 if (*search > 0) {
156 /*Repeat the search from the first bitmap block*/
157 *search = 0;
158 goto retry;
159 }
160
161 /*Free bit not found, return error*/
162 return ENOSPC;
163
164out:
165 return r;
166}
167
168static int
169find_free_bit_and_set(bitchunk_t *b, const int bsize,
170 const bool native, unsigned start_bit)
171{
172 int r = -1;
173 unsigned i, j;
174 bitchunk_t chunk;
175 const size_t chunk_bits = sizeof(bitchunk_t) * 8;
176
177 for (i = start_bit / sizeof(uint32_t);
178 i < bsize / sizeof(uint32_t); ++i) {
179 if (!(~b[i])) {
180 /*No free bit in this chunk*/
181 continue;
182 }
183
184 chunk = conv32(native, b[i]);
185
186 for (j = 0; j < chunk_bits; ++j) {
187 if (!(chunk & (1 << j))) {
188 mfsdebug("i = %d j = %d\n", i, j);
189 r = i * chunk_bits + j;
190 chunk |= 1 << j;
191 b[i] = conv32(native, chunk);
192 goto found;
193 }
194 }
195 }
196found:
197 return r;
198}
199
200/**
201 * @}
202 */
203
Note: See TracBrowser for help on using the repository browser.