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