Refactor header files dependencies.
[lwext4.git] / src / ext4_bitmap.c
1 /*
2  * Copyright (c) 2013 Grzegorz Kostka (kostka.grzegorz@gmail.com)
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 lwext4
30  * @{
31  */
32 /**
33  * @file  ext4_bitmap.c
34  * @brief Block/inode bitmap allocator.
35  */
36
37 #include "ext4_config.h"
38 #include "ext4_types.h"
39 #include "ext4_misc.h"
40 #include "ext4_errno.h"
41 #include "ext4_debug.h"
42
43 #include "ext4_bitmap.h"
44
45 void ext4_bmap_bits_free(uint8_t *bmap, uint32_t sbit, uint32_t bcnt)
46 {
47         uint32_t i = sbit;
48
49         while (i & 7) {
50
51                 if (!bcnt)
52                         return;
53
54                 ext4_bmap_bit_clr(bmap, i);
55
56                 bcnt--;
57                 i++;
58         }
59         sbit = i;
60         bmap += (sbit >> 3);
61
62         while (bcnt >= 32) {
63                 *(uint32_t *)bmap = 0;
64                 bmap += 4;
65                 bcnt -= 32;
66                 sbit += 32;
67         }
68
69         while (bcnt >= 16) {
70                 *(uint16_t *)bmap = 0;
71                 bmap += 2;
72                 bcnt -= 16;
73                 sbit += 16;
74         }
75
76         while (bcnt >= 8) {
77                 *bmap = 0;
78                 bmap += 1;
79                 bcnt -= 8;
80                 sbit += 8;
81         }
82
83         for (i = 0; i < bcnt; ++i) {
84                 ext4_bmap_bit_clr(bmap, i);
85         }
86 }
87
88 int ext4_bmap_bit_find_clr(uint8_t *bmap, uint32_t sbit, uint32_t ebit,
89                            uint32_t *bit_id)
90 {
91         uint32_t i;
92         uint32_t bcnt = ebit - sbit;
93
94         i = sbit;
95
96         while (i & 7) {
97
98                 if (!bcnt)
99                         return ENOSPC;
100
101                 if (ext4_bmap_is_bit_clr(bmap, i)) {
102                         *bit_id = sbit;
103                         return EOK;
104                 }
105
106                 i++;
107                 bcnt--;
108         }
109
110         sbit = i;
111         bmap += (sbit >> 3);
112
113         while (bcnt >= 32) {
114                 if (*(uint32_t *)bmap != 0xFFFFFFFF)
115                         goto finish_it;
116
117                 bmap += 4;
118                 bcnt -= 32;
119                 sbit += 32;
120         }
121
122         while (bcnt >= 16) {
123                 if (*(uint16_t *)bmap != 0xFFFF)
124                         goto finish_it;
125
126                 bmap += 2;
127                 bcnt -= 16;
128                 sbit += 16;
129         }
130
131 finish_it:
132         while (bcnt >= 8) {
133                 if (*bmap != 0xFF) {
134                         for (i = 0; i < 8; ++i) {
135                                 if (ext4_bmap_is_bit_clr(bmap, i)) {
136                                         *bit_id = sbit + i;
137                                         return EOK;
138                                 }
139                         }
140                 }
141
142                 bmap += 1;
143                 bcnt -= 8;
144                 sbit += 8;
145         }
146
147         for (i = 0; i < bcnt; ++i) {
148                 if (ext4_bmap_is_bit_clr(bmap, i)) {
149                         *bit_id = sbit + i;
150                         return EOK;
151                 }
152         }
153
154         return ENOSPC;
155 }
156
157 /**
158  * @}
159  */