]>
Commit | Line | Data |
---|---|---|
1 | /* | |
2 | * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved. | |
3 | * Copyright (C) 2004-2006 Red Hat, Inc. All rights reserved. | |
4 | * | |
5 | * This copyrighted material is made available to anyone wishing to use, | |
6 | * modify, copy, or redistribute it subject to the terms and conditions | |
7 | * of the GNU General Public License version 2. | |
8 | */ | |
9 | ||
10 | /* | |
11 | * Implements Extendible Hashing as described in: | |
12 | * "Extendible Hashing" by Fagin, et al in | |
13 | * __ACM Trans. on Database Systems__, Sept 1979. | |
14 | * | |
15 | * | |
16 | * Here's the layout of dirents which is essentially the same as that of ext2 | |
17 | * within a single block. The field de_name_len is the number of bytes | |
18 | * actually required for the name (no null terminator). The field de_rec_len | |
19 | * is the number of bytes allocated to the dirent. The offset of the next | |
20 | * dirent in the block is (dirent + dirent->de_rec_len). When a dirent is | |
21 | * deleted, the preceding dirent inherits its allocated space, ie | |
22 | * prev->de_rec_len += deleted->de_rec_len. Since the next dirent is obtained | |
23 | * by adding de_rec_len to the current dirent, this essentially causes the | |
24 | * deleted dirent to get jumped over when iterating through all the dirents. | |
25 | * | |
26 | * When deleting the first dirent in a block, there is no previous dirent so | |
27 | * the field de_ino is set to zero to designate it as deleted. When allocating | |
28 | * a dirent, gfs2_dirent_alloc iterates through the dirents in a block. If the | |
29 | * first dirent has (de_ino == 0) and de_rec_len is large enough, this first | |
30 | * dirent is allocated. Otherwise it must go through all the 'used' dirents | |
31 | * searching for one in which the amount of total space minus the amount of | |
32 | * used space will provide enough space for the new dirent. | |
33 | * | |
34 | * There are two types of blocks in which dirents reside. In a stuffed dinode, | |
35 | * the dirents begin at offset sizeof(struct gfs2_dinode) from the beginning of | |
36 | * the block. In leaves, they begin at offset sizeof(struct gfs2_leaf) from the | |
37 | * beginning of the leaf block. The dirents reside in leaves when | |
38 | * | |
39 | * dip->i_di.di_flags & GFS2_DIF_EXHASH is true | |
40 | * | |
41 | * Otherwise, the dirents are "linear", within a single stuffed dinode block. | |
42 | * | |
43 | * When the dirents are in leaves, the actual contents of the directory file are | |
44 | * used as an array of 64-bit block pointers pointing to the leaf blocks. The | |
45 | * dirents are NOT in the directory file itself. There can be more than one | |
46 | * block pointer in the array that points to the same leaf. In fact, when a | |
47 | * directory is first converted from linear to exhash, all of the pointers | |
48 | * point to the same leaf. | |
49 | * | |
50 | * When a leaf is completely full, the size of the hash table can be | |
51 | * doubled unless it is already at the maximum size which is hard coded into | |
52 | * GFS2_DIR_MAX_DEPTH. After that, leaves are chained together in a linked list, | |
53 | * but never before the maximum hash table size has been reached. | |
54 | */ | |
55 | ||
56 | #include <linux/sched.h> | |
57 | #include <linux/slab.h> | |
58 | #include <linux/spinlock.h> | |
59 | #include <linux/buffer_head.h> | |
60 | #include <linux/sort.h> | |
61 | #include <linux/gfs2_ondisk.h> | |
62 | #include <linux/crc32.h> | |
63 | #include <linux/vmalloc.h> | |
64 | ||
65 | #include "gfs2.h" | |
66 | #include "lm_interface.h" | |
67 | #include "incore.h" | |
68 | #include "dir.h" | |
69 | #include "glock.h" | |
70 | #include "inode.h" | |
71 | #include "meta_io.h" | |
72 | #include "quota.h" | |
73 | #include "rgrp.h" | |
74 | #include "trans.h" | |
75 | #include "bmap.h" | |
76 | #include "util.h" | |
77 | ||
78 | #define IS_LEAF 1 /* Hashed (leaf) directory */ | |
79 | #define IS_DINODE 2 /* Linear (stuffed dinode block) directory */ | |
80 | ||
81 | #define gfs2_disk_hash2offset(h) (((u64)(h)) >> 1) | |
82 | #define gfs2_dir_offset2hash(p) ((u32)(((u64)(p)) << 1)) | |
83 | ||
84 | typedef int (*leaf_call_t) (struct gfs2_inode *dip, u32 index, u32 len, | |
85 | u64 leaf_no, void *data); | |
86 | typedef int (*gfs2_dscan_t)(const struct gfs2_dirent *dent, | |
87 | const struct qstr *name, void *opaque); | |
88 | ||
89 | ||
90 | int gfs2_dir_get_new_buffer(struct gfs2_inode *ip, u64 block, | |
91 | struct buffer_head **bhp) | |
92 | { | |
93 | struct buffer_head *bh; | |
94 | ||
95 | bh = gfs2_meta_new(ip->i_gl, block); | |
96 | gfs2_trans_add_bh(ip->i_gl, bh, 1); | |
97 | gfs2_metatype_set(bh, GFS2_METATYPE_JD, GFS2_FORMAT_JD); | |
98 | gfs2_buffer_clear_tail(bh, sizeof(struct gfs2_meta_header)); | |
99 | *bhp = bh; | |
100 | return 0; | |
101 | } | |
102 | ||
103 | static int gfs2_dir_get_existing_buffer(struct gfs2_inode *ip, u64 block, | |
104 | struct buffer_head **bhp) | |
105 | { | |
106 | struct buffer_head *bh; | |
107 | int error; | |
108 | ||
109 | error = gfs2_meta_read(ip->i_gl, block, DIO_START | DIO_WAIT, &bh); | |
110 | if (error) | |
111 | return error; | |
112 | if (gfs2_metatype_check(GFS2_SB(&ip->i_inode), bh, GFS2_METATYPE_JD)) { | |
113 | brelse(bh); | |
114 | return -EIO; | |
115 | } | |
116 | *bhp = bh; | |
117 | return 0; | |
118 | } | |
119 | ||
120 | static int gfs2_dir_write_stuffed(struct gfs2_inode *ip, const char *buf, | |
121 | unsigned int offset, unsigned int size) | |
122 | ||
123 | { | |
124 | struct buffer_head *dibh; | |
125 | int error; | |
126 | ||
127 | error = gfs2_meta_inode_buffer(ip, &dibh); | |
128 | if (error) | |
129 | return error; | |
130 | ||
131 | gfs2_trans_add_bh(ip->i_gl, dibh, 1); | |
132 | memcpy(dibh->b_data + offset + sizeof(struct gfs2_dinode), buf, size); | |
133 | if (ip->i_di.di_size < offset + size) | |
134 | ip->i_di.di_size = offset + size; | |
135 | ip->i_di.di_mtime = ip->i_di.di_ctime = get_seconds(); | |
136 | gfs2_dinode_out(&ip->i_di, dibh->b_data); | |
137 | ||
138 | brelse(dibh); | |
139 | ||
140 | return size; | |
141 | } | |
142 | ||
143 | ||
144 | ||
145 | /** | |
146 | * gfs2_dir_write_data - Write directory information to the inode | |
147 | * @ip: The GFS2 inode | |
148 | * @buf: The buffer containing information to be written | |
149 | * @offset: The file offset to start writing at | |
150 | * @size: The amount of data to write | |
151 | * | |
152 | * Returns: The number of bytes correctly written or error code | |
153 | */ | |
154 | static int gfs2_dir_write_data(struct gfs2_inode *ip, const char *buf, | |
155 | u64 offset, unsigned int size) | |
156 | { | |
157 | struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode); | |
158 | struct buffer_head *dibh; | |
159 | u64 lblock, dblock; | |
160 | u32 extlen = 0; | |
161 | unsigned int o; | |
162 | int copied = 0; | |
163 | int error = 0; | |
164 | ||
165 | if (!size) | |
166 | return 0; | |
167 | ||
168 | if (gfs2_is_stuffed(ip) && | |
169 | offset + size <= sdp->sd_sb.sb_bsize - sizeof(struct gfs2_dinode)) | |
170 | return gfs2_dir_write_stuffed(ip, buf, (unsigned int)offset, | |
171 | size); | |
172 | ||
173 | if (gfs2_assert_warn(sdp, gfs2_is_jdata(ip))) | |
174 | return -EINVAL; | |
175 | ||
176 | if (gfs2_is_stuffed(ip)) { | |
177 | error = gfs2_unstuff_dinode(ip, NULL); | |
178 | if (error) | |
179 | return error; | |
180 | } | |
181 | ||
182 | lblock = offset; | |
183 | o = do_div(lblock, sdp->sd_jbsize) + sizeof(struct gfs2_meta_header); | |
184 | ||
185 | while (copied < size) { | |
186 | unsigned int amount; | |
187 | struct buffer_head *bh; | |
188 | int new; | |
189 | ||
190 | amount = size - copied; | |
191 | if (amount > sdp->sd_sb.sb_bsize - o) | |
192 | amount = sdp->sd_sb.sb_bsize - o; | |
193 | ||
194 | if (!extlen) { | |
195 | new = 1; | |
196 | error = gfs2_extent_map(&ip->i_inode, lblock, &new, | |
197 | &dblock, &extlen); | |
198 | if (error) | |
199 | goto fail; | |
200 | error = -EIO; | |
201 | if (gfs2_assert_withdraw(sdp, dblock)) | |
202 | goto fail; | |
203 | } | |
204 | ||
205 | if (amount == sdp->sd_jbsize || new) | |
206 | error = gfs2_dir_get_new_buffer(ip, dblock, &bh); | |
207 | else | |
208 | error = gfs2_dir_get_existing_buffer(ip, dblock, &bh); | |
209 | ||
210 | if (error) | |
211 | goto fail; | |
212 | ||
213 | gfs2_trans_add_bh(ip->i_gl, bh, 1); | |
214 | memcpy(bh->b_data + o, buf, amount); | |
215 | brelse(bh); | |
216 | if (error) | |
217 | goto fail; | |
218 | ||
219 | buf += amount; | |
220 | copied += amount; | |
221 | lblock++; | |
222 | dblock++; | |
223 | extlen--; | |
224 | ||
225 | o = sizeof(struct gfs2_meta_header); | |
226 | } | |
227 | ||
228 | out: | |
229 | error = gfs2_meta_inode_buffer(ip, &dibh); | |
230 | if (error) | |
231 | return error; | |
232 | ||
233 | if (ip->i_di.di_size < offset + copied) | |
234 | ip->i_di.di_size = offset + copied; | |
235 | ip->i_di.di_mtime = ip->i_di.di_ctime = get_seconds(); | |
236 | ||
237 | gfs2_trans_add_bh(ip->i_gl, dibh, 1); | |
238 | gfs2_dinode_out(&ip->i_di, dibh->b_data); | |
239 | brelse(dibh); | |
240 | ||
241 | return copied; | |
242 | fail: | |
243 | if (copied) | |
244 | goto out; | |
245 | return error; | |
246 | } | |
247 | ||
248 | static int gfs2_dir_read_stuffed(struct gfs2_inode *ip, char *buf, | |
249 | unsigned int offset, unsigned int size) | |
250 | { | |
251 | struct buffer_head *dibh; | |
252 | int error; | |
253 | ||
254 | error = gfs2_meta_inode_buffer(ip, &dibh); | |
255 | if (!error) { | |
256 | offset += sizeof(struct gfs2_dinode); | |
257 | memcpy(buf, dibh->b_data + offset, size); | |
258 | brelse(dibh); | |
259 | } | |
260 | ||
261 | return (error) ? error : size; | |
262 | } | |
263 | ||
264 | ||
265 | /** | |
266 | * gfs2_dir_read_data - Read a data from a directory inode | |
267 | * @ip: The GFS2 Inode | |
268 | * @buf: The buffer to place result into | |
269 | * @offset: File offset to begin jdata_readng from | |
270 | * @size: Amount of data to transfer | |
271 | * | |
272 | * Returns: The amount of data actually copied or the error | |
273 | */ | |
274 | static int gfs2_dir_read_data(struct gfs2_inode *ip, char *buf, | |
275 | u64 offset, unsigned int size) | |
276 | { | |
277 | struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode); | |
278 | u64 lblock, dblock; | |
279 | u32 extlen = 0; | |
280 | unsigned int o; | |
281 | int copied = 0; | |
282 | int error = 0; | |
283 | ||
284 | if (offset >= ip->i_di.di_size) | |
285 | return 0; | |
286 | ||
287 | if ((offset + size) > ip->i_di.di_size) | |
288 | size = ip->i_di.di_size - offset; | |
289 | ||
290 | if (!size) | |
291 | return 0; | |
292 | ||
293 | if (gfs2_is_stuffed(ip)) | |
294 | return gfs2_dir_read_stuffed(ip, buf, (unsigned int)offset, | |
295 | size); | |
296 | ||
297 | if (gfs2_assert_warn(sdp, gfs2_is_jdata(ip))) | |
298 | return -EINVAL; | |
299 | ||
300 | lblock = offset; | |
301 | o = do_div(lblock, sdp->sd_jbsize) + sizeof(struct gfs2_meta_header); | |
302 | ||
303 | while (copied < size) { | |
304 | unsigned int amount; | |
305 | struct buffer_head *bh; | |
306 | int new; | |
307 | ||
308 | amount = size - copied; | |
309 | if (amount > sdp->sd_sb.sb_bsize - o) | |
310 | amount = sdp->sd_sb.sb_bsize - o; | |
311 | ||
312 | if (!extlen) { | |
313 | new = 0; | |
314 | error = gfs2_extent_map(&ip->i_inode, lblock, &new, | |
315 | &dblock, &extlen); | |
316 | if (error) | |
317 | goto fail; | |
318 | } | |
319 | ||
320 | if (extlen > 1) | |
321 | gfs2_meta_ra(ip->i_gl, dblock, extlen); | |
322 | ||
323 | if (dblock) { | |
324 | if (new) | |
325 | error = gfs2_dir_get_new_buffer(ip, dblock, &bh); | |
326 | else | |
327 | error = gfs2_dir_get_existing_buffer(ip, dblock, &bh); | |
328 | if (error) | |
329 | goto fail; | |
330 | dblock++; | |
331 | extlen--; | |
332 | } else | |
333 | bh = NULL; | |
334 | ||
335 | memcpy(buf, bh->b_data + o, amount); | |
336 | brelse(bh); | |
337 | if (error) | |
338 | goto fail; | |
339 | ||
340 | buf += amount; | |
341 | copied += amount; | |
342 | lblock++; | |
343 | ||
344 | o = sizeof(struct gfs2_meta_header); | |
345 | } | |
346 | ||
347 | return copied; | |
348 | fail: | |
349 | return (copied) ? copied : error; | |
350 | } | |
351 | ||
352 | static inline int __gfs2_dirent_find(const struct gfs2_dirent *dent, | |
353 | const struct qstr *name, int ret) | |
354 | { | |
355 | if (dent->de_inum.no_addr != 0 && | |
356 | be32_to_cpu(dent->de_hash) == name->hash && | |
357 | be16_to_cpu(dent->de_name_len) == name->len && | |
358 | memcmp(dent+1, name->name, name->len) == 0) | |
359 | return ret; | |
360 | return 0; | |
361 | } | |
362 | ||
363 | static int gfs2_dirent_find(const struct gfs2_dirent *dent, | |
364 | const struct qstr *name, | |
365 | void *opaque) | |
366 | { | |
367 | return __gfs2_dirent_find(dent, name, 1); | |
368 | } | |
369 | ||
370 | static int gfs2_dirent_prev(const struct gfs2_dirent *dent, | |
371 | const struct qstr *name, | |
372 | void *opaque) | |
373 | { | |
374 | return __gfs2_dirent_find(dent, name, 2); | |
375 | } | |
376 | ||
377 | /* | |
378 | * name->name holds ptr to start of block. | |
379 | * name->len holds size of block. | |
380 | */ | |
381 | static int gfs2_dirent_last(const struct gfs2_dirent *dent, | |
382 | const struct qstr *name, | |
383 | void *opaque) | |
384 | { | |
385 | const char *start = name->name; | |
386 | const char *end = (const char *)dent + be16_to_cpu(dent->de_rec_len); | |
387 | if (name->len == (end - start)) | |
388 | return 1; | |
389 | return 0; | |
390 | } | |
391 | ||
392 | static int gfs2_dirent_find_space(const struct gfs2_dirent *dent, | |
393 | const struct qstr *name, | |
394 | void *opaque) | |
395 | { | |
396 | unsigned required = GFS2_DIRENT_SIZE(name->len); | |
397 | unsigned actual = GFS2_DIRENT_SIZE(be16_to_cpu(dent->de_name_len)); | |
398 | unsigned totlen = be16_to_cpu(dent->de_rec_len); | |
399 | ||
400 | if (!dent->de_inum.no_addr) | |
401 | actual = GFS2_DIRENT_SIZE(0); | |
402 | if ((totlen - actual) >= required) | |
403 | return 1; | |
404 | return 0; | |
405 | } | |
406 | ||
407 | struct dirent_gather { | |
408 | const struct gfs2_dirent **pdent; | |
409 | unsigned offset; | |
410 | }; | |
411 | ||
412 | static int gfs2_dirent_gather(const struct gfs2_dirent *dent, | |
413 | const struct qstr *name, | |
414 | void *opaque) | |
415 | { | |
416 | struct dirent_gather *g = opaque; | |
417 | if (dent->de_inum.no_addr) { | |
418 | g->pdent[g->offset++] = dent; | |
419 | } | |
420 | return 0; | |
421 | } | |
422 | ||
423 | /* | |
424 | * Other possible things to check: | |
425 | * - Inode located within filesystem size (and on valid block) | |
426 | * - Valid directory entry type | |
427 | * Not sure how heavy-weight we want to make this... could also check | |
428 | * hash is correct for example, but that would take a lot of extra time. | |
429 | * For now the most important thing is to check that the various sizes | |
430 | * are correct. | |
431 | */ | |
432 | static int gfs2_check_dirent(struct gfs2_dirent *dent, unsigned int offset, | |
433 | unsigned int size, unsigned int len, int first) | |
434 | { | |
435 | const char *msg = "gfs2_dirent too small"; | |
436 | if (unlikely(size < sizeof(struct gfs2_dirent))) | |
437 | goto error; | |
438 | msg = "gfs2_dirent misaligned"; | |
439 | if (unlikely(offset & 0x7)) | |
440 | goto error; | |
441 | msg = "gfs2_dirent points beyond end of block"; | |
442 | if (unlikely(offset + size > len)) | |
443 | goto error; | |
444 | msg = "zero inode number"; | |
445 | if (unlikely(!first && !dent->de_inum.no_addr)) | |
446 | goto error; | |
447 | msg = "name length is greater than space in dirent"; | |
448 | if (dent->de_inum.no_addr && | |
449 | unlikely(sizeof(struct gfs2_dirent)+be16_to_cpu(dent->de_name_len) > | |
450 | size)) | |
451 | goto error; | |
452 | return 0; | |
453 | error: | |
454 | printk(KERN_WARNING "gfs2_check_dirent: %s (%s)\n", msg, | |
455 | first ? "first in block" : "not first in block"); | |
456 | return -EIO; | |
457 | } | |
458 | ||
459 | static int gfs2_dirent_offset(const void *buf) | |
460 | { | |
461 | const struct gfs2_meta_header *h = buf; | |
462 | int offset; | |
463 | ||
464 | BUG_ON(buf == NULL); | |
465 | ||
466 | switch(be32_to_cpu(h->mh_type)) { | |
467 | case GFS2_METATYPE_LF: | |
468 | offset = sizeof(struct gfs2_leaf); | |
469 | break; | |
470 | case GFS2_METATYPE_DI: | |
471 | offset = sizeof(struct gfs2_dinode); | |
472 | break; | |
473 | default: | |
474 | goto wrong_type; | |
475 | } | |
476 | return offset; | |
477 | wrong_type: | |
478 | printk(KERN_WARNING "gfs2_scan_dirent: wrong block type %u\n", | |
479 | be32_to_cpu(h->mh_type)); | |
480 | return -1; | |
481 | } | |
482 | ||
483 | static struct gfs2_dirent *gfs2_dirent_scan(struct inode *inode, void *buf, | |
484 | unsigned int len, gfs2_dscan_t scan, | |
485 | const struct qstr *name, | |
486 | void *opaque) | |
487 | { | |
488 | struct gfs2_dirent *dent, *prev; | |
489 | unsigned offset; | |
490 | unsigned size; | |
491 | int ret = 0; | |
492 | ||
493 | ret = gfs2_dirent_offset(buf); | |
494 | if (ret < 0) | |
495 | goto consist_inode; | |
496 | ||
497 | offset = ret; | |
498 | prev = NULL; | |
499 | dent = buf + offset; | |
500 | size = be16_to_cpu(dent->de_rec_len); | |
501 | if (gfs2_check_dirent(dent, offset, size, len, 1)) | |
502 | goto consist_inode; | |
503 | do { | |
504 | ret = scan(dent, name, opaque); | |
505 | if (ret) | |
506 | break; | |
507 | offset += size; | |
508 | if (offset == len) | |
509 | break; | |
510 | prev = dent; | |
511 | dent = buf + offset; | |
512 | size = be16_to_cpu(dent->de_rec_len); | |
513 | if (gfs2_check_dirent(dent, offset, size, len, 0)) | |
514 | goto consist_inode; | |
515 | } while(1); | |
516 | ||
517 | switch(ret) { | |
518 | case 0: | |
519 | return NULL; | |
520 | case 1: | |
521 | return dent; | |
522 | case 2: | |
523 | return prev ? prev : dent; | |
524 | default: | |
525 | BUG_ON(ret > 0); | |
526 | return ERR_PTR(ret); | |
527 | } | |
528 | ||
529 | consist_inode: | |
530 | gfs2_consist_inode(GFS2_I(inode)); | |
531 | return ERR_PTR(-EIO); | |
532 | } | |
533 | ||
534 | ||
535 | /** | |
536 | * dirent_first - Return the first dirent | |
537 | * @dip: the directory | |
538 | * @bh: The buffer | |
539 | * @dent: Pointer to list of dirents | |
540 | * | |
541 | * return first dirent whether bh points to leaf or stuffed dinode | |
542 | * | |
543 | * Returns: IS_LEAF, IS_DINODE, or -errno | |
544 | */ | |
545 | ||
546 | static int dirent_first(struct gfs2_inode *dip, struct buffer_head *bh, | |
547 | struct gfs2_dirent **dent) | |
548 | { | |
549 | struct gfs2_meta_header *h = (struct gfs2_meta_header *)bh->b_data; | |
550 | ||
551 | if (be32_to_cpu(h->mh_type) == GFS2_METATYPE_LF) { | |
552 | if (gfs2_meta_check(GFS2_SB(&dip->i_inode), bh)) | |
553 | return -EIO; | |
554 | *dent = (struct gfs2_dirent *)(bh->b_data + | |
555 | sizeof(struct gfs2_leaf)); | |
556 | return IS_LEAF; | |
557 | } else { | |
558 | if (gfs2_metatype_check(GFS2_SB(&dip->i_inode), bh, GFS2_METATYPE_DI)) | |
559 | return -EIO; | |
560 | *dent = (struct gfs2_dirent *)(bh->b_data + | |
561 | sizeof(struct gfs2_dinode)); | |
562 | return IS_DINODE; | |
563 | } | |
564 | } | |
565 | ||
566 | static int dirent_check_reclen(struct gfs2_inode *dip, | |
567 | const struct gfs2_dirent *d, const void *end_p) | |
568 | { | |
569 | const void *ptr = d; | |
570 | u16 rec_len = be16_to_cpu(d->de_rec_len); | |
571 | ||
572 | if (unlikely(rec_len < sizeof(struct gfs2_dirent))) | |
573 | goto broken; | |
574 | ptr += rec_len; | |
575 | if (ptr < end_p) | |
576 | return rec_len; | |
577 | if (ptr == end_p) | |
578 | return -ENOENT; | |
579 | broken: | |
580 | gfs2_consist_inode(dip); | |
581 | return -EIO; | |
582 | } | |
583 | ||
584 | /** | |
585 | * dirent_next - Next dirent | |
586 | * @dip: the directory | |
587 | * @bh: The buffer | |
588 | * @dent: Pointer to list of dirents | |
589 | * | |
590 | * Returns: 0 on success, error code otherwise | |
591 | */ | |
592 | ||
593 | static int dirent_next(struct gfs2_inode *dip, struct buffer_head *bh, | |
594 | struct gfs2_dirent **dent) | |
595 | { | |
596 | struct gfs2_dirent *cur = *dent, *tmp; | |
597 | char *bh_end = bh->b_data + bh->b_size; | |
598 | int ret; | |
599 | ||
600 | ret = dirent_check_reclen(dip, cur, bh_end); | |
601 | if (ret < 0) | |
602 | return ret; | |
603 | ||
604 | tmp = (void *)cur + ret; | |
605 | ret = dirent_check_reclen(dip, tmp, bh_end); | |
606 | if (ret == -EIO) | |
607 | return ret; | |
608 | ||
609 | /* Only the first dent could ever have de_inum.no_addr == 0 */ | |
610 | if (!tmp->de_inum.no_addr) { | |
611 | gfs2_consist_inode(dip); | |
612 | return -EIO; | |
613 | } | |
614 | ||
615 | *dent = tmp; | |
616 | return 0; | |
617 | } | |
618 | ||
619 | /** | |
620 | * dirent_del - Delete a dirent | |
621 | * @dip: The GFS2 inode | |
622 | * @bh: The buffer | |
623 | * @prev: The previous dirent | |
624 | * @cur: The current dirent | |
625 | * | |
626 | */ | |
627 | ||
628 | static void dirent_del(struct gfs2_inode *dip, struct buffer_head *bh, | |
629 | struct gfs2_dirent *prev, struct gfs2_dirent *cur) | |
630 | { | |
631 | u16 cur_rec_len, prev_rec_len; | |
632 | ||
633 | if (!cur->de_inum.no_addr) { | |
634 | gfs2_consist_inode(dip); | |
635 | return; | |
636 | } | |
637 | ||
638 | gfs2_trans_add_bh(dip->i_gl, bh, 1); | |
639 | ||
640 | /* If there is no prev entry, this is the first entry in the block. | |
641 | The de_rec_len is already as big as it needs to be. Just zero | |
642 | out the inode number and return. */ | |
643 | ||
644 | if (!prev) { | |
645 | cur->de_inum.no_addr = 0; /* No endianess worries */ | |
646 | return; | |
647 | } | |
648 | ||
649 | /* Combine this dentry with the previous one. */ | |
650 | ||
651 | prev_rec_len = be16_to_cpu(prev->de_rec_len); | |
652 | cur_rec_len = be16_to_cpu(cur->de_rec_len); | |
653 | ||
654 | if ((char *)prev + prev_rec_len != (char *)cur) | |
655 | gfs2_consist_inode(dip); | |
656 | if ((char *)cur + cur_rec_len > bh->b_data + bh->b_size) | |
657 | gfs2_consist_inode(dip); | |
658 | ||
659 | prev_rec_len += cur_rec_len; | |
660 | prev->de_rec_len = cpu_to_be16(prev_rec_len); | |
661 | } | |
662 | ||
663 | /* | |
664 | * Takes a dent from which to grab space as an argument. Returns the | |
665 | * newly created dent. | |
666 | */ | |
667 | static struct gfs2_dirent *gfs2_init_dirent(struct inode *inode, | |
668 | struct gfs2_dirent *dent, | |
669 | const struct qstr *name, | |
670 | struct buffer_head *bh) | |
671 | { | |
672 | struct gfs2_inode *ip = GFS2_I(inode); | |
673 | struct gfs2_dirent *ndent; | |
674 | unsigned offset = 0, totlen; | |
675 | ||
676 | if (dent->de_inum.no_addr) | |
677 | offset = GFS2_DIRENT_SIZE(be16_to_cpu(dent->de_name_len)); | |
678 | totlen = be16_to_cpu(dent->de_rec_len); | |
679 | BUG_ON(offset + name->len > totlen); | |
680 | gfs2_trans_add_bh(ip->i_gl, bh, 1); | |
681 | ndent = (struct gfs2_dirent *)((char *)dent + offset); | |
682 | dent->de_rec_len = cpu_to_be16(offset); | |
683 | gfs2_qstr2dirent(name, totlen - offset, ndent); | |
684 | return ndent; | |
685 | } | |
686 | ||
687 | static struct gfs2_dirent *gfs2_dirent_alloc(struct inode *inode, | |
688 | struct buffer_head *bh, | |
689 | const struct qstr *name) | |
690 | { | |
691 | struct gfs2_dirent *dent; | |
692 | dent = gfs2_dirent_scan(inode, bh->b_data, bh->b_size, | |
693 | gfs2_dirent_find_space, name, NULL); | |
694 | if (!dent || IS_ERR(dent)) | |
695 | return dent; | |
696 | return gfs2_init_dirent(inode, dent, name, bh); | |
697 | } | |
698 | ||
699 | static int get_leaf(struct gfs2_inode *dip, u64 leaf_no, | |
700 | struct buffer_head **bhp) | |
701 | { | |
702 | int error; | |
703 | ||
704 | error = gfs2_meta_read(dip->i_gl, leaf_no, DIO_START | DIO_WAIT, bhp); | |
705 | if (!error && gfs2_metatype_check(GFS2_SB(&dip->i_inode), *bhp, GFS2_METATYPE_LF)) { | |
706 | /* printk(KERN_INFO "block num=%llu\n", leaf_no); */ | |
707 | error = -EIO; | |
708 | } | |
709 | ||
710 | return error; | |
711 | } | |
712 | ||
713 | /** | |
714 | * get_leaf_nr - Get a leaf number associated with the index | |
715 | * @dip: The GFS2 inode | |
716 | * @index: | |
717 | * @leaf_out: | |
718 | * | |
719 | * Returns: 0 on success, error code otherwise | |
720 | */ | |
721 | ||
722 | static int get_leaf_nr(struct gfs2_inode *dip, u32 index, | |
723 | u64 *leaf_out) | |
724 | { | |
725 | u64 leaf_no; | |
726 | int error; | |
727 | ||
728 | error = gfs2_dir_read_data(dip, (char *)&leaf_no, | |
729 | index * sizeof(u64), | |
730 | sizeof(u64)); | |
731 | if (error != sizeof(u64)) | |
732 | return (error < 0) ? error : -EIO; | |
733 | ||
734 | *leaf_out = be64_to_cpu(leaf_no); | |
735 | ||
736 | return 0; | |
737 | } | |
738 | ||
739 | static int get_first_leaf(struct gfs2_inode *dip, u32 index, | |
740 | struct buffer_head **bh_out) | |
741 | { | |
742 | u64 leaf_no; | |
743 | int error; | |
744 | ||
745 | error = get_leaf_nr(dip, index, &leaf_no); | |
746 | if (!error) | |
747 | error = get_leaf(dip, leaf_no, bh_out); | |
748 | ||
749 | return error; | |
750 | } | |
751 | ||
752 | static struct gfs2_dirent *gfs2_dirent_search(struct inode *inode, | |
753 | const struct qstr *name, | |
754 | gfs2_dscan_t scan, | |
755 | struct buffer_head **pbh) | |
756 | { | |
757 | struct buffer_head *bh; | |
758 | struct gfs2_dirent *dent; | |
759 | struct gfs2_inode *ip = GFS2_I(inode); | |
760 | int error; | |
761 | ||
762 | if (ip->i_di.di_flags & GFS2_DIF_EXHASH) { | |
763 | struct gfs2_leaf *leaf; | |
764 | unsigned hsize = 1 << ip->i_di.di_depth; | |
765 | unsigned index; | |
766 | u64 ln; | |
767 | if (hsize * sizeof(u64) != ip->i_di.di_size) { | |
768 | gfs2_consist_inode(ip); | |
769 | return ERR_PTR(-EIO); | |
770 | } | |
771 | ||
772 | index = name->hash >> (32 - ip->i_di.di_depth); | |
773 | error = get_first_leaf(ip, index, &bh); | |
774 | if (error) | |
775 | return ERR_PTR(error); | |
776 | do { | |
777 | dent = gfs2_dirent_scan(inode, bh->b_data, bh->b_size, | |
778 | scan, name, NULL); | |
779 | if (dent) | |
780 | goto got_dent; | |
781 | leaf = (struct gfs2_leaf *)bh->b_data; | |
782 | ln = be64_to_cpu(leaf->lf_next); | |
783 | brelse(bh); | |
784 | if (!ln) | |
785 | break; | |
786 | ||
787 | error = get_leaf(ip, ln, &bh); | |
788 | } while(!error); | |
789 | ||
790 | return error ? ERR_PTR(error) : NULL; | |
791 | } | |
792 | ||
793 | ||
794 | error = gfs2_meta_inode_buffer(ip, &bh); | |
795 | if (error) | |
796 | return ERR_PTR(error); | |
797 | dent = gfs2_dirent_scan(inode, bh->b_data, bh->b_size, scan, name, NULL); | |
798 | got_dent: | |
799 | if (unlikely(dent == NULL || IS_ERR(dent))) { | |
800 | brelse(bh); | |
801 | bh = NULL; | |
802 | } | |
803 | *pbh = bh; | |
804 | return dent; | |
805 | } | |
806 | ||
807 | static struct gfs2_leaf *new_leaf(struct inode *inode, struct buffer_head **pbh, u16 depth) | |
808 | { | |
809 | struct gfs2_inode *ip = GFS2_I(inode); | |
810 | u64 bn = gfs2_alloc_meta(ip); | |
811 | struct buffer_head *bh = gfs2_meta_new(ip->i_gl, bn); | |
812 | struct gfs2_leaf *leaf; | |
813 | struct gfs2_dirent *dent; | |
814 | struct qstr name = { .name = "", .len = 0, .hash = 0 }; | |
815 | if (!bh) | |
816 | return NULL; | |
817 | ||
818 | gfs2_trans_add_bh(ip->i_gl, bh, 1); | |
819 | gfs2_metatype_set(bh, GFS2_METATYPE_LF, GFS2_FORMAT_LF); | |
820 | leaf = (struct gfs2_leaf *)bh->b_data; | |
821 | leaf->lf_depth = cpu_to_be16(depth); | |
822 | leaf->lf_entries = 0; | |
823 | leaf->lf_dirent_format = cpu_to_be16(GFS2_FORMAT_DE); | |
824 | leaf->lf_next = 0; | |
825 | memset(leaf->lf_reserved, 0, sizeof(leaf->lf_reserved)); | |
826 | dent = (struct gfs2_dirent *)(leaf+1); | |
827 | gfs2_qstr2dirent(&name, bh->b_size - sizeof(struct gfs2_leaf), dent); | |
828 | *pbh = bh; | |
829 | return leaf; | |
830 | } | |
831 | ||
832 | /** | |
833 | * dir_make_exhash - Convert a stuffed directory into an ExHash directory | |
834 | * @dip: The GFS2 inode | |
835 | * | |
836 | * Returns: 0 on success, error code otherwise | |
837 | */ | |
838 | ||
839 | static int dir_make_exhash(struct inode *inode) | |
840 | { | |
841 | struct gfs2_inode *dip = GFS2_I(inode); | |
842 | struct gfs2_sbd *sdp = GFS2_SB(inode); | |
843 | struct gfs2_dirent *dent; | |
844 | struct qstr args; | |
845 | struct buffer_head *bh, *dibh; | |
846 | struct gfs2_leaf *leaf; | |
847 | int y; | |
848 | u32 x; | |
849 | u64 *lp, bn; | |
850 | int error; | |
851 | ||
852 | error = gfs2_meta_inode_buffer(dip, &dibh); | |
853 | if (error) | |
854 | return error; | |
855 | ||
856 | /* Turn over a new leaf */ | |
857 | ||
858 | leaf = new_leaf(inode, &bh, 0); | |
859 | if (!leaf) | |
860 | return -ENOSPC; | |
861 | bn = bh->b_blocknr; | |
862 | ||
863 | gfs2_assert(sdp, dip->i_di.di_entries < (1 << 16)); | |
864 | leaf->lf_entries = cpu_to_be16(dip->i_di.di_entries); | |
865 | ||
866 | /* Copy dirents */ | |
867 | ||
868 | gfs2_buffer_copy_tail(bh, sizeof(struct gfs2_leaf), dibh, | |
869 | sizeof(struct gfs2_dinode)); | |
870 | ||
871 | /* Find last entry */ | |
872 | ||
873 | x = 0; | |
874 | args.len = bh->b_size - sizeof(struct gfs2_dinode) + | |
875 | sizeof(struct gfs2_leaf); | |
876 | args.name = bh->b_data; | |
877 | dent = gfs2_dirent_scan(&dip->i_inode, bh->b_data, bh->b_size, | |
878 | gfs2_dirent_last, &args, NULL); | |
879 | if (!dent) { | |
880 | brelse(bh); | |
881 | brelse(dibh); | |
882 | return -EIO; | |
883 | } | |
884 | if (IS_ERR(dent)) { | |
885 | brelse(bh); | |
886 | brelse(dibh); | |
887 | return PTR_ERR(dent); | |
888 | } | |
889 | ||
890 | /* Adjust the last dirent's record length | |
891 | (Remember that dent still points to the last entry.) */ | |
892 | ||
893 | dent->de_rec_len = cpu_to_be16(be16_to_cpu(dent->de_rec_len) + | |
894 | sizeof(struct gfs2_dinode) - | |
895 | sizeof(struct gfs2_leaf)); | |
896 | ||
897 | brelse(bh); | |
898 | ||
899 | /* We're done with the new leaf block, now setup the new | |
900 | hash table. */ | |
901 | ||
902 | gfs2_trans_add_bh(dip->i_gl, dibh, 1); | |
903 | gfs2_buffer_clear_tail(dibh, sizeof(struct gfs2_dinode)); | |
904 | ||
905 | lp = (u64 *)(dibh->b_data + sizeof(struct gfs2_dinode)); | |
906 | ||
907 | for (x = sdp->sd_hash_ptrs; x--; lp++) | |
908 | *lp = cpu_to_be64(bn); | |
909 | ||
910 | dip->i_di.di_size = sdp->sd_sb.sb_bsize / 2; | |
911 | dip->i_di.di_blocks++; | |
912 | dip->i_di.di_flags |= GFS2_DIF_EXHASH; | |
913 | dip->i_di.di_payload_format = 0; | |
914 | ||
915 | for (x = sdp->sd_hash_ptrs, y = -1; x; x >>= 1, y++) ; | |
916 | dip->i_di.di_depth = y; | |
917 | ||
918 | gfs2_dinode_out(&dip->i_di, dibh->b_data); | |
919 | ||
920 | brelse(dibh); | |
921 | ||
922 | return 0; | |
923 | } | |
924 | ||
925 | /** | |
926 | * dir_split_leaf - Split a leaf block into two | |
927 | * @dip: The GFS2 inode | |
928 | * @index: | |
929 | * @leaf_no: | |
930 | * | |
931 | * Returns: 0 on success, error code on failure | |
932 | */ | |
933 | ||
934 | static int dir_split_leaf(struct inode *inode, const struct qstr *name) | |
935 | { | |
936 | struct gfs2_inode *dip = GFS2_I(inode); | |
937 | struct buffer_head *nbh, *obh, *dibh; | |
938 | struct gfs2_leaf *nleaf, *oleaf; | |
939 | struct gfs2_dirent *dent = NULL, *prev = NULL, *next = NULL, *new; | |
940 | u32 start, len, half_len, divider; | |
941 | u64 bn, *lp, leaf_no; | |
942 | u32 index; | |
943 | int x, moved = 0; | |
944 | int error; | |
945 | ||
946 | index = name->hash >> (32 - dip->i_di.di_depth); | |
947 | error = get_leaf_nr(dip, index, &leaf_no); | |
948 | if (error) | |
949 | return error; | |
950 | ||
951 | /* Get the old leaf block */ | |
952 | error = get_leaf(dip, leaf_no, &obh); | |
953 | if (error) | |
954 | return error; | |
955 | ||
956 | oleaf = (struct gfs2_leaf *)obh->b_data; | |
957 | if (dip->i_di.di_depth == be16_to_cpu(oleaf->lf_depth)) { | |
958 | brelse(obh); | |
959 | return 1; /* can't split */ | |
960 | } | |
961 | ||
962 | gfs2_trans_add_bh(dip->i_gl, obh, 1); | |
963 | ||
964 | nleaf = new_leaf(inode, &nbh, be16_to_cpu(oleaf->lf_depth) + 1); | |
965 | if (!nleaf) { | |
966 | brelse(obh); | |
967 | return -ENOSPC; | |
968 | } | |
969 | bn = nbh->b_blocknr; | |
970 | ||
971 | /* Compute the start and len of leaf pointers in the hash table. */ | |
972 | len = 1 << (dip->i_di.di_depth - be16_to_cpu(oleaf->lf_depth)); | |
973 | half_len = len >> 1; | |
974 | if (!half_len) { | |
975 | printk(KERN_WARNING "di_depth %u lf_depth %u index %u\n", dip->i_di.di_depth, be16_to_cpu(oleaf->lf_depth), index); | |
976 | gfs2_consist_inode(dip); | |
977 | error = -EIO; | |
978 | goto fail_brelse; | |
979 | } | |
980 | ||
981 | start = (index & ~(len - 1)); | |
982 | ||
983 | /* Change the pointers. | |
984 | Don't bother distinguishing stuffed from non-stuffed. | |
985 | This code is complicated enough already. */ | |
986 | lp = kmalloc(half_len * sizeof(u64), GFP_NOFS | __GFP_NOFAIL); | |
987 | /* Change the pointers */ | |
988 | for (x = 0; x < half_len; x++) | |
989 | lp[x] = cpu_to_be64(bn); | |
990 | ||
991 | error = gfs2_dir_write_data(dip, (char *)lp, start * sizeof(u64), | |
992 | half_len * sizeof(u64)); | |
993 | if (error != half_len * sizeof(u64)) { | |
994 | if (error >= 0) | |
995 | error = -EIO; | |
996 | goto fail_lpfree; | |
997 | } | |
998 | ||
999 | kfree(lp); | |
1000 | ||
1001 | /* Compute the divider */ | |
1002 | divider = (start + half_len) << (32 - dip->i_di.di_depth); | |
1003 | ||
1004 | /* Copy the entries */ | |
1005 | dirent_first(dip, obh, &dent); | |
1006 | ||
1007 | do { | |
1008 | next = dent; | |
1009 | if (dirent_next(dip, obh, &next)) | |
1010 | next = NULL; | |
1011 | ||
1012 | if (dent->de_inum.no_addr && | |
1013 | be32_to_cpu(dent->de_hash) < divider) { | |
1014 | struct qstr str; | |
1015 | str.name = (char*)(dent+1); | |
1016 | str.len = be16_to_cpu(dent->de_name_len); | |
1017 | str.hash = be32_to_cpu(dent->de_hash); | |
1018 | new = gfs2_dirent_alloc(inode, nbh, &str); | |
1019 | if (IS_ERR(new)) { | |
1020 | error = PTR_ERR(new); | |
1021 | break; | |
1022 | } | |
1023 | ||
1024 | new->de_inum = dent->de_inum; /* No endian worries */ | |
1025 | new->de_type = dent->de_type; /* No endian worries */ | |
1026 | nleaf->lf_entries = cpu_to_be16(be16_to_cpu(nleaf->lf_entries)+1); | |
1027 | ||
1028 | dirent_del(dip, obh, prev, dent); | |
1029 | ||
1030 | if (!oleaf->lf_entries) | |
1031 | gfs2_consist_inode(dip); | |
1032 | oleaf->lf_entries = cpu_to_be16(be16_to_cpu(oleaf->lf_entries)-1); | |
1033 | ||
1034 | if (!prev) | |
1035 | prev = dent; | |
1036 | ||
1037 | moved = 1; | |
1038 | } else { | |
1039 | prev = dent; | |
1040 | } | |
1041 | dent = next; | |
1042 | } while (dent); | |
1043 | ||
1044 | oleaf->lf_depth = nleaf->lf_depth; | |
1045 | ||
1046 | error = gfs2_meta_inode_buffer(dip, &dibh); | |
1047 | if (!gfs2_assert_withdraw(GFS2_SB(&dip->i_inode), !error)) { | |
1048 | dip->i_di.di_blocks++; | |
1049 | gfs2_dinode_out(&dip->i_di, dibh->b_data); | |
1050 | brelse(dibh); | |
1051 | } | |
1052 | ||
1053 | brelse(obh); | |
1054 | brelse(nbh); | |
1055 | ||
1056 | return error; | |
1057 | ||
1058 | fail_lpfree: | |
1059 | kfree(lp); | |
1060 | ||
1061 | fail_brelse: | |
1062 | brelse(obh); | |
1063 | brelse(nbh); | |
1064 | return error; | |
1065 | } | |
1066 | ||
1067 | /** | |
1068 | * dir_double_exhash - Double size of ExHash table | |
1069 | * @dip: The GFS2 dinode | |
1070 | * | |
1071 | * Returns: 0 on success, error code on failure | |
1072 | */ | |
1073 | ||
1074 | static int dir_double_exhash(struct gfs2_inode *dip) | |
1075 | { | |
1076 | struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode); | |
1077 | struct buffer_head *dibh; | |
1078 | u32 hsize; | |
1079 | u64 *buf; | |
1080 | u64 *from, *to; | |
1081 | u64 block; | |
1082 | int x; | |
1083 | int error = 0; | |
1084 | ||
1085 | hsize = 1 << dip->i_di.di_depth; | |
1086 | if (hsize * sizeof(u64) != dip->i_di.di_size) { | |
1087 | gfs2_consist_inode(dip); | |
1088 | return -EIO; | |
1089 | } | |
1090 | ||
1091 | /* Allocate both the "from" and "to" buffers in one big chunk */ | |
1092 | ||
1093 | buf = kcalloc(3, sdp->sd_hash_bsize, GFP_KERNEL | __GFP_NOFAIL); | |
1094 | ||
1095 | for (block = dip->i_di.di_size >> sdp->sd_hash_bsize_shift; block--;) { | |
1096 | error = gfs2_dir_read_data(dip, (char *)buf, | |
1097 | block * sdp->sd_hash_bsize, | |
1098 | sdp->sd_hash_bsize); | |
1099 | if (error != sdp->sd_hash_bsize) { | |
1100 | if (error >= 0) | |
1101 | error = -EIO; | |
1102 | goto fail; | |
1103 | } | |
1104 | ||
1105 | from = buf; | |
1106 | to = (u64 *)((char *)buf + sdp->sd_hash_bsize); | |
1107 | ||
1108 | for (x = sdp->sd_hash_ptrs; x--; from++) { | |
1109 | *to++ = *from; /* No endianess worries */ | |
1110 | *to++ = *from; | |
1111 | } | |
1112 | ||
1113 | error = gfs2_dir_write_data(dip, | |
1114 | (char *)buf + sdp->sd_hash_bsize, | |
1115 | block * sdp->sd_sb.sb_bsize, | |
1116 | sdp->sd_sb.sb_bsize); | |
1117 | if (error != sdp->sd_sb.sb_bsize) { | |
1118 | if (error >= 0) | |
1119 | error = -EIO; | |
1120 | goto fail; | |
1121 | } | |
1122 | } | |
1123 | ||
1124 | kfree(buf); | |
1125 | ||
1126 | error = gfs2_meta_inode_buffer(dip, &dibh); | |
1127 | if (!gfs2_assert_withdraw(sdp, !error)) { | |
1128 | dip->i_di.di_depth++; | |
1129 | gfs2_dinode_out(&dip->i_di, dibh->b_data); | |
1130 | brelse(dibh); | |
1131 | } | |
1132 | ||
1133 | return error; | |
1134 | ||
1135 | fail: | |
1136 | kfree(buf); | |
1137 | return error; | |
1138 | } | |
1139 | ||
1140 | /** | |
1141 | * compare_dents - compare directory entries by hash value | |
1142 | * @a: first dent | |
1143 | * @b: second dent | |
1144 | * | |
1145 | * When comparing the hash entries of @a to @b: | |
1146 | * gt: returns 1 | |
1147 | * lt: returns -1 | |
1148 | * eq: returns 0 | |
1149 | */ | |
1150 | ||
1151 | static int compare_dents(const void *a, const void *b) | |
1152 | { | |
1153 | const struct gfs2_dirent *dent_a, *dent_b; | |
1154 | u32 hash_a, hash_b; | |
1155 | int ret = 0; | |
1156 | ||
1157 | dent_a = *(const struct gfs2_dirent **)a; | |
1158 | hash_a = be32_to_cpu(dent_a->de_hash); | |
1159 | ||
1160 | dent_b = *(const struct gfs2_dirent **)b; | |
1161 | hash_b = be32_to_cpu(dent_b->de_hash); | |
1162 | ||
1163 | if (hash_a > hash_b) | |
1164 | ret = 1; | |
1165 | else if (hash_a < hash_b) | |
1166 | ret = -1; | |
1167 | else { | |
1168 | unsigned int len_a = be16_to_cpu(dent_a->de_name_len); | |
1169 | unsigned int len_b = be16_to_cpu(dent_b->de_name_len); | |
1170 | ||
1171 | if (len_a > len_b) | |
1172 | ret = 1; | |
1173 | else if (len_a < len_b) | |
1174 | ret = -1; | |
1175 | else | |
1176 | ret = memcmp(dent_a + 1, dent_b + 1, len_a); | |
1177 | } | |
1178 | ||
1179 | return ret; | |
1180 | } | |
1181 | ||
1182 | /** | |
1183 | * do_filldir_main - read out directory entries | |
1184 | * @dip: The GFS2 inode | |
1185 | * @offset: The offset in the file to read from | |
1186 | * @opaque: opaque data to pass to filldir | |
1187 | * @filldir: The function to pass entries to | |
1188 | * @darr: an array of struct gfs2_dirent pointers to read | |
1189 | * @entries: the number of entries in darr | |
1190 | * @copied: pointer to int that's non-zero if a entry has been copied out | |
1191 | * | |
1192 | * Jump through some hoops to make sure that if there are hash collsions, | |
1193 | * they are read out at the beginning of a buffer. We want to minimize | |
1194 | * the possibility that they will fall into different readdir buffers or | |
1195 | * that someone will want to seek to that location. | |
1196 | * | |
1197 | * Returns: errno, >0 on exception from filldir | |
1198 | */ | |
1199 | ||
1200 | static int do_filldir_main(struct gfs2_inode *dip, u64 *offset, | |
1201 | void *opaque, gfs2_filldir_t filldir, | |
1202 | const struct gfs2_dirent **darr, u32 entries, | |
1203 | int *copied) | |
1204 | { | |
1205 | const struct gfs2_dirent *dent, *dent_next; | |
1206 | struct gfs2_inum inum; | |
1207 | u64 off, off_next; | |
1208 | unsigned int x, y; | |
1209 | int run = 0; | |
1210 | int error = 0; | |
1211 | ||
1212 | sort(darr, entries, sizeof(struct gfs2_dirent *), compare_dents, NULL); | |
1213 | ||
1214 | dent_next = darr[0]; | |
1215 | off_next = be32_to_cpu(dent_next->de_hash); | |
1216 | off_next = gfs2_disk_hash2offset(off_next); | |
1217 | ||
1218 | for (x = 0, y = 1; x < entries; x++, y++) { | |
1219 | dent = dent_next; | |
1220 | off = off_next; | |
1221 | ||
1222 | if (y < entries) { | |
1223 | dent_next = darr[y]; | |
1224 | off_next = be32_to_cpu(dent_next->de_hash); | |
1225 | off_next = gfs2_disk_hash2offset(off_next); | |
1226 | ||
1227 | if (off < *offset) | |
1228 | continue; | |
1229 | *offset = off; | |
1230 | ||
1231 | if (off_next == off) { | |
1232 | if (*copied && !run) | |
1233 | return 1; | |
1234 | run = 1; | |
1235 | } else | |
1236 | run = 0; | |
1237 | } else { | |
1238 | if (off < *offset) | |
1239 | continue; | |
1240 | *offset = off; | |
1241 | } | |
1242 | ||
1243 | gfs2_inum_in(&inum, (char *)&dent->de_inum); | |
1244 | ||
1245 | error = filldir(opaque, (const char *)(dent + 1), | |
1246 | be16_to_cpu(dent->de_name_len), | |
1247 | off, &inum, | |
1248 | be16_to_cpu(dent->de_type)); | |
1249 | if (error) | |
1250 | return 1; | |
1251 | ||
1252 | *copied = 1; | |
1253 | } | |
1254 | ||
1255 | /* Increment the *offset by one, so the next time we come into the | |
1256 | do_filldir fxn, we get the next entry instead of the last one in the | |
1257 | current leaf */ | |
1258 | ||
1259 | (*offset)++; | |
1260 | ||
1261 | return 0; | |
1262 | } | |
1263 | ||
1264 | static int gfs2_dir_read_leaf(struct inode *inode, u64 *offset, void *opaque, | |
1265 | gfs2_filldir_t filldir, int *copied, | |
1266 | unsigned *depth, u64 leaf_no) | |
1267 | { | |
1268 | struct gfs2_inode *ip = GFS2_I(inode); | |
1269 | struct buffer_head *bh; | |
1270 | struct gfs2_leaf *lf; | |
1271 | unsigned entries = 0; | |
1272 | unsigned leaves = 0; | |
1273 | const struct gfs2_dirent **darr, *dent; | |
1274 | struct dirent_gather g; | |
1275 | struct buffer_head **larr; | |
1276 | int leaf = 0; | |
1277 | int error, i; | |
1278 | u64 lfn = leaf_no; | |
1279 | ||
1280 | do { | |
1281 | error = get_leaf(ip, lfn, &bh); | |
1282 | if (error) | |
1283 | goto out; | |
1284 | lf = (struct gfs2_leaf *)bh->b_data; | |
1285 | if (leaves == 0) | |
1286 | *depth = be16_to_cpu(lf->lf_depth); | |
1287 | entries += be16_to_cpu(lf->lf_entries); | |
1288 | leaves++; | |
1289 | lfn = be64_to_cpu(lf->lf_next); | |
1290 | brelse(bh); | |
1291 | } while(lfn); | |
1292 | ||
1293 | if (!entries) | |
1294 | return 0; | |
1295 | ||
1296 | error = -ENOMEM; | |
1297 | larr = vmalloc((leaves + entries) * sizeof(void *)); | |
1298 | if (!larr) | |
1299 | goto out; | |
1300 | darr = (const struct gfs2_dirent **)(larr + leaves); | |
1301 | g.pdent = darr; | |
1302 | g.offset = 0; | |
1303 | lfn = leaf_no; | |
1304 | ||
1305 | do { | |
1306 | error = get_leaf(ip, lfn, &bh); | |
1307 | if (error) | |
1308 | goto out_kfree; | |
1309 | lf = (struct gfs2_leaf *)bh->b_data; | |
1310 | lfn = be64_to_cpu(lf->lf_next); | |
1311 | if (lf->lf_entries) { | |
1312 | dent = gfs2_dirent_scan(inode, bh->b_data, bh->b_size, | |
1313 | gfs2_dirent_gather, NULL, &g); | |
1314 | error = PTR_ERR(dent); | |
1315 | if (IS_ERR(dent)) { | |
1316 | goto out_kfree; | |
1317 | } | |
1318 | error = 0; | |
1319 | larr[leaf++] = bh; | |
1320 | } else { | |
1321 | brelse(bh); | |
1322 | } | |
1323 | } while(lfn); | |
1324 | ||
1325 | error = do_filldir_main(ip, offset, opaque, filldir, darr, | |
1326 | entries, copied); | |
1327 | out_kfree: | |
1328 | for(i = 0; i < leaf; i++) | |
1329 | brelse(larr[i]); | |
1330 | vfree(larr); | |
1331 | out: | |
1332 | return error; | |
1333 | } | |
1334 | ||
1335 | /** | |
1336 | * dir_e_read - Reads the entries from a directory into a filldir buffer | |
1337 | * @dip: dinode pointer | |
1338 | * @offset: the hash of the last entry read shifted to the right once | |
1339 | * @opaque: buffer for the filldir function to fill | |
1340 | * @filldir: points to the filldir function to use | |
1341 | * | |
1342 | * Returns: errno | |
1343 | */ | |
1344 | ||
1345 | static int dir_e_read(struct inode *inode, u64 *offset, void *opaque, | |
1346 | gfs2_filldir_t filldir) | |
1347 | { | |
1348 | struct gfs2_inode *dip = GFS2_I(inode); | |
1349 | struct gfs2_sbd *sdp = GFS2_SB(inode); | |
1350 | u32 hsize, len = 0; | |
1351 | u32 ht_offset, lp_offset, ht_offset_cur = -1; | |
1352 | u32 hash, index; | |
1353 | u64 *lp; | |
1354 | int copied = 0; | |
1355 | int error = 0; | |
1356 | unsigned depth = 0; | |
1357 | ||
1358 | hsize = 1 << dip->i_di.di_depth; | |
1359 | if (hsize * sizeof(u64) != dip->i_di.di_size) { | |
1360 | gfs2_consist_inode(dip); | |
1361 | return -EIO; | |
1362 | } | |
1363 | ||
1364 | hash = gfs2_dir_offset2hash(*offset); | |
1365 | index = hash >> (32 - dip->i_di.di_depth); | |
1366 | ||
1367 | lp = kmalloc(sdp->sd_hash_bsize, GFP_KERNEL); | |
1368 | if (!lp) | |
1369 | return -ENOMEM; | |
1370 | ||
1371 | while (index < hsize) { | |
1372 | lp_offset = index & (sdp->sd_hash_ptrs - 1); | |
1373 | ht_offset = index - lp_offset; | |
1374 | ||
1375 | if (ht_offset_cur != ht_offset) { | |
1376 | error = gfs2_dir_read_data(dip, (char *)lp, | |
1377 | ht_offset * sizeof(u64), | |
1378 | sdp->sd_hash_bsize); | |
1379 | if (error != sdp->sd_hash_bsize) { | |
1380 | if (error >= 0) | |
1381 | error = -EIO; | |
1382 | goto out; | |
1383 | } | |
1384 | ht_offset_cur = ht_offset; | |
1385 | } | |
1386 | ||
1387 | error = gfs2_dir_read_leaf(inode, offset, opaque, filldir, | |
1388 | &copied, &depth, | |
1389 | be64_to_cpu(lp[lp_offset])); | |
1390 | if (error) | |
1391 | break; | |
1392 | ||
1393 | len = 1 << (dip->i_di.di_depth - depth); | |
1394 | index = (index & ~(len - 1)) + len; | |
1395 | } | |
1396 | ||
1397 | out: | |
1398 | kfree(lp); | |
1399 | if (error > 0) | |
1400 | error = 0; | |
1401 | return error; | |
1402 | } | |
1403 | ||
1404 | int gfs2_dir_read(struct inode *inode, u64 *offset, void *opaque, | |
1405 | gfs2_filldir_t filldir) | |
1406 | { | |
1407 | struct gfs2_inode *dip = GFS2_I(inode); | |
1408 | struct dirent_gather g; | |
1409 | const struct gfs2_dirent **darr, *dent; | |
1410 | struct buffer_head *dibh; | |
1411 | int copied = 0; | |
1412 | int error; | |
1413 | ||
1414 | if (!dip->i_di.di_entries) | |
1415 | return 0; | |
1416 | ||
1417 | if (dip->i_di.di_flags & GFS2_DIF_EXHASH) | |
1418 | return dir_e_read(inode, offset, opaque, filldir); | |
1419 | ||
1420 | if (!gfs2_is_stuffed(dip)) { | |
1421 | gfs2_consist_inode(dip); | |
1422 | return -EIO; | |
1423 | } | |
1424 | ||
1425 | error = gfs2_meta_inode_buffer(dip, &dibh); | |
1426 | if (error) | |
1427 | return error; | |
1428 | ||
1429 | error = -ENOMEM; | |
1430 | darr = kmalloc(dip->i_di.di_entries * sizeof(struct gfs2_dirent *), | |
1431 | GFP_KERNEL); | |
1432 | if (darr) { | |
1433 | g.pdent = darr; | |
1434 | g.offset = 0; | |
1435 | dent = gfs2_dirent_scan(inode, dibh->b_data, dibh->b_size, | |
1436 | gfs2_dirent_gather, NULL, &g); | |
1437 | if (IS_ERR(dent)) { | |
1438 | error = PTR_ERR(dent); | |
1439 | goto out; | |
1440 | } | |
1441 | error = do_filldir_main(dip, offset, opaque, filldir, darr, | |
1442 | dip->i_di.di_entries, &copied); | |
1443 | out: | |
1444 | kfree(darr); | |
1445 | } | |
1446 | ||
1447 | if (error > 0) | |
1448 | error = 0; | |
1449 | ||
1450 | brelse(dibh); | |
1451 | ||
1452 | return error; | |
1453 | } | |
1454 | ||
1455 | /** | |
1456 | * gfs2_dir_search - Search a directory | |
1457 | * @dip: The GFS2 inode | |
1458 | * @filename: | |
1459 | * @inode: | |
1460 | * | |
1461 | * This routine searches a directory for a file or another directory. | |
1462 | * Assumes a glock is held on dip. | |
1463 | * | |
1464 | * Returns: errno | |
1465 | */ | |
1466 | ||
1467 | int gfs2_dir_search(struct inode *dir, const struct qstr *name, | |
1468 | struct gfs2_inum *inum, unsigned int *type) | |
1469 | { | |
1470 | struct buffer_head *bh; | |
1471 | struct gfs2_dirent *dent; | |
1472 | ||
1473 | dent = gfs2_dirent_search(dir, name, gfs2_dirent_find, &bh); | |
1474 | if (dent) { | |
1475 | if (IS_ERR(dent)) | |
1476 | return PTR_ERR(dent); | |
1477 | if (inum) | |
1478 | gfs2_inum_in(inum, (char *)&dent->de_inum); | |
1479 | if (type) | |
1480 | *type = be16_to_cpu(dent->de_type); | |
1481 | brelse(bh); | |
1482 | return 0; | |
1483 | } | |
1484 | return -ENOENT; | |
1485 | } | |
1486 | ||
1487 | static int dir_new_leaf(struct inode *inode, const struct qstr *name) | |
1488 | { | |
1489 | struct buffer_head *bh, *obh; | |
1490 | struct gfs2_inode *ip = GFS2_I(inode); | |
1491 | struct gfs2_leaf *leaf, *oleaf; | |
1492 | int error; | |
1493 | u32 index; | |
1494 | u64 bn; | |
1495 | ||
1496 | index = name->hash >> (32 - ip->i_di.di_depth); | |
1497 | error = get_first_leaf(ip, index, &obh); | |
1498 | if (error) | |
1499 | return error; | |
1500 | do { | |
1501 | oleaf = (struct gfs2_leaf *)obh->b_data; | |
1502 | bn = be64_to_cpu(oleaf->lf_next); | |
1503 | if (!bn) | |
1504 | break; | |
1505 | brelse(obh); | |
1506 | error = get_leaf(ip, bn, &obh); | |
1507 | if (error) | |
1508 | return error; | |
1509 | } while(1); | |
1510 | ||
1511 | gfs2_trans_add_bh(ip->i_gl, obh, 1); | |
1512 | ||
1513 | leaf = new_leaf(inode, &bh, be16_to_cpu(oleaf->lf_depth)); | |
1514 | if (!leaf) { | |
1515 | brelse(obh); | |
1516 | return -ENOSPC; | |
1517 | } | |
1518 | oleaf->lf_next = cpu_to_be64(bh->b_blocknr); | |
1519 | brelse(bh); | |
1520 | brelse(obh); | |
1521 | ||
1522 | error = gfs2_meta_inode_buffer(ip, &bh); | |
1523 | if (error) | |
1524 | return error; | |
1525 | gfs2_trans_add_bh(ip->i_gl, bh, 1); | |
1526 | ip->i_di.di_blocks++; | |
1527 | gfs2_dinode_out(&ip->i_di, bh->b_data); | |
1528 | brelse(bh); | |
1529 | return 0; | |
1530 | } | |
1531 | ||
1532 | /** | |
1533 | * gfs2_dir_add - Add new filename into directory | |
1534 | * @dip: The GFS2 inode | |
1535 | * @filename: The new name | |
1536 | * @inode: The inode number of the entry | |
1537 | * @type: The type of the entry | |
1538 | * | |
1539 | * Returns: 0 on success, error code on failure | |
1540 | */ | |
1541 | ||
1542 | int gfs2_dir_add(struct inode *inode, const struct qstr *name, | |
1543 | const struct gfs2_inum *inum, unsigned type) | |
1544 | { | |
1545 | struct gfs2_inode *ip = GFS2_I(inode); | |
1546 | struct buffer_head *bh; | |
1547 | struct gfs2_dirent *dent; | |
1548 | struct gfs2_leaf *leaf; | |
1549 | int error; | |
1550 | ||
1551 | while(1) { | |
1552 | dent = gfs2_dirent_search(inode, name, gfs2_dirent_find_space, | |
1553 | &bh); | |
1554 | if (dent) { | |
1555 | if (IS_ERR(dent)) | |
1556 | return PTR_ERR(dent); | |
1557 | dent = gfs2_init_dirent(inode, dent, name, bh); | |
1558 | gfs2_inum_out(inum, (char *)&dent->de_inum); | |
1559 | dent->de_type = cpu_to_be16(type); | |
1560 | if (ip->i_di.di_flags & GFS2_DIF_EXHASH) { | |
1561 | leaf = (struct gfs2_leaf *)bh->b_data; | |
1562 | leaf->lf_entries = cpu_to_be16(be16_to_cpu(leaf->lf_entries) + 1); | |
1563 | } | |
1564 | brelse(bh); | |
1565 | error = gfs2_meta_inode_buffer(ip, &bh); | |
1566 | if (error) | |
1567 | break; | |
1568 | gfs2_trans_add_bh(ip->i_gl, bh, 1); | |
1569 | ip->i_di.di_entries++; | |
1570 | ip->i_di.di_mtime = ip->i_di.di_ctime = get_seconds(); | |
1571 | gfs2_dinode_out(&ip->i_di, bh->b_data); | |
1572 | brelse(bh); | |
1573 | error = 0; | |
1574 | break; | |
1575 | } | |
1576 | if (!(ip->i_di.di_flags & GFS2_DIF_EXHASH)) { | |
1577 | error = dir_make_exhash(inode); | |
1578 | if (error) | |
1579 | break; | |
1580 | continue; | |
1581 | } | |
1582 | error = dir_split_leaf(inode, name); | |
1583 | if (error == 0) | |
1584 | continue; | |
1585 | if (error < 0) | |
1586 | break; | |
1587 | if (ip->i_di.di_depth < GFS2_DIR_MAX_DEPTH) { | |
1588 | error = dir_double_exhash(ip); | |
1589 | if (error) | |
1590 | break; | |
1591 | error = dir_split_leaf(inode, name); | |
1592 | if (error < 0) | |
1593 | break; | |
1594 | if (error == 0) | |
1595 | continue; | |
1596 | } | |
1597 | error = dir_new_leaf(inode, name); | |
1598 | if (!error) | |
1599 | continue; | |
1600 | error = -ENOSPC; | |
1601 | break; | |
1602 | } | |
1603 | return error; | |
1604 | } | |
1605 | ||
1606 | ||
1607 | /** | |
1608 | * gfs2_dir_del - Delete a directory entry | |
1609 | * @dip: The GFS2 inode | |
1610 | * @filename: The filename | |
1611 | * | |
1612 | * Returns: 0 on success, error code on failure | |
1613 | */ | |
1614 | ||
1615 | int gfs2_dir_del(struct gfs2_inode *dip, const struct qstr *name) | |
1616 | { | |
1617 | struct gfs2_dirent *dent, *prev = NULL; | |
1618 | struct buffer_head *bh; | |
1619 | int error; | |
1620 | ||
1621 | /* Returns _either_ the entry (if its first in block) or the | |
1622 | previous entry otherwise */ | |
1623 | dent = gfs2_dirent_search(&dip->i_inode, name, gfs2_dirent_prev, &bh); | |
1624 | if (!dent) { | |
1625 | gfs2_consist_inode(dip); | |
1626 | return -EIO; | |
1627 | } | |
1628 | if (IS_ERR(dent)) { | |
1629 | gfs2_consist_inode(dip); | |
1630 | return PTR_ERR(dent); | |
1631 | } | |
1632 | /* If not first in block, adjust pointers accordingly */ | |
1633 | if (gfs2_dirent_find(dent, name, NULL) == 0) { | |
1634 | prev = dent; | |
1635 | dent = (struct gfs2_dirent *)((char *)dent + be16_to_cpu(prev->de_rec_len)); | |
1636 | } | |
1637 | ||
1638 | dirent_del(dip, bh, prev, dent); | |
1639 | if (dip->i_di.di_flags & GFS2_DIF_EXHASH) { | |
1640 | struct gfs2_leaf *leaf = (struct gfs2_leaf *)bh->b_data; | |
1641 | u16 entries = be16_to_cpu(leaf->lf_entries); | |
1642 | if (!entries) | |
1643 | gfs2_consist_inode(dip); | |
1644 | leaf->lf_entries = cpu_to_be16(--entries); | |
1645 | } | |
1646 | brelse(bh); | |
1647 | ||
1648 | error = gfs2_meta_inode_buffer(dip, &bh); | |
1649 | if (error) | |
1650 | return error; | |
1651 | ||
1652 | if (!dip->i_di.di_entries) | |
1653 | gfs2_consist_inode(dip); | |
1654 | gfs2_trans_add_bh(dip->i_gl, bh, 1); | |
1655 | dip->i_di.di_entries--; | |
1656 | dip->i_di.di_mtime = dip->i_di.di_ctime = get_seconds(); | |
1657 | gfs2_dinode_out(&dip->i_di, bh->b_data); | |
1658 | brelse(bh); | |
1659 | mark_inode_dirty(&dip->i_inode); | |
1660 | ||
1661 | return error; | |
1662 | } | |
1663 | ||
1664 | /** | |
1665 | * gfs2_dir_mvino - Change inode number of directory entry | |
1666 | * @dip: The GFS2 inode | |
1667 | * @filename: | |
1668 | * @new_inode: | |
1669 | * | |
1670 | * This routine changes the inode number of a directory entry. It's used | |
1671 | * by rename to change ".." when a directory is moved. | |
1672 | * Assumes a glock is held on dvp. | |
1673 | * | |
1674 | * Returns: errno | |
1675 | */ | |
1676 | ||
1677 | int gfs2_dir_mvino(struct gfs2_inode *dip, const struct qstr *filename, | |
1678 | struct gfs2_inum *inum, unsigned int new_type) | |
1679 | { | |
1680 | struct buffer_head *bh; | |
1681 | struct gfs2_dirent *dent; | |
1682 | int error; | |
1683 | ||
1684 | dent = gfs2_dirent_search(&dip->i_inode, filename, gfs2_dirent_find, &bh); | |
1685 | if (!dent) { | |
1686 | gfs2_consist_inode(dip); | |
1687 | return -EIO; | |
1688 | } | |
1689 | if (IS_ERR(dent)) | |
1690 | return PTR_ERR(dent); | |
1691 | ||
1692 | gfs2_trans_add_bh(dip->i_gl, bh, 1); | |
1693 | gfs2_inum_out(inum, (char *)&dent->de_inum); | |
1694 | dent->de_type = cpu_to_be16(new_type); | |
1695 | ||
1696 | if (dip->i_di.di_flags & GFS2_DIF_EXHASH) { | |
1697 | brelse(bh); | |
1698 | error = gfs2_meta_inode_buffer(dip, &bh); | |
1699 | if (error) | |
1700 | return error; | |
1701 | gfs2_trans_add_bh(dip->i_gl, bh, 1); | |
1702 | } | |
1703 | ||
1704 | dip->i_di.di_mtime = dip->i_di.di_ctime = get_seconds(); | |
1705 | gfs2_dinode_out(&dip->i_di, bh->b_data); | |
1706 | brelse(bh); | |
1707 | return 0; | |
1708 | } | |
1709 | ||
1710 | /** | |
1711 | * foreach_leaf - call a function for each leaf in a directory | |
1712 | * @dip: the directory | |
1713 | * @lc: the function to call for each each | |
1714 | * @data: private data to pass to it | |
1715 | * | |
1716 | * Returns: errno | |
1717 | */ | |
1718 | ||
1719 | static int foreach_leaf(struct gfs2_inode *dip, leaf_call_t lc, void *data) | |
1720 | { | |
1721 | struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode); | |
1722 | struct buffer_head *bh; | |
1723 | struct gfs2_leaf *leaf; | |
1724 | u32 hsize, len; | |
1725 | u32 ht_offset, lp_offset, ht_offset_cur = -1; | |
1726 | u32 index = 0; | |
1727 | u64 *lp; | |
1728 | u64 leaf_no; | |
1729 | int error = 0; | |
1730 | ||
1731 | hsize = 1 << dip->i_di.di_depth; | |
1732 | if (hsize * sizeof(u64) != dip->i_di.di_size) { | |
1733 | gfs2_consist_inode(dip); | |
1734 | return -EIO; | |
1735 | } | |
1736 | ||
1737 | lp = kmalloc(sdp->sd_hash_bsize, GFP_KERNEL); | |
1738 | if (!lp) | |
1739 | return -ENOMEM; | |
1740 | ||
1741 | while (index < hsize) { | |
1742 | lp_offset = index & (sdp->sd_hash_ptrs - 1); | |
1743 | ht_offset = index - lp_offset; | |
1744 | ||
1745 | if (ht_offset_cur != ht_offset) { | |
1746 | error = gfs2_dir_read_data(dip, (char *)lp, | |
1747 | ht_offset * sizeof(u64), | |
1748 | sdp->sd_hash_bsize); | |
1749 | if (error != sdp->sd_hash_bsize) { | |
1750 | if (error >= 0) | |
1751 | error = -EIO; | |
1752 | goto out; | |
1753 | } | |
1754 | ht_offset_cur = ht_offset; | |
1755 | } | |
1756 | ||
1757 | leaf_no = be64_to_cpu(lp[lp_offset]); | |
1758 | if (leaf_no) { | |
1759 | error = get_leaf(dip, leaf_no, &bh); | |
1760 | if (error) | |
1761 | goto out; | |
1762 | leaf = (struct gfs2_leaf *)bh->b_data; | |
1763 | len = 1 << (dip->i_di.di_depth - be16_to_cpu(leaf->lf_depth)); | |
1764 | brelse(bh); | |
1765 | ||
1766 | error = lc(dip, index, len, leaf_no, data); | |
1767 | if (error) | |
1768 | goto out; | |
1769 | ||
1770 | index = (index & ~(len - 1)) + len; | |
1771 | } else | |
1772 | index++; | |
1773 | } | |
1774 | ||
1775 | if (index != hsize) { | |
1776 | gfs2_consist_inode(dip); | |
1777 | error = -EIO; | |
1778 | } | |
1779 | ||
1780 | out: | |
1781 | kfree(lp); | |
1782 | ||
1783 | return error; | |
1784 | } | |
1785 | ||
1786 | /** | |
1787 | * leaf_dealloc - Deallocate a directory leaf | |
1788 | * @dip: the directory | |
1789 | * @index: the hash table offset in the directory | |
1790 | * @len: the number of pointers to this leaf | |
1791 | * @leaf_no: the leaf number | |
1792 | * @data: not used | |
1793 | * | |
1794 | * Returns: errno | |
1795 | */ | |
1796 | ||
1797 | static int leaf_dealloc(struct gfs2_inode *dip, u32 index, u32 len, | |
1798 | u64 leaf_no, void *data) | |
1799 | { | |
1800 | struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode); | |
1801 | struct gfs2_leaf *tmp_leaf; | |
1802 | struct gfs2_rgrp_list rlist; | |
1803 | struct buffer_head *bh, *dibh; | |
1804 | u64 blk, nblk; | |
1805 | unsigned int rg_blocks = 0, l_blocks = 0; | |
1806 | char *ht; | |
1807 | unsigned int x, size = len * sizeof(u64); | |
1808 | int error; | |
1809 | ||
1810 | memset(&rlist, 0, sizeof(struct gfs2_rgrp_list)); | |
1811 | ||
1812 | ht = kzalloc(size, GFP_KERNEL); | |
1813 | if (!ht) | |
1814 | return -ENOMEM; | |
1815 | ||
1816 | gfs2_alloc_get(dip); | |
1817 | ||
1818 | error = gfs2_quota_hold(dip, NO_QUOTA_CHANGE, NO_QUOTA_CHANGE); | |
1819 | if (error) | |
1820 | goto out; | |
1821 | ||
1822 | error = gfs2_rindex_hold(sdp, &dip->i_alloc.al_ri_gh); | |
1823 | if (error) | |
1824 | goto out_qs; | |
1825 | ||
1826 | /* Count the number of leaves */ | |
1827 | ||
1828 | for (blk = leaf_no; blk; blk = nblk) { | |
1829 | error = get_leaf(dip, blk, &bh); | |
1830 | if (error) | |
1831 | goto out_rlist; | |
1832 | tmp_leaf = (struct gfs2_leaf *)bh->b_data; | |
1833 | nblk = be64_to_cpu(tmp_leaf->lf_next); | |
1834 | brelse(bh); | |
1835 | ||
1836 | gfs2_rlist_add(sdp, &rlist, blk); | |
1837 | l_blocks++; | |
1838 | } | |
1839 | ||
1840 | gfs2_rlist_alloc(&rlist, LM_ST_EXCLUSIVE, 0); | |
1841 | ||
1842 | for (x = 0; x < rlist.rl_rgrps; x++) { | |
1843 | struct gfs2_rgrpd *rgd; | |
1844 | rgd = rlist.rl_ghs[x].gh_gl->gl_object; | |
1845 | rg_blocks += rgd->rd_ri.ri_length; | |
1846 | } | |
1847 | ||
1848 | error = gfs2_glock_nq_m(rlist.rl_rgrps, rlist.rl_ghs); | |
1849 | if (error) | |
1850 | goto out_rlist; | |
1851 | ||
1852 | error = gfs2_trans_begin(sdp, | |
1853 | rg_blocks + (DIV_ROUND_UP(size, sdp->sd_jbsize) + 1) + | |
1854 | RES_DINODE + RES_STATFS + RES_QUOTA, l_blocks); | |
1855 | if (error) | |
1856 | goto out_rg_gunlock; | |
1857 | ||
1858 | for (blk = leaf_no; blk; blk = nblk) { | |
1859 | error = get_leaf(dip, blk, &bh); | |
1860 | if (error) | |
1861 | goto out_end_trans; | |
1862 | tmp_leaf = (struct gfs2_leaf *)bh->b_data; | |
1863 | nblk = be64_to_cpu(tmp_leaf->lf_next); | |
1864 | brelse(bh); | |
1865 | ||
1866 | gfs2_free_meta(dip, blk, 1); | |
1867 | ||
1868 | if (!dip->i_di.di_blocks) | |
1869 | gfs2_consist_inode(dip); | |
1870 | dip->i_di.di_blocks--; | |
1871 | } | |
1872 | ||
1873 | error = gfs2_dir_write_data(dip, ht, index * sizeof(u64), size); | |
1874 | if (error != size) { | |
1875 | if (error >= 0) | |
1876 | error = -EIO; | |
1877 | goto out_end_trans; | |
1878 | } | |
1879 | ||
1880 | error = gfs2_meta_inode_buffer(dip, &dibh); | |
1881 | if (error) | |
1882 | goto out_end_trans; | |
1883 | ||
1884 | gfs2_trans_add_bh(dip->i_gl, dibh, 1); | |
1885 | gfs2_dinode_out(&dip->i_di, dibh->b_data); | |
1886 | brelse(dibh); | |
1887 | ||
1888 | out_end_trans: | |
1889 | gfs2_trans_end(sdp); | |
1890 | out_rg_gunlock: | |
1891 | gfs2_glock_dq_m(rlist.rl_rgrps, rlist.rl_ghs); | |
1892 | out_rlist: | |
1893 | gfs2_rlist_free(&rlist); | |
1894 | gfs2_glock_dq_uninit(&dip->i_alloc.al_ri_gh); | |
1895 | out_qs: | |
1896 | gfs2_quota_unhold(dip); | |
1897 | out: | |
1898 | gfs2_alloc_put(dip); | |
1899 | kfree(ht); | |
1900 | return error; | |
1901 | } | |
1902 | ||
1903 | /** | |
1904 | * gfs2_dir_exhash_dealloc - free all the leaf blocks in a directory | |
1905 | * @dip: the directory | |
1906 | * | |
1907 | * Dealloc all on-disk directory leaves to FREEMETA state | |
1908 | * Change on-disk inode type to "regular file" | |
1909 | * | |
1910 | * Returns: errno | |
1911 | */ | |
1912 | ||
1913 | int gfs2_dir_exhash_dealloc(struct gfs2_inode *dip) | |
1914 | { | |
1915 | struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode); | |
1916 | struct buffer_head *bh; | |
1917 | int error; | |
1918 | ||
1919 | /* Dealloc on-disk leaves to FREEMETA state */ | |
1920 | error = foreach_leaf(dip, leaf_dealloc, NULL); | |
1921 | if (error) | |
1922 | return error; | |
1923 | ||
1924 | /* Make this a regular file in case we crash. | |
1925 | (We don't want to free these blocks a second time.) */ | |
1926 | ||
1927 | error = gfs2_trans_begin(sdp, RES_DINODE, 0); | |
1928 | if (error) | |
1929 | return error; | |
1930 | ||
1931 | error = gfs2_meta_inode_buffer(dip, &bh); | |
1932 | if (!error) { | |
1933 | gfs2_trans_add_bh(dip->i_gl, bh, 1); | |
1934 | ((struct gfs2_dinode *)bh->b_data)->di_mode = | |
1935 | cpu_to_be32(S_IFREG); | |
1936 | brelse(bh); | |
1937 | } | |
1938 | ||
1939 | gfs2_trans_end(sdp); | |
1940 | ||
1941 | return error; | |
1942 | } | |
1943 | ||
1944 | /** | |
1945 | * gfs2_diradd_alloc_required - find if adding entry will require an allocation | |
1946 | * @ip: the file being written to | |
1947 | * @filname: the filename that's going to be added | |
1948 | * | |
1949 | * Returns: 1 if alloc required, 0 if not, -ve on error | |
1950 | */ | |
1951 | ||
1952 | int gfs2_diradd_alloc_required(struct inode *inode, const struct qstr *name) | |
1953 | { | |
1954 | struct gfs2_dirent *dent; | |
1955 | struct buffer_head *bh; | |
1956 | ||
1957 | dent = gfs2_dirent_search(inode, name, gfs2_dirent_find_space, &bh); | |
1958 | if (!dent) { | |
1959 | return 1; | |
1960 | } | |
1961 | if (IS_ERR(dent)) | |
1962 | return PTR_ERR(dent); | |
1963 | brelse(bh); | |
1964 | return 0; | |
1965 | } | |
1966 |