OSDN Git Service

Fixed truncate(): rollback clusters allocation when FS runs out of space.
[android-x86/external-exfat.git] / libexfat / cluster.c
1 /*
2         cluster.c (03.09.09)
3         exFAT file system implementation library.
4
5         Copyright (C) 2009, 2010  Andrew Nayenko
6
7         This program is free software: you can redistribute it and/or modify
8         it under the terms of the GNU General Public License as published by
9         the Free Software Foundation, either version 3 of the License, or
10         (at your option) any later version.
11
12         This program is distributed in the hope that it will be useful,
13         but WITHOUT ANY WARRANTY; without even the implied warranty of
14         MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15         GNU General Public License for more details.
16
17         You should have received a copy of the GNU General Public License
18         along with this program.  If not, see <http://www.gnu.org/licenses/>.
19 */
20
21 #include "exfat.h"
22 #include <errno.h>
23 #include <string.h>
24
25 #define BMAP_GET(bitmap, index) ((bitmap)[(index) / 8] & (1u << ((index) % 8)))
26 #define BMAP_SET(bitmap, index) (bitmap)[(index) / 8] |= (1u << ((index) % 8))
27 #define BMAP_CLR(bitmap, index) (bitmap)[(index) / 8] &= ~(1u << ((index) % 8))
28
29 /*
30  * Cluster to block.
31  */
32 static uint32_t c2b(const struct exfat* ef, cluster_t cluster)
33 {
34         if (cluster < EXFAT_FIRST_DATA_CLUSTER)
35                 exfat_bug("invalid cluster number %u", cluster);
36         return le32_to_cpu(ef->sb->cluster_block_start) +
37                 ((cluster - EXFAT_FIRST_DATA_CLUSTER) << ef->sb->bpc_bits);
38 }
39
40 /*
41  * Cluster to absolute offset.
42  */
43 off_t exfat_c2o(const struct exfat* ef, cluster_t cluster)
44 {
45         return (off_t) c2b(ef, cluster) << ef->sb->block_bits;
46 }
47
48 /*
49  * Block to absolute offset.
50  */
51 static off_t b2o(const struct exfat* ef, uint32_t block)
52 {
53         return (off_t) block << ef->sb->block_bits;
54 }
55
56 /*
57  * Size in bytes to size in clusters (rounded upwards).
58  */
59 static uint32_t bytes2clusters(const struct exfat* ef, uint64_t bytes)
60 {
61         uint64_t cluster_size = CLUSTER_SIZE(*ef->sb);
62         return (bytes + cluster_size - 1) / cluster_size;
63 }
64
65 cluster_t exfat_next_cluster(const struct exfat* ef,
66                 const struct exfat_node* node, cluster_t cluster)
67 {
68         cluster_t next;
69         off_t fat_offset;
70
71         if (cluster < EXFAT_FIRST_DATA_CLUSTER)
72                 exfat_bug("bad cluster 0x%x", cluster);
73
74         if (IS_CONTIGUOUS(*node))
75                 return cluster + 1;
76         fat_offset = b2o(ef, le32_to_cpu(ef->sb->fat_block_start))
77                 + cluster * sizeof(cluster_t);
78         exfat_read_raw(&next, sizeof(next), fat_offset, ef->fd);
79         return next;
80 }
81
82 cluster_t exfat_advance_cluster(const struct exfat* ef,
83                 struct exfat_node* node, uint32_t count)
84 {
85         uint32_t i;
86
87         if (node->fptr_index > count)
88         {
89                 node->fptr_index = 0;
90                 node->fptr_cluster = node->start_cluster;
91         }
92
93         for (i = node->fptr_index; i < count; i++)
94         {
95                 node->fptr_cluster = exfat_next_cluster(ef, node, node->fptr_cluster);
96                 if (CLUSTER_INVALID(node->fptr_cluster))
97                         break;
98         }
99         node->fptr_index = count;
100         return node->fptr_cluster;
101 }
102
103 static cluster_t find_bit_and_set(uint8_t* bitmap, cluster_t start,
104                 cluster_t end)
105 {
106         const cluster_t mid_start = (start + 7) / 8 * 8;
107         const cluster_t mid_end = end / 8 * 8;
108         cluster_t c;
109         cluster_t byte;
110
111         for (c = start; c < mid_start; c++)
112                 if (BMAP_GET(bitmap, c) == 0)
113                 {
114                         BMAP_SET(bitmap, c);
115                         return c + EXFAT_FIRST_DATA_CLUSTER;
116                 }
117
118         for (byte = mid_start / 8; byte < mid_end / 8; byte++)
119                 if (bitmap[byte] != 0xff)
120                 {
121                         cluster_t bit;
122
123                         for (bit = 0; bit < 8; bit++)
124                                 if (!(bitmap[byte] & (1u << bit)))
125                                 {
126                                         bitmap[byte] |= (1u << bit);
127                                         return byte * 8 + bit + EXFAT_FIRST_DATA_CLUSTER;
128                                 }
129                 }
130
131         for (c = mid_end; c < end; c++)
132                 if (BMAP_GET(bitmap, c) == 0)
133                 {
134                         BMAP_SET(bitmap, c);
135                         return c + EXFAT_FIRST_DATA_CLUSTER;
136                 }
137
138         return EXFAT_CLUSTER_END;
139 }
140
141 void exfat_flush_cmap(struct exfat* ef)
142 {
143         exfat_write_raw(ef->cmap.chunk, (ef->cmap.chunk_size + 7) / 8,
144                         exfat_c2o(ef, ef->cmap.start_cluster), ef->fd);
145         ef->cmap.dirty = 0;
146 }
147
148 static void set_next_cluster(const struct exfat* ef, int contiguous,
149                 cluster_t current, cluster_t next)
150 {
151         off_t fat_offset;
152
153         if (contiguous)
154                 return;
155         fat_offset = b2o(ef, le32_to_cpu(ef->sb->fat_block_start))
156                 + current * sizeof(cluster_t);
157         exfat_write_raw(&next, sizeof(next), fat_offset, ef->fd);
158 }
159
160 static cluster_t allocate_cluster(struct exfat* ef, cluster_t hint)
161 {
162         cluster_t cluster;
163
164         hint -= EXFAT_FIRST_DATA_CLUSTER;
165         if (hint >= ef->cmap.chunk_size)
166                 hint = 0;
167
168         cluster = find_bit_and_set(ef->cmap.chunk, hint, ef->cmap.chunk_size);
169         if (cluster == EXFAT_CLUSTER_END)
170                 cluster = find_bit_and_set(ef->cmap.chunk, 0, hint);
171         if (cluster == EXFAT_CLUSTER_END)
172         {
173                 exfat_error("no free space left");
174                 return EXFAT_CLUSTER_END;
175         }
176
177         ef->cmap.dirty = 1;
178         /* FIXME update percentage of used space */
179         return cluster;
180 }
181
182 static void free_cluster(struct exfat* ef, cluster_t cluster)
183 {
184         if (CLUSTER_INVALID(cluster))
185                 exfat_bug("attempting to free invalid cluster");
186         if (cluster < EXFAT_FIRST_DATA_CLUSTER ||
187                 cluster - EXFAT_FIRST_DATA_CLUSTER >= ef->cmap.size)
188                 exfat_bug("bad cluster 0x%x (0x%x)", cluster, ef->cmap.size);
189
190         BMAP_CLR(ef->cmap.chunk, cluster - EXFAT_FIRST_DATA_CLUSTER);
191         ef->cmap.dirty = 1;
192         /* FIXME update percentage of used space */
193 }
194
195 static void make_noncontiguous(const struct exfat* ef, cluster_t first,
196                 cluster_t last)
197 {
198         cluster_t c;
199
200         for (c = first; c < last; c++)
201                 set_next_cluster(ef, 0, c, c + 1);
202 }
203
204 static int shrink_file(struct exfat* ef, struct exfat_node* node,
205                 uint32_t current, uint32_t difference);
206
207 static int grow_file(struct exfat* ef, struct exfat_node* node,
208                 uint32_t current, uint32_t difference)
209 {
210         cluster_t previous;
211         cluster_t next;
212         uint32_t allocated = 0;
213
214         if (difference == 0)
215                 exfat_bug("zero clusters count passed");
216
217         if (node->start_cluster != EXFAT_CLUSTER_FREE)
218         {
219                 /* get the last cluster of the file */
220                 previous = exfat_advance_cluster(ef, node, current - 1);
221                 if (CLUSTER_INVALID(previous))
222                 {
223                         exfat_error("invalid cluster in file");
224                         return -EIO;
225                 }
226         }
227         else
228         {
229                 if (node->fptr_index != 0)
230                         exfat_bug("non-zero pointer index (%u)", node->fptr_index);
231                 /* file does not have clusters (i.e. is empty), allocate
232                    the first one for it */
233                 previous = allocate_cluster(ef, 0);
234                 if (CLUSTER_INVALID(previous))
235                         return -ENOSPC;
236                 node->fptr_cluster = node->start_cluster = previous;
237                 allocated = 1;
238                 /* file consists of only one cluster, so it's contiguous */
239                 node->flags |= EXFAT_ATTRIB_CONTIGUOUS;
240         }
241
242         while (allocated < difference)
243         {
244                 next = allocate_cluster(ef, previous + 1);
245                 if (CLUSTER_INVALID(next))
246                 {
247                         if (allocated != 0)
248                                 shrink_file(ef, node, current + allocated, allocated);
249                         return -ENOSPC;
250                 }
251                 if (next != previous - 1 && IS_CONTIGUOUS(*node))
252                 {
253                         /* it's a pity, but we are not able to keep the file contiguous
254                            anymore */
255                         make_noncontiguous(ef, node->start_cluster, previous);
256                         node->flags &= ~EXFAT_ATTRIB_CONTIGUOUS;
257                         node->flags |= EXFAT_ATTRIB_DIRTY;
258                 }
259                 set_next_cluster(ef, IS_CONTIGUOUS(*node), previous, next);
260                 previous = next;
261                 allocated++;
262         }
263
264         set_next_cluster(ef, IS_CONTIGUOUS(*node), previous, EXFAT_CLUSTER_END);
265         return 0;
266 }
267
268 static int shrink_file(struct exfat* ef, struct exfat_node* node,
269                 uint32_t current, uint32_t difference)
270 {
271         cluster_t previous;
272         cluster_t next;
273
274         if (difference == 0)
275                 exfat_bug("zero difference passed");
276         if (node->start_cluster == EXFAT_CLUSTER_FREE)
277                 exfat_bug("unable to shrink empty file (%u clusters)", current);
278         if (current < difference)
279                 exfat_bug("file underflow (%u < %u)", current, difference);
280
281         /* crop the file */
282         if (current > difference)
283         {
284                 cluster_t last = exfat_advance_cluster(ef, node,
285                                 current - difference - 1);
286                 if (CLUSTER_INVALID(last))
287                 {
288                         exfat_error("invalid cluster in file");
289                         return -EIO;
290                 }
291                 previous = exfat_next_cluster(ef, node, last);
292                 set_next_cluster(ef, IS_CONTIGUOUS(*node), last, EXFAT_CLUSTER_END);
293         }
294         else
295         {
296                 previous = node->start_cluster;
297                 node->start_cluster = EXFAT_CLUSTER_FREE;
298         }
299         node->fptr_index = 0;
300         node->fptr_cluster = node->start_cluster;
301
302         /* free remaining clusters */
303         while (difference--)
304         {
305                 if (CLUSTER_INVALID(previous))
306                 {
307                         exfat_error("invalid cluster in file");
308                         return -EIO;
309                 }
310                 next = exfat_next_cluster(ef, node, previous);
311                 set_next_cluster(ef, IS_CONTIGUOUS(*node), previous,
312                                 EXFAT_CLUSTER_FREE);
313                 free_cluster(ef, previous);
314                 previous = next;
315         }
316         return 0;
317 }
318
319 static void erase_raw(struct exfat* ef, size_t size, off_t offset)
320 {
321         exfat_write_raw(ef->zero_block, size, offset, ef->fd);
322 }
323
324 static int erase_range(struct exfat* ef, struct exfat_node* node,
325                 uint64_t begin, uint64_t end)
326 {
327         uint64_t block_boundary;
328         cluster_t cluster;
329
330         if (begin >= end)
331                 return 0;
332
333         block_boundary = (node->size | (BLOCK_SIZE(*ef->sb) - 1)) + 1;
334         cluster = exfat_advance_cluster(ef, node,
335                         node->size / CLUSTER_SIZE(*ef->sb));
336         if (CLUSTER_INVALID(cluster))
337         {
338                 exfat_error("invalid cluster in file");
339                 return -EIO;
340         }
341         /* erase from the beginning to the closest block boundary */
342         erase_raw(ef, MIN(block_boundary, end) - node->size,
343                         exfat_c2o(ef, cluster) + node->size % CLUSTER_SIZE(*ef->sb));
344         /* erase whole blocks */
345         while (block_boundary < end)
346         {
347                 if (block_boundary % CLUSTER_SIZE(*ef->sb) == 0)
348                         cluster = exfat_next_cluster(ef, node, cluster);
349                 erase_raw(ef, BLOCK_SIZE(*ef->sb),
350                         exfat_c2o(ef, cluster) + block_boundary % CLUSTER_SIZE(*ef->sb));
351                 block_boundary += BLOCK_SIZE(*ef->sb);
352         }
353         return 0;
354 }
355
356 int exfat_truncate(struct exfat* ef, struct exfat_node* node, uint64_t size)
357 {
358         uint32_t c1 = bytes2clusters(ef, node->size);
359         uint32_t c2 = bytes2clusters(ef, size);
360         int rc = 0;
361
362         if (node->size == size)
363                 return 0;
364
365         if (c1 < c2)
366                 rc = grow_file(ef, node, c1, c2 - c1);
367         else if (c1 > c2)
368                 rc = shrink_file(ef, node, c1, c1 - c2);
369
370         if (rc != 0)
371                 return rc;
372
373         rc = erase_range(ef, node, node->size, size);
374         if (rc != 0)
375                 return rc;
376
377         exfat_update_mtime(node);
378         node->size = size;
379         node->flags |= EXFAT_ATTRIB_DIRTY;
380         return 0;
381 }