]>
Commit | Line | Data |
---|---|---|
1da177e4 LT |
1 | /* |
2 | * linux/fs/ext3/namei.c | |
3 | * | |
4 | * Copyright (C) 1992, 1993, 1994, 1995 | |
5 | * Remy Card ([email protected]) | |
6 | * Laboratoire MASI - Institut Blaise Pascal | |
7 | * Universite Pierre et Marie Curie (Paris VI) | |
8 | * | |
9 | * from | |
10 | * | |
11 | * linux/fs/minix/namei.c | |
12 | * | |
13 | * Copyright (C) 1991, 1992 Linus Torvalds | |
14 | * | |
15 | * Big-endian to little-endian byte-swapping/bitmaps by | |
16 | * David S. Miller ([email protected]), 1995 | |
17 | * Directory entry file type support and forward compatibility hooks | |
e9ad5620 | 18 | * for B-tree directories by Theodore Ts'o ([email protected]), 1998 |
1da177e4 | 19 | * Hash Tree Directory indexing (c) |
e9ad5620 | 20 | * Daniel Phillips, 2001 |
1da177e4 | 21 | * Hash Tree Directory indexing porting |
e9ad5620 | 22 | * Christopher Li, 2002 |
1da177e4 | 23 | * Hash Tree Directory indexing cleanup |
e9ad5620 | 24 | * Theodore Ts'o, 2002 |
1da177e4 LT |
25 | */ |
26 | ||
27 | #include <linux/fs.h> | |
28 | #include <linux/pagemap.h> | |
29 | #include <linux/jbd.h> | |
30 | #include <linux/time.h> | |
31 | #include <linux/ext3_fs.h> | |
32 | #include <linux/ext3_jbd.h> | |
33 | #include <linux/fcntl.h> | |
34 | #include <linux/stat.h> | |
35 | #include <linux/string.h> | |
36 | #include <linux/quotaops.h> | |
37 | #include <linux/buffer_head.h> | |
caa38fb0 | 38 | #include <linux/bio.h> |
381be254 BD |
39 | |
40 | #include "namei.h" | |
1da177e4 LT |
41 | #include "xattr.h" |
42 | #include "acl.h" | |
43 | ||
44 | /* | |
45 | * define how far ahead to read directories while searching them. | |
46 | */ | |
47 | #define NAMEI_RA_CHUNKS 2 | |
48 | #define NAMEI_RA_BLOCKS 4 | |
49 | #define NAMEI_RA_SIZE (NAMEI_RA_CHUNKS * NAMEI_RA_BLOCKS) | |
50 | #define NAMEI_RA_INDEX(c,b) (((c) * NAMEI_RA_BLOCKS) + (b)) | |
51 | ||
52 | static struct buffer_head *ext3_append(handle_t *handle, | |
53 | struct inode *inode, | |
54 | u32 *block, int *err) | |
55 | { | |
56 | struct buffer_head *bh; | |
57 | ||
58 | *block = inode->i_size >> inode->i_sb->s_blocksize_bits; | |
59 | ||
33575f8f AM |
60 | bh = ext3_bread(handle, inode, *block, 1, err); |
61 | if (bh) { | |
1da177e4 LT |
62 | inode->i_size += inode->i_sb->s_blocksize; |
63 | EXT3_I(inode)->i_disksize = inode->i_size; | |
33575f8f AM |
64 | *err = ext3_journal_get_write_access(handle, bh); |
65 | if (*err) { | |
66 | brelse(bh); | |
67 | bh = NULL; | |
68 | } | |
1da177e4 LT |
69 | } |
70 | return bh; | |
71 | } | |
72 | ||
73 | #ifndef assert | |
74 | #define assert(test) J_ASSERT(test) | |
75 | #endif | |
76 | ||
1da177e4 LT |
77 | #ifdef DX_DEBUG |
78 | #define dxtrace(command) command | |
79 | #else | |
ae6ddcc5 | 80 | #define dxtrace(command) |
1da177e4 LT |
81 | #endif |
82 | ||
83 | struct fake_dirent | |
84 | { | |
85 | __le32 inode; | |
86 | __le16 rec_len; | |
87 | u8 name_len; | |
88 | u8 file_type; | |
89 | }; | |
90 | ||
91 | struct dx_countlimit | |
92 | { | |
93 | __le16 limit; | |
94 | __le16 count; | |
95 | }; | |
96 | ||
97 | struct dx_entry | |
98 | { | |
99 | __le32 hash; | |
100 | __le32 block; | |
101 | }; | |
102 | ||
103 | /* | |
104 | * dx_root_info is laid out so that if it should somehow get overlaid by a | |
105 | * dirent the two low bits of the hash version will be zero. Therefore, the | |
106 | * hash version mod 4 should never be 0. Sincerely, the paranoia department. | |
107 | */ | |
108 | ||
109 | struct dx_root | |
110 | { | |
111 | struct fake_dirent dot; | |
112 | char dot_name[4]; | |
113 | struct fake_dirent dotdot; | |
114 | char dotdot_name[4]; | |
115 | struct dx_root_info | |
116 | { | |
117 | __le32 reserved_zero; | |
118 | u8 hash_version; | |
119 | u8 info_length; /* 8 */ | |
120 | u8 indirect_levels; | |
121 | u8 unused_flags; | |
122 | } | |
123 | info; | |
124 | struct dx_entry entries[0]; | |
125 | }; | |
126 | ||
127 | struct dx_node | |
128 | { | |
129 | struct fake_dirent fake; | |
130 | struct dx_entry entries[0]; | |
131 | }; | |
132 | ||
133 | ||
134 | struct dx_frame | |
135 | { | |
136 | struct buffer_head *bh; | |
137 | struct dx_entry *entries; | |
138 | struct dx_entry *at; | |
139 | }; | |
140 | ||
141 | struct dx_map_entry | |
142 | { | |
143 | u32 hash; | |
ef2b02d3 ES |
144 | u16 offs; |
145 | u16 size; | |
1da177e4 LT |
146 | }; |
147 | ||
1da177e4 LT |
148 | static inline unsigned dx_get_block (struct dx_entry *entry); |
149 | static void dx_set_block (struct dx_entry *entry, unsigned value); | |
150 | static inline unsigned dx_get_hash (struct dx_entry *entry); | |
151 | static void dx_set_hash (struct dx_entry *entry, unsigned value); | |
152 | static unsigned dx_get_count (struct dx_entry *entries); | |
153 | static unsigned dx_get_limit (struct dx_entry *entries); | |
154 | static void dx_set_count (struct dx_entry *entries, unsigned value); | |
155 | static void dx_set_limit (struct dx_entry *entries, unsigned value); | |
156 | static unsigned dx_root_limit (struct inode *dir, unsigned infosize); | |
157 | static unsigned dx_node_limit (struct inode *dir); | |
734711ab | 158 | static struct dx_frame *dx_probe(struct qstr *entry, |
1da177e4 LT |
159 | struct inode *dir, |
160 | struct dx_hash_info *hinfo, | |
161 | struct dx_frame *frame, | |
162 | int *err); | |
163 | static void dx_release (struct dx_frame *frames); | |
45f90217 | 164 | static int dx_make_map(struct ext3_dir_entry_2 *de, unsigned blocksize, |
1da177e4 LT |
165 | struct dx_hash_info *hinfo, struct dx_map_entry map[]); |
166 | static void dx_sort_map(struct dx_map_entry *map, unsigned count); | |
167 | static struct ext3_dir_entry_2 *dx_move_dirents (char *from, char *to, | |
168 | struct dx_map_entry *offsets, int count); | |
45f90217 | 169 | static struct ext3_dir_entry_2 *dx_pack_dirents(char *base, unsigned blocksize); |
1da177e4 LT |
170 | static void dx_insert_block (struct dx_frame *frame, u32 hash, u32 block); |
171 | static int ext3_htree_next_block(struct inode *dir, __u32 hash, | |
172 | struct dx_frame *frame, | |
ae6ddcc5 | 173 | struct dx_frame *frames, |
1da177e4 | 174 | __u32 *start_hash); |
734711ab AV |
175 | static struct buffer_head * ext3_dx_find_entry(struct inode *dir, |
176 | struct qstr *entry, struct ext3_dir_entry_2 **res_dir, | |
177 | int *err); | |
1da177e4 LT |
178 | static int ext3_dx_add_entry(handle_t *handle, struct dentry *dentry, |
179 | struct inode *inode); | |
180 | ||
7c06a8dc JK |
181 | /* |
182 | * p is at least 6 bytes before the end of page | |
183 | */ | |
184 | static inline struct ext3_dir_entry_2 * | |
185 | ext3_next_entry(struct ext3_dir_entry_2 *p) | |
186 | { | |
187 | return (struct ext3_dir_entry_2 *)((char *)p + | |
188 | ext3_rec_len_from_disk(p->rec_len)); | |
189 | } | |
190 | ||
1da177e4 LT |
191 | /* |
192 | * Future: use high four bits of block for coalesce-on-delete flags | |
193 | * Mask them off for now. | |
194 | */ | |
195 | ||
196 | static inline unsigned dx_get_block (struct dx_entry *entry) | |
197 | { | |
198 | return le32_to_cpu(entry->block) & 0x00ffffff; | |
199 | } | |
200 | ||
201 | static inline void dx_set_block (struct dx_entry *entry, unsigned value) | |
202 | { | |
203 | entry->block = cpu_to_le32(value); | |
204 | } | |
205 | ||
206 | static inline unsigned dx_get_hash (struct dx_entry *entry) | |
207 | { | |
208 | return le32_to_cpu(entry->hash); | |
209 | } | |
210 | ||
211 | static inline void dx_set_hash (struct dx_entry *entry, unsigned value) | |
212 | { | |
213 | entry->hash = cpu_to_le32(value); | |
214 | } | |
215 | ||
216 | static inline unsigned dx_get_count (struct dx_entry *entries) | |
217 | { | |
218 | return le16_to_cpu(((struct dx_countlimit *) entries)->count); | |
219 | } | |
220 | ||
221 | static inline unsigned dx_get_limit (struct dx_entry *entries) | |
222 | { | |
223 | return le16_to_cpu(((struct dx_countlimit *) entries)->limit); | |
224 | } | |
225 | ||
226 | static inline void dx_set_count (struct dx_entry *entries, unsigned value) | |
227 | { | |
228 | ((struct dx_countlimit *) entries)->count = cpu_to_le16(value); | |
229 | } | |
230 | ||
231 | static inline void dx_set_limit (struct dx_entry *entries, unsigned value) | |
232 | { | |
233 | ((struct dx_countlimit *) entries)->limit = cpu_to_le16(value); | |
234 | } | |
235 | ||
236 | static inline unsigned dx_root_limit (struct inode *dir, unsigned infosize) | |
237 | { | |
238 | unsigned entry_space = dir->i_sb->s_blocksize - EXT3_DIR_REC_LEN(1) - | |
239 | EXT3_DIR_REC_LEN(2) - infosize; | |
8ef27203 | 240 | return entry_space / sizeof(struct dx_entry); |
1da177e4 LT |
241 | } |
242 | ||
243 | static inline unsigned dx_node_limit (struct inode *dir) | |
244 | { | |
245 | unsigned entry_space = dir->i_sb->s_blocksize - EXT3_DIR_REC_LEN(0); | |
8ef27203 | 246 | return entry_space / sizeof(struct dx_entry); |
1da177e4 LT |
247 | } |
248 | ||
249 | /* | |
250 | * Debug | |
251 | */ | |
252 | #ifdef DX_DEBUG | |
253 | static void dx_show_index (char * label, struct dx_entry *entries) | |
254 | { | |
255 | int i, n = dx_get_count (entries); | |
256 | printk("%s index ", label); | |
257 | for (i = 0; i < n; i++) | |
258 | { | |
259 | printk("%x->%u ", i? dx_get_hash(entries + i): 0, dx_get_block(entries + i)); | |
260 | } | |
261 | printk("\n"); | |
262 | } | |
263 | ||
264 | struct stats | |
ae6ddcc5 | 265 | { |
1da177e4 LT |
266 | unsigned names; |
267 | unsigned space; | |
268 | unsigned bcount; | |
269 | }; | |
270 | ||
271 | static struct stats dx_show_leaf(struct dx_hash_info *hinfo, struct ext3_dir_entry_2 *de, | |
272 | int size, int show_names) | |
273 | { | |
274 | unsigned names = 0, space = 0; | |
275 | char *base = (char *) de; | |
276 | struct dx_hash_info h = *hinfo; | |
277 | ||
278 | printk("names: "); | |
279 | while ((char *) de < base + size) | |
280 | { | |
281 | if (de->inode) | |
282 | { | |
283 | if (show_names) | |
284 | { | |
285 | int len = de->name_len; | |
286 | char *name = de->name; | |
287 | while (len--) printk("%c", *name++); | |
288 | ext3fs_dirhash(de->name, de->name_len, &h); | |
289 | printk(":%x.%u ", h.hash, | |
290 | ((char *) de - base)); | |
291 | } | |
292 | space += EXT3_DIR_REC_LEN(de->name_len); | |
e9ad5620 | 293 | names++; |
1da177e4 | 294 | } |
7c06a8dc | 295 | de = ext3_next_entry(de); |
1da177e4 LT |
296 | } |
297 | printk("(%i)\n", names); | |
298 | return (struct stats) { names, space, 1 }; | |
299 | } | |
300 | ||
301 | struct stats dx_show_entries(struct dx_hash_info *hinfo, struct inode *dir, | |
302 | struct dx_entry *entries, int levels) | |
303 | { | |
304 | unsigned blocksize = dir->i_sb->s_blocksize; | |
305 | unsigned count = dx_get_count (entries), names = 0, space = 0, i; | |
306 | unsigned bcount = 0; | |
307 | struct buffer_head *bh; | |
308 | int err; | |
309 | printk("%i indexed blocks...\n", count); | |
310 | for (i = 0; i < count; i++, entries++) | |
311 | { | |
312 | u32 block = dx_get_block(entries), hash = i? dx_get_hash(entries): 0; | |
313 | u32 range = i < count - 1? (dx_get_hash(entries + 1) - hash): ~hash; | |
314 | struct stats stats; | |
315 | printk("%s%3u:%03u hash %8x/%8x ",levels?"":" ", i, block, hash, range); | |
316 | if (!(bh = ext3_bread (NULL,dir, block, 0,&err))) continue; | |
317 | stats = levels? | |
318 | dx_show_entries(hinfo, dir, ((struct dx_node *) bh->b_data)->entries, levels - 1): | |
319 | dx_show_leaf(hinfo, (struct ext3_dir_entry_2 *) bh->b_data, blocksize, 0); | |
320 | names += stats.names; | |
321 | space += stats.space; | |
322 | bcount += stats.bcount; | |
323 | brelse (bh); | |
324 | } | |
325 | if (bcount) | |
326 | printk("%snames %u, fullness %u (%u%%)\n", levels?"":" ", | |
327 | names, space/bcount,(space/bcount)*100/blocksize); | |
328 | return (struct stats) { names, space, bcount}; | |
329 | } | |
330 | #endif /* DX_DEBUG */ | |
331 | ||
332 | /* | |
333 | * Probe for a directory leaf block to search. | |
334 | * | |
335 | * dx_probe can return ERR_BAD_DX_DIR, which means there was a format | |
336 | * error in the directory index, and the caller should fall back to | |
337 | * searching the directory normally. The callers of dx_probe **MUST** | |
338 | * check for this error code, and make sure it never gets reflected | |
339 | * back to userspace. | |
340 | */ | |
341 | static struct dx_frame * | |
734711ab | 342 | dx_probe(struct qstr *entry, struct inode *dir, |
1da177e4 LT |
343 | struct dx_hash_info *hinfo, struct dx_frame *frame_in, int *err) |
344 | { | |
345 | unsigned count, indirect; | |
346 | struct dx_entry *at, *entries, *p, *q, *m; | |
347 | struct dx_root *root; | |
348 | struct buffer_head *bh; | |
349 | struct dx_frame *frame = frame_in; | |
350 | u32 hash; | |
351 | ||
352 | frame->bh = NULL; | |
1da177e4 LT |
353 | if (!(bh = ext3_bread (NULL,dir, 0, 0, err))) |
354 | goto fail; | |
355 | root = (struct dx_root *) bh->b_data; | |
356 | if (root->info.hash_version != DX_HASH_TEA && | |
357 | root->info.hash_version != DX_HASH_HALF_MD4 && | |
358 | root->info.hash_version != DX_HASH_LEGACY) { | |
e05b6b52 | 359 | ext3_warning(dir->i_sb, __func__, |
1da177e4 LT |
360 | "Unrecognised inode hash code %d", |
361 | root->info.hash_version); | |
362 | brelse(bh); | |
363 | *err = ERR_BAD_DX_DIR; | |
364 | goto fail; | |
365 | } | |
366 | hinfo->hash_version = root->info.hash_version; | |
5e1f8c9e TT |
367 | if (hinfo->hash_version <= DX_HASH_TEA) |
368 | hinfo->hash_version += EXT3_SB(dir->i_sb)->s_hash_unsigned; | |
1da177e4 | 369 | hinfo->seed = EXT3_SB(dir->i_sb)->s_hash_seed; |
734711ab AV |
370 | if (entry) |
371 | ext3fs_dirhash(entry->name, entry->len, hinfo); | |
1da177e4 LT |
372 | hash = hinfo->hash; |
373 | ||
374 | if (root->info.unused_flags & 1) { | |
e05b6b52 | 375 | ext3_warning(dir->i_sb, __func__, |
1da177e4 LT |
376 | "Unimplemented inode hash flags: %#06x", |
377 | root->info.unused_flags); | |
378 | brelse(bh); | |
379 | *err = ERR_BAD_DX_DIR; | |
380 | goto fail; | |
381 | } | |
382 | ||
383 | if ((indirect = root->info.indirect_levels) > 1) { | |
e05b6b52 | 384 | ext3_warning(dir->i_sb, __func__, |
1da177e4 LT |
385 | "Unimplemented inode hash depth: %#06x", |
386 | root->info.indirect_levels); | |
387 | brelse(bh); | |
388 | *err = ERR_BAD_DX_DIR; | |
389 | goto fail; | |
390 | } | |
391 | ||
392 | entries = (struct dx_entry *) (((char *)&root->info) + | |
393 | root->info.info_length); | |
3d82abae ES |
394 | |
395 | if (dx_get_limit(entries) != dx_root_limit(dir, | |
396 | root->info.info_length)) { | |
e05b6b52 | 397 | ext3_warning(dir->i_sb, __func__, |
3d82abae ES |
398 | "dx entry: limit != root limit"); |
399 | brelse(bh); | |
400 | *err = ERR_BAD_DX_DIR; | |
401 | goto fail; | |
402 | } | |
403 | ||
1da177e4 LT |
404 | dxtrace (printk("Look up %x", hash)); |
405 | while (1) | |
406 | { | |
407 | count = dx_get_count(entries); | |
3d82abae | 408 | if (!count || count > dx_get_limit(entries)) { |
e05b6b52 | 409 | ext3_warning(dir->i_sb, __func__, |
3d82abae ES |
410 | "dx entry: no count or count > limit"); |
411 | brelse(bh); | |
412 | *err = ERR_BAD_DX_DIR; | |
413 | goto fail2; | |
414 | } | |
415 | ||
1da177e4 LT |
416 | p = entries + 1; |
417 | q = entries + count - 1; | |
418 | while (p <= q) | |
419 | { | |
420 | m = p + (q - p)/2; | |
421 | dxtrace(printk(".")); | |
422 | if (dx_get_hash(m) > hash) | |
423 | q = m - 1; | |
424 | else | |
425 | p = m + 1; | |
426 | } | |
427 | ||
428 | if (0) // linear search cross check | |
429 | { | |
430 | unsigned n = count - 1; | |
431 | at = entries; | |
432 | while (n--) | |
433 | { | |
434 | dxtrace(printk(",")); | |
435 | if (dx_get_hash(++at) > hash) | |
436 | { | |
437 | at--; | |
438 | break; | |
439 | } | |
440 | } | |
441 | assert (at == p - 1); | |
442 | } | |
443 | ||
444 | at = p - 1; | |
445 | dxtrace(printk(" %x->%u\n", at == entries? 0: dx_get_hash(at), dx_get_block(at))); | |
446 | frame->bh = bh; | |
447 | frame->entries = entries; | |
448 | frame->at = at; | |
449 | if (!indirect--) return frame; | |
450 | if (!(bh = ext3_bread (NULL,dir, dx_get_block(at), 0, err))) | |
451 | goto fail2; | |
452 | at = entries = ((struct dx_node *) bh->b_data)->entries; | |
3d82abae | 453 | if (dx_get_limit(entries) != dx_node_limit (dir)) { |
e05b6b52 | 454 | ext3_warning(dir->i_sb, __func__, |
3d82abae ES |
455 | "dx entry: limit != node limit"); |
456 | brelse(bh); | |
457 | *err = ERR_BAD_DX_DIR; | |
458 | goto fail2; | |
459 | } | |
1da177e4 | 460 | frame++; |
3d82abae | 461 | frame->bh = NULL; |
1da177e4 LT |
462 | } |
463 | fail2: | |
464 | while (frame >= frame_in) { | |
465 | brelse(frame->bh); | |
466 | frame--; | |
467 | } | |
468 | fail: | |
3d82abae | 469 | if (*err == ERR_BAD_DX_DIR) |
e05b6b52 | 470 | ext3_warning(dir->i_sb, __func__, |
3d82abae ES |
471 | "Corrupt dir inode %ld, running e2fsck is " |
472 | "recommended.", dir->i_ino); | |
1da177e4 LT |
473 | return NULL; |
474 | } | |
475 | ||
476 | static void dx_release (struct dx_frame *frames) | |
477 | { | |
478 | if (frames[0].bh == NULL) | |
479 | return; | |
480 | ||
481 | if (((struct dx_root *) frames[0].bh->b_data)->info.indirect_levels) | |
482 | brelse(frames[1].bh); | |
483 | brelse(frames[0].bh); | |
484 | } | |
485 | ||
486 | /* | |
487 | * This function increments the frame pointer to search the next leaf | |
488 | * block, and reads in the necessary intervening nodes if the search | |
489 | * should be necessary. Whether or not the search is necessary is | |
490 | * controlled by the hash parameter. If the hash value is even, then | |
491 | * the search is only continued if the next block starts with that | |
492 | * hash value. This is used if we are searching for a specific file. | |
493 | * | |
494 | * If the hash value is HASH_NB_ALWAYS, then always go to the next block. | |
495 | * | |
496 | * This function returns 1 if the caller should continue to search, | |
497 | * or 0 if it should not. If there is an error reading one of the | |
498 | * index blocks, it will a negative error code. | |
499 | * | |
500 | * If start_hash is non-null, it will be filled in with the starting | |
501 | * hash of the next page. | |
502 | */ | |
503 | static int ext3_htree_next_block(struct inode *dir, __u32 hash, | |
504 | struct dx_frame *frame, | |
ae6ddcc5 | 505 | struct dx_frame *frames, |
1da177e4 LT |
506 | __u32 *start_hash) |
507 | { | |
508 | struct dx_frame *p; | |
509 | struct buffer_head *bh; | |
510 | int err, num_frames = 0; | |
511 | __u32 bhash; | |
512 | ||
513 | p = frame; | |
514 | /* | |
515 | * Find the next leaf page by incrementing the frame pointer. | |
516 | * If we run out of entries in the interior node, loop around and | |
517 | * increment pointer in the parent node. When we break out of | |
518 | * this loop, num_frames indicates the number of interior | |
519 | * nodes need to be read. | |
520 | */ | |
521 | while (1) { | |
522 | if (++(p->at) < p->entries + dx_get_count(p->entries)) | |
523 | break; | |
524 | if (p == frames) | |
525 | return 0; | |
526 | num_frames++; | |
527 | p--; | |
528 | } | |
529 | ||
530 | /* | |
531 | * If the hash is 1, then continue only if the next page has a | |
532 | * continuation hash of any value. This is used for readdir | |
533 | * handling. Otherwise, check to see if the hash matches the | |
534 | * desired contiuation hash. If it doesn't, return since | |
535 | * there's no point to read in the successive index pages. | |
536 | */ | |
537 | bhash = dx_get_hash(p->at); | |
538 | if (start_hash) | |
539 | *start_hash = bhash; | |
540 | if ((hash & 1) == 0) { | |
541 | if ((bhash & ~1) != hash) | |
542 | return 0; | |
543 | } | |
544 | /* | |
545 | * If the hash is HASH_NB_ALWAYS, we always go to the next | |
546 | * block so no check is necessary | |
547 | */ | |
548 | while (num_frames--) { | |
549 | if (!(bh = ext3_bread(NULL, dir, dx_get_block(p->at), | |
550 | 0, &err))) | |
551 | return err; /* Failure */ | |
552 | p++; | |
553 | brelse (p->bh); | |
554 | p->bh = bh; | |
555 | p->at = p->entries = ((struct dx_node *) bh->b_data)->entries; | |
556 | } | |
557 | return 1; | |
558 | } | |
559 | ||
560 | ||
1da177e4 LT |
561 | /* |
562 | * This function fills a red-black tree with information from a | |
563 | * directory block. It returns the number directory entries loaded | |
564 | * into the tree. If there is an error it is returned in err. | |
565 | */ | |
566 | static int htree_dirblock_to_tree(struct file *dir_file, | |
567 | struct inode *dir, int block, | |
568 | struct dx_hash_info *hinfo, | |
569 | __u32 start_hash, __u32 start_minor_hash) | |
570 | { | |
571 | struct buffer_head *bh; | |
572 | struct ext3_dir_entry_2 *de, *top; | |
573 | int err, count = 0; | |
574 | ||
575 | dxtrace(printk("In htree dirblock_to_tree: block %d\n", block)); | |
576 | if (!(bh = ext3_bread (NULL, dir, block, 0, &err))) | |
577 | return err; | |
578 | ||
579 | de = (struct ext3_dir_entry_2 *) bh->b_data; | |
580 | top = (struct ext3_dir_entry_2 *) ((char *) de + | |
581 | dir->i_sb->s_blocksize - | |
582 | EXT3_DIR_REC_LEN(0)); | |
583 | for (; de < top; de = ext3_next_entry(de)) { | |
40b85134 ES |
584 | if (!ext3_check_dir_entry("htree_dirblock_to_tree", dir, de, bh, |
585 | (block<<EXT3_BLOCK_SIZE_BITS(dir->i_sb)) | |
586 | +((char *)de - bh->b_data))) { | |
587 | /* On error, skip the f_pos to the next block. */ | |
588 | dir_file->f_pos = (dir_file->f_pos | | |
589 | (dir->i_sb->s_blocksize - 1)) + 1; | |
590 | brelse (bh); | |
591 | return count; | |
592 | } | |
1da177e4 LT |
593 | ext3fs_dirhash(de->name, de->name_len, hinfo); |
594 | if ((hinfo->hash < start_hash) || | |
595 | ((hinfo->hash == start_hash) && | |
596 | (hinfo->minor_hash < start_minor_hash))) | |
597 | continue; | |
598 | if (de->inode == 0) | |
599 | continue; | |
600 | if ((err = ext3_htree_store_dirent(dir_file, | |
601 | hinfo->hash, hinfo->minor_hash, de)) != 0) { | |
602 | brelse(bh); | |
603 | return err; | |
604 | } | |
605 | count++; | |
606 | } | |
607 | brelse(bh); | |
608 | return count; | |
609 | } | |
610 | ||
611 | ||
612 | /* | |
613 | * This function fills a red-black tree with information from a | |
614 | * directory. We start scanning the directory in hash order, starting | |
615 | * at start_hash and start_minor_hash. | |
616 | * | |
617 | * This function returns the number of entries inserted into the tree, | |
618 | * or a negative error code. | |
619 | */ | |
620 | int ext3_htree_fill_tree(struct file *dir_file, __u32 start_hash, | |
621 | __u32 start_minor_hash, __u32 *next_hash) | |
622 | { | |
623 | struct dx_hash_info hinfo; | |
624 | struct ext3_dir_entry_2 *de; | |
625 | struct dx_frame frames[2], *frame; | |
626 | struct inode *dir; | |
627 | int block, err; | |
628 | int count = 0; | |
629 | int ret; | |
630 | __u32 hashval; | |
631 | ||
632 | dxtrace(printk("In htree_fill_tree, start hash: %x:%x\n", start_hash, | |
633 | start_minor_hash)); | |
fe21a693 | 634 | dir = dir_file->f_path.dentry->d_inode; |
1da177e4 LT |
635 | if (!(EXT3_I(dir)->i_flags & EXT3_INDEX_FL)) { |
636 | hinfo.hash_version = EXT3_SB(dir->i_sb)->s_def_hash_version; | |
5e1f8c9e TT |
637 | if (hinfo.hash_version <= DX_HASH_TEA) |
638 | hinfo.hash_version += | |
639 | EXT3_SB(dir->i_sb)->s_hash_unsigned; | |
1da177e4 LT |
640 | hinfo.seed = EXT3_SB(dir->i_sb)->s_hash_seed; |
641 | count = htree_dirblock_to_tree(dir_file, dir, 0, &hinfo, | |
642 | start_hash, start_minor_hash); | |
643 | *next_hash = ~0; | |
644 | return count; | |
645 | } | |
646 | hinfo.hash = start_hash; | |
647 | hinfo.minor_hash = 0; | |
fe21a693 | 648 | frame = dx_probe(NULL, dir_file->f_path.dentry->d_inode, &hinfo, frames, &err); |
1da177e4 LT |
649 | if (!frame) |
650 | return err; | |
651 | ||
652 | /* Add '.' and '..' from the htree header */ | |
653 | if (!start_hash && !start_minor_hash) { | |
654 | de = (struct ext3_dir_entry_2 *) frames[0].bh->b_data; | |
655 | if ((err = ext3_htree_store_dirent(dir_file, 0, 0, de)) != 0) | |
656 | goto errout; | |
657 | count++; | |
658 | } | |
659 | if (start_hash < 2 || (start_hash ==2 && start_minor_hash==0)) { | |
660 | de = (struct ext3_dir_entry_2 *) frames[0].bh->b_data; | |
661 | de = ext3_next_entry(de); | |
662 | if ((err = ext3_htree_store_dirent(dir_file, 2, 0, de)) != 0) | |
663 | goto errout; | |
664 | count++; | |
665 | } | |
666 | ||
667 | while (1) { | |
668 | block = dx_get_block(frame->at); | |
669 | ret = htree_dirblock_to_tree(dir_file, dir, block, &hinfo, | |
670 | start_hash, start_minor_hash); | |
671 | if (ret < 0) { | |
672 | err = ret; | |
673 | goto errout; | |
674 | } | |
675 | count += ret; | |
676 | hashval = ~0; | |
ae6ddcc5 | 677 | ret = ext3_htree_next_block(dir, HASH_NB_ALWAYS, |
1da177e4 LT |
678 | frame, frames, &hashval); |
679 | *next_hash = hashval; | |
680 | if (ret < 0) { | |
681 | err = ret; | |
682 | goto errout; | |
683 | } | |
684 | /* | |
685 | * Stop if: (a) there are no more entries, or | |
686 | * (b) we have inserted at least one entry and the | |
687 | * next hash value is not a continuation | |
688 | */ | |
689 | if ((ret == 0) || | |
690 | (count && ((hashval & 1) == 0))) | |
691 | break; | |
692 | } | |
693 | dx_release(frames); | |
ae6ddcc5 | 694 | dxtrace(printk("Fill tree: returned %d entries, next hash: %x\n", |
1da177e4 LT |
695 | count, *next_hash)); |
696 | return count; | |
697 | errout: | |
698 | dx_release(frames); | |
699 | return (err); | |
700 | } | |
701 | ||
702 | ||
703 | /* | |
704 | * Directory block splitting, compacting | |
705 | */ | |
706 | ||
ef2b02d3 ES |
707 | /* |
708 | * Create map of hash values, offsets, and sizes, stored at end of block. | |
709 | * Returns number of entries mapped. | |
710 | */ | |
45f90217 WY |
711 | static int dx_make_map(struct ext3_dir_entry_2 *de, unsigned blocksize, |
712 | struct dx_hash_info *hinfo, struct dx_map_entry *map_tail) | |
1da177e4 LT |
713 | { |
714 | int count = 0; | |
715 | char *base = (char *) de; | |
716 | struct dx_hash_info h = *hinfo; | |
717 | ||
45f90217 | 718 | while ((char *) de < base + blocksize) |
1da177e4 LT |
719 | { |
720 | if (de->name_len && de->inode) { | |
721 | ext3fs_dirhash(de->name, de->name_len, &h); | |
722 | map_tail--; | |
723 | map_tail->hash = h.hash; | |
ef2b02d3 ES |
724 | map_tail->offs = (u16) ((char *) de - base); |
725 | map_tail->size = le16_to_cpu(de->rec_len); | |
1da177e4 LT |
726 | count++; |
727 | cond_resched(); | |
728 | } | |
729 | /* XXX: do we need to check rec_len == 0 case? -Chris */ | |
7c06a8dc | 730 | de = ext3_next_entry(de); |
1da177e4 LT |
731 | } |
732 | return count; | |
733 | } | |
734 | ||
ef2b02d3 | 735 | /* Sort map by hash value */ |
1da177e4 LT |
736 | static void dx_sort_map (struct dx_map_entry *map, unsigned count) |
737 | { | |
738 | struct dx_map_entry *p, *q, *top = map + count - 1; | |
739 | int more; | |
740 | /* Combsort until bubble sort doesn't suck */ | |
741 | while (count > 2) | |
742 | { | |
743 | count = count*10/13; | |
744 | if (count - 9 < 2) /* 9, 10 -> 11 */ | |
745 | count = 11; | |
746 | for (p = top, q = p - count; q >= map; p--, q--) | |
747 | if (p->hash < q->hash) | |
748 | swap(*p, *q); | |
749 | } | |
750 | /* Garden variety bubble sort */ | |
751 | do { | |
752 | more = 0; | |
753 | q = top; | |
754 | while (q-- > map) | |
755 | { | |
756 | if (q[1].hash >= q[0].hash) | |
757 | continue; | |
758 | swap(*(q+1), *q); | |
759 | more = 1; | |
760 | } | |
761 | } while(more); | |
762 | } | |
763 | ||
764 | static void dx_insert_block(struct dx_frame *frame, u32 hash, u32 block) | |
765 | { | |
766 | struct dx_entry *entries = frame->entries; | |
767 | struct dx_entry *old = frame->at, *new = old + 1; | |
768 | int count = dx_get_count(entries); | |
769 | ||
770 | assert(count < dx_get_limit(entries)); | |
771 | assert(old < entries + count); | |
772 | memmove(new + 1, new, (char *)(entries + count) - (char *)(new)); | |
773 | dx_set_hash(new, hash); | |
774 | dx_set_block(new, block); | |
775 | dx_set_count(entries, count + 1); | |
776 | } | |
1da177e4 LT |
777 | |
778 | static void ext3_update_dx_flag(struct inode *inode) | |
779 | { | |
780 | if (!EXT3_HAS_COMPAT_FEATURE(inode->i_sb, | |
781 | EXT3_FEATURE_COMPAT_DIR_INDEX)) | |
782 | EXT3_I(inode)->i_flags &= ~EXT3_INDEX_FL; | |
783 | } | |
784 | ||
785 | /* | |
786 | * NOTE! unlike strncmp, ext3_match returns 1 for success, 0 for failure. | |
787 | * | |
788 | * `len <= EXT3_NAME_LEN' is guaranteed by caller. | |
789 | * `de != NULL' is guaranteed by caller. | |
790 | */ | |
791 | static inline int ext3_match (int len, const char * const name, | |
792 | struct ext3_dir_entry_2 * de) | |
793 | { | |
794 | if (len != de->name_len) | |
795 | return 0; | |
796 | if (!de->inode) | |
797 | return 0; | |
798 | return !memcmp(name, de->name, len); | |
799 | } | |
800 | ||
801 | /* | |
802 | * Returns 0 if not found, -1 on failure, and 1 on success | |
803 | */ | |
804 | static inline int search_dirblock(struct buffer_head * bh, | |
805 | struct inode *dir, | |
734711ab | 806 | struct qstr *child, |
1da177e4 LT |
807 | unsigned long offset, |
808 | struct ext3_dir_entry_2 ** res_dir) | |
809 | { | |
810 | struct ext3_dir_entry_2 * de; | |
811 | char * dlimit; | |
812 | int de_len; | |
734711ab AV |
813 | const char *name = child->name; |
814 | int namelen = child->len; | |
1da177e4 LT |
815 | |
816 | de = (struct ext3_dir_entry_2 *) bh->b_data; | |
817 | dlimit = bh->b_data + dir->i_sb->s_blocksize; | |
818 | while ((char *) de < dlimit) { | |
819 | /* this code is executed quadratically often */ | |
820 | /* do minimal checking `by hand' */ | |
821 | ||
822 | if ((char *) de + namelen <= dlimit && | |
823 | ext3_match (namelen, name, de)) { | |
824 | /* found a match - just to be sure, do a full check */ | |
825 | if (!ext3_check_dir_entry("ext3_find_entry", | |
826 | dir, de, bh, offset)) | |
827 | return -1; | |
828 | *res_dir = de; | |
829 | return 1; | |
830 | } | |
831 | /* prevent looping on a bad block */ | |
7c06a8dc | 832 | de_len = ext3_rec_len_from_disk(de->rec_len); |
1da177e4 LT |
833 | if (de_len <= 0) |
834 | return -1; | |
835 | offset += de_len; | |
836 | de = (struct ext3_dir_entry_2 *) ((char *) de + de_len); | |
837 | } | |
838 | return 0; | |
839 | } | |
840 | ||
841 | ||
842 | /* | |
843 | * ext3_find_entry() | |
844 | * | |
845 | * finds an entry in the specified directory with the wanted name. It | |
846 | * returns the cache buffer in which the entry was found, and the entry | |
847 | * itself (as a parameter - res_dir). It does NOT read the inode of the | |
848 | * entry - you'll have to do that yourself if you want to. | |
849 | * | |
850 | * The returned buffer_head has ->b_count elevated. The caller is expected | |
851 | * to brelse() it when appropriate. | |
852 | */ | |
734711ab AV |
853 | static struct buffer_head *ext3_find_entry(struct inode *dir, |
854 | struct qstr *entry, | |
855 | struct ext3_dir_entry_2 **res_dir) | |
1da177e4 LT |
856 | { |
857 | struct super_block * sb; | |
858 | struct buffer_head * bh_use[NAMEI_RA_SIZE]; | |
859 | struct buffer_head * bh, *ret = NULL; | |
860 | unsigned long start, block, b; | |
861 | int ra_max = 0; /* Number of bh's in the readahead | |
862 | buffer, bh_use[] */ | |
863 | int ra_ptr = 0; /* Current index into readahead | |
864 | buffer */ | |
865 | int num = 0; | |
866 | int nblocks, i, err; | |
1da177e4 | 867 | int namelen; |
1da177e4 LT |
868 | |
869 | *res_dir = NULL; | |
870 | sb = dir->i_sb; | |
734711ab | 871 | namelen = entry->len; |
1da177e4 LT |
872 | if (namelen > EXT3_NAME_LEN) |
873 | return NULL; | |
1da177e4 | 874 | if (is_dx(dir)) { |
734711ab | 875 | bh = ext3_dx_find_entry(dir, entry, res_dir, &err); |
1da177e4 LT |
876 | /* |
877 | * On success, or if the error was file not found, | |
878 | * return. Otherwise, fall back to doing a search the | |
879 | * old fashioned way. | |
880 | */ | |
881 | if (bh || (err != ERR_BAD_DX_DIR)) | |
882 | return bh; | |
883 | dxtrace(printk("ext3_find_entry: dx failed, falling back\n")); | |
884 | } | |
1da177e4 LT |
885 | nblocks = dir->i_size >> EXT3_BLOCK_SIZE_BITS(sb); |
886 | start = EXT3_I(dir)->i_dir_start_lookup; | |
887 | if (start >= nblocks) | |
888 | start = 0; | |
889 | block = start; | |
890 | restart: | |
891 | do { | |
892 | /* | |
893 | * We deal with the read-ahead logic here. | |
894 | */ | |
895 | if (ra_ptr >= ra_max) { | |
896 | /* Refill the readahead buffer */ | |
897 | ra_ptr = 0; | |
898 | b = block; | |
899 | for (ra_max = 0; ra_max < NAMEI_RA_SIZE; ra_max++) { | |
900 | /* | |
901 | * Terminate if we reach the end of the | |
902 | * directory and must wrap, or if our | |
903 | * search has finished at this block. | |
904 | */ | |
905 | if (b >= nblocks || (num && block == start)) { | |
906 | bh_use[ra_max] = NULL; | |
907 | break; | |
908 | } | |
909 | num++; | |
910 | bh = ext3_getblk(NULL, dir, b++, 0, &err); | |
911 | bh_use[ra_max] = bh; | |
912 | if (bh) | |
caa38fb0 | 913 | ll_rw_block(READ_META, 1, &bh); |
1da177e4 LT |
914 | } |
915 | } | |
916 | if ((bh = bh_use[ra_ptr++]) == NULL) | |
917 | goto next; | |
918 | wait_on_buffer(bh); | |
919 | if (!buffer_uptodate(bh)) { | |
920 | /* read error, skip block & hope for the best */ | |
e05b6b52 | 921 | ext3_error(sb, __func__, "reading directory #%lu " |
1da177e4 LT |
922 | "offset %lu", dir->i_ino, block); |
923 | brelse(bh); | |
924 | goto next; | |
925 | } | |
734711ab | 926 | i = search_dirblock(bh, dir, entry, |
1da177e4 LT |
927 | block << EXT3_BLOCK_SIZE_BITS(sb), res_dir); |
928 | if (i == 1) { | |
929 | EXT3_I(dir)->i_dir_start_lookup = block; | |
930 | ret = bh; | |
931 | goto cleanup_and_exit; | |
932 | } else { | |
933 | brelse(bh); | |
934 | if (i < 0) | |
935 | goto cleanup_and_exit; | |
936 | } | |
937 | next: | |
938 | if (++block >= nblocks) | |
939 | block = 0; | |
940 | } while (block != start); | |
941 | ||
942 | /* | |
943 | * If the directory has grown while we were searching, then | |
944 | * search the last part of the directory before giving up. | |
945 | */ | |
946 | block = nblocks; | |
947 | nblocks = dir->i_size >> EXT3_BLOCK_SIZE_BITS(sb); | |
948 | if (block < nblocks) { | |
949 | start = 0; | |
950 | goto restart; | |
951 | } | |
952 | ||
953 | cleanup_and_exit: | |
954 | /* Clean up the read-ahead blocks */ | |
955 | for (; ra_ptr < ra_max; ra_ptr++) | |
956 | brelse (bh_use[ra_ptr]); | |
957 | return ret; | |
958 | } | |
959 | ||
734711ab AV |
960 | static struct buffer_head * ext3_dx_find_entry(struct inode *dir, |
961 | struct qstr *entry, struct ext3_dir_entry_2 **res_dir, | |
962 | int *err) | |
1da177e4 LT |
963 | { |
964 | struct super_block * sb; | |
965 | struct dx_hash_info hinfo; | |
966 | u32 hash; | |
967 | struct dx_frame frames[2], *frame; | |
968 | struct ext3_dir_entry_2 *de, *top; | |
969 | struct buffer_head *bh; | |
970 | unsigned long block; | |
971 | int retval; | |
734711ab AV |
972 | int namelen = entry->len; |
973 | const u8 *name = entry->name; | |
1da177e4 LT |
974 | |
975 | sb = dir->i_sb; | |
acfa1823 | 976 | /* NFS may look up ".." - look at dx_root directory block */ |
734711ab AV |
977 | if (namelen > 2 || name[0] != '.'|| (namelen == 2 && name[1] != '.')) { |
978 | if (!(frame = dx_probe(entry, dir, &hinfo, frames, err))) | |
acfa1823 AD |
979 | return NULL; |
980 | } else { | |
981 | frame = frames; | |
982 | frame->bh = NULL; /* for dx_release() */ | |
983 | frame->at = (struct dx_entry *)frames; /* hack for zero entry*/ | |
984 | dx_set_block(frame->at, 0); /* dx_root block is 0 */ | |
985 | } | |
1da177e4 LT |
986 | hash = hinfo.hash; |
987 | do { | |
988 | block = dx_get_block(frame->at); | |
989 | if (!(bh = ext3_bread (NULL,dir, block, 0, err))) | |
990 | goto errout; | |
991 | de = (struct ext3_dir_entry_2 *) bh->b_data; | |
992 | top = (struct ext3_dir_entry_2 *) ((char *) de + sb->s_blocksize - | |
993 | EXT3_DIR_REC_LEN(0)); | |
275c0a8f DG |
994 | for (; de < top; de = ext3_next_entry(de)) { |
995 | int off = (block << EXT3_BLOCK_SIZE_BITS(sb)) | |
996 | + ((char *) de - bh->b_data); | |
997 | ||
998 | if (!ext3_check_dir_entry(__func__, dir, de, bh, off)) { | |
999 | brelse(bh); | |
fedee54d | 1000 | *err = ERR_BAD_DX_DIR; |
1da177e4 LT |
1001 | goto errout; |
1002 | } | |
275c0a8f DG |
1003 | |
1004 | if (ext3_match(namelen, name, de)) { | |
1005 | *res_dir = de; | |
1006 | dx_release(frames); | |
1007 | return bh; | |
1008 | } | |
1da177e4 LT |
1009 | } |
1010 | brelse (bh); | |
1011 | /* Check to see if we should continue to search */ | |
1012 | retval = ext3_htree_next_block(dir, hash, frame, | |
1013 | frames, NULL); | |
1014 | if (retval < 0) { | |
e05b6b52 | 1015 | ext3_warning(sb, __func__, |
1da177e4 LT |
1016 | "error reading index page in directory #%lu", |
1017 | dir->i_ino); | |
1018 | *err = retval; | |
1019 | goto errout; | |
1020 | } | |
1021 | } while (retval == 1); | |
1022 | ||
1023 | *err = -ENOENT; | |
1024 | errout: | |
1025 | dxtrace(printk("%s not found\n", name)); | |
1026 | dx_release (frames); | |
1027 | return NULL; | |
1028 | } | |
1da177e4 LT |
1029 | |
1030 | static struct dentry *ext3_lookup(struct inode * dir, struct dentry *dentry, struct nameidata *nd) | |
1031 | { | |
1032 | struct inode * inode; | |
1033 | struct ext3_dir_entry_2 * de; | |
1034 | struct buffer_head * bh; | |
1035 | ||
1036 | if (dentry->d_name.len > EXT3_NAME_LEN) | |
1037 | return ERR_PTR(-ENAMETOOLONG); | |
1038 | ||
734711ab | 1039 | bh = ext3_find_entry(dir, &dentry->d_name, &de); |
1da177e4 LT |
1040 | inode = NULL; |
1041 | if (bh) { | |
1042 | unsigned long ino = le32_to_cpu(de->inode); | |
1043 | brelse (bh); | |
2ccb48eb NB |
1044 | if (!ext3_valid_inum(dir->i_sb, ino)) { |
1045 | ext3_error(dir->i_sb, "ext3_lookup", | |
1046 | "bad inode number: %lu", ino); | |
473043dc | 1047 | return ERR_PTR(-EIO); |
a6c15c2b | 1048 | } |
473043dc | 1049 | inode = ext3_iget(dir->i_sb, ino); |
de18f3b2 BD |
1050 | if (unlikely(IS_ERR(inode))) { |
1051 | if (PTR_ERR(inode) == -ESTALE) { | |
1052 | ext3_error(dir->i_sb, __func__, | |
1053 | "deleted inode referenced: %lu", | |
1054 | ino); | |
1055 | return ERR_PTR(-EIO); | |
1056 | } else { | |
1057 | return ERR_CAST(inode); | |
1058 | } | |
1059 | } | |
1da177e4 | 1060 | } |
ba7fe369 | 1061 | return d_splice_alias(inode, dentry); |
1da177e4 LT |
1062 | } |
1063 | ||
1064 | ||
1065 | struct dentry *ext3_get_parent(struct dentry *child) | |
1066 | { | |
1067 | unsigned long ino; | |
734711ab | 1068 | struct qstr dotdot = {.name = "..", .len = 2}; |
1da177e4 LT |
1069 | struct ext3_dir_entry_2 * de; |
1070 | struct buffer_head *bh; | |
1071 | ||
734711ab | 1072 | bh = ext3_find_entry(child->d_inode, &dotdot, &de); |
1da177e4 LT |
1073 | if (!bh) |
1074 | return ERR_PTR(-ENOENT); | |
1075 | ino = le32_to_cpu(de->inode); | |
1076 | brelse(bh); | |
2ccb48eb NB |
1077 | |
1078 | if (!ext3_valid_inum(child->d_inode->i_sb, ino)) { | |
1079 | ext3_error(child->d_inode->i_sb, "ext3_get_parent", | |
1080 | "bad inode number: %lu", ino); | |
473043dc | 1081 | return ERR_PTR(-EIO); |
a6c15c2b VA |
1082 | } |
1083 | ||
44003728 | 1084 | return d_obtain_alias(ext3_iget(child->d_inode->i_sb, ino)); |
ae6ddcc5 | 1085 | } |
1da177e4 LT |
1086 | |
1087 | #define S_SHIFT 12 | |
1088 | static unsigned char ext3_type_by_mode[S_IFMT >> S_SHIFT] = { | |
1089 | [S_IFREG >> S_SHIFT] = EXT3_FT_REG_FILE, | |
1090 | [S_IFDIR >> S_SHIFT] = EXT3_FT_DIR, | |
1091 | [S_IFCHR >> S_SHIFT] = EXT3_FT_CHRDEV, | |
1092 | [S_IFBLK >> S_SHIFT] = EXT3_FT_BLKDEV, | |
1093 | [S_IFIFO >> S_SHIFT] = EXT3_FT_FIFO, | |
1094 | [S_IFSOCK >> S_SHIFT] = EXT3_FT_SOCK, | |
1095 | [S_IFLNK >> S_SHIFT] = EXT3_FT_SYMLINK, | |
1096 | }; | |
1097 | ||
1098 | static inline void ext3_set_de_type(struct super_block *sb, | |
1099 | struct ext3_dir_entry_2 *de, | |
1100 | umode_t mode) { | |
1101 | if (EXT3_HAS_INCOMPAT_FEATURE(sb, EXT3_FEATURE_INCOMPAT_FILETYPE)) | |
1102 | de->file_type = ext3_type_by_mode[(mode & S_IFMT)>>S_SHIFT]; | |
1103 | } | |
1104 | ||
ef2b02d3 ES |
1105 | /* |
1106 | * Move count entries from end of map between two memory locations. | |
1107 | * Returns pointer to last entry moved. | |
1108 | */ | |
1da177e4 LT |
1109 | static struct ext3_dir_entry_2 * |
1110 | dx_move_dirents(char *from, char *to, struct dx_map_entry *map, int count) | |
1111 | { | |
1112 | unsigned rec_len = 0; | |
1113 | ||
1114 | while (count--) { | |
1115 | struct ext3_dir_entry_2 *de = (struct ext3_dir_entry_2 *) (from + map->offs); | |
1116 | rec_len = EXT3_DIR_REC_LEN(de->name_len); | |
1117 | memcpy (to, de, rec_len); | |
1118 | ((struct ext3_dir_entry_2 *) to)->rec_len = | |
7c06a8dc | 1119 | ext3_rec_len_to_disk(rec_len); |
1da177e4 LT |
1120 | de->inode = 0; |
1121 | map++; | |
1122 | to += rec_len; | |
1123 | } | |
1124 | return (struct ext3_dir_entry_2 *) (to - rec_len); | |
1125 | } | |
1126 | ||
ef2b02d3 ES |
1127 | /* |
1128 | * Compact each dir entry in the range to the minimal rec_len. | |
1129 | * Returns pointer to last entry in range. | |
1130 | */ | |
45f90217 | 1131 | static struct ext3_dir_entry_2 *dx_pack_dirents(char *base, unsigned blocksize) |
1da177e4 | 1132 | { |
45f90217 WY |
1133 | struct ext3_dir_entry_2 *next, *to, *prev; |
1134 | struct ext3_dir_entry_2 *de = (struct ext3_dir_entry_2 *)base; | |
1da177e4 LT |
1135 | unsigned rec_len = 0; |
1136 | ||
1137 | prev = to = de; | |
45f90217 | 1138 | while ((char *)de < base + blocksize) { |
7c06a8dc | 1139 | next = ext3_next_entry(de); |
1da177e4 LT |
1140 | if (de->inode && de->name_len) { |
1141 | rec_len = EXT3_DIR_REC_LEN(de->name_len); | |
1142 | if (de > to) | |
1143 | memmove(to, de, rec_len); | |
7c06a8dc | 1144 | to->rec_len = ext3_rec_len_to_disk(rec_len); |
1da177e4 LT |
1145 | prev = to; |
1146 | to = (struct ext3_dir_entry_2 *) (((char *) to) + rec_len); | |
1147 | } | |
1148 | de = next; | |
1149 | } | |
1150 | return prev; | |
1151 | } | |
1152 | ||
ef2b02d3 ES |
1153 | /* |
1154 | * Split a full leaf block to make room for a new dir entry. | |
1155 | * Allocate a new block, and move entries so that they are approx. equally full. | |
1156 | * Returns pointer to de in block into which the new entry will be inserted. | |
1157 | */ | |
1da177e4 LT |
1158 | static struct ext3_dir_entry_2 *do_split(handle_t *handle, struct inode *dir, |
1159 | struct buffer_head **bh,struct dx_frame *frame, | |
1160 | struct dx_hash_info *hinfo, int *error) | |
1161 | { | |
1162 | unsigned blocksize = dir->i_sb->s_blocksize; | |
1163 | unsigned count, continued; | |
1164 | struct buffer_head *bh2; | |
1165 | u32 newblock; | |
1166 | u32 hash2; | |
1167 | struct dx_map_entry *map; | |
1168 | char *data1 = (*bh)->b_data, *data2; | |
59e315b4 | 1169 | unsigned split, move, size; |
1da177e4 | 1170 | struct ext3_dir_entry_2 *de = NULL, *de2; |
59e315b4 | 1171 | int err = 0, i; |
1da177e4 | 1172 | |
fedee54d | 1173 | bh2 = ext3_append (handle, dir, &newblock, &err); |
1da177e4 LT |
1174 | if (!(bh2)) { |
1175 | brelse(*bh); | |
1176 | *bh = NULL; | |
1177 | goto errout; | |
1178 | } | |
1179 | ||
1180 | BUFFER_TRACE(*bh, "get_write_access"); | |
1181 | err = ext3_journal_get_write_access(handle, *bh); | |
fedee54d DM |
1182 | if (err) |
1183 | goto journal_error; | |
1184 | ||
1da177e4 LT |
1185 | BUFFER_TRACE(frame->bh, "get_write_access"); |
1186 | err = ext3_journal_get_write_access(handle, frame->bh); | |
1187 | if (err) | |
1188 | goto journal_error; | |
1189 | ||
1190 | data2 = bh2->b_data; | |
1191 | ||
1192 | /* create map in the end of data2 block */ | |
1193 | map = (struct dx_map_entry *) (data2 + blocksize); | |
1194 | count = dx_make_map ((struct ext3_dir_entry_2 *) data1, | |
1195 | blocksize, hinfo, map); | |
1196 | map -= count; | |
1da177e4 | 1197 | dx_sort_map (map, count); |
ef2b02d3 ES |
1198 | /* Split the existing block in the middle, size-wise */ |
1199 | size = 0; | |
1200 | move = 0; | |
1201 | for (i = count-1; i >= 0; i--) { | |
1202 | /* is more than half of this entry in 2nd half of the block? */ | |
1203 | if (size + map[i].size/2 > blocksize/2) | |
1204 | break; | |
1205 | size += map[i].size; | |
1206 | move++; | |
1207 | } | |
1208 | /* map index at which we will split */ | |
1209 | split = count - move; | |
1da177e4 LT |
1210 | hash2 = map[split].hash; |
1211 | continued = hash2 == map[split - 1].hash; | |
1212 | dxtrace(printk("Split block %i at %x, %i/%i\n", | |
1213 | dx_get_block(frame->at), hash2, split, count-split)); | |
1214 | ||
1215 | /* Fancy dance to stay within two buffers */ | |
1216 | de2 = dx_move_dirents(data1, data2, map + split, count - split); | |
1217 | de = dx_pack_dirents(data1,blocksize); | |
7c06a8dc JK |
1218 | de->rec_len = ext3_rec_len_to_disk(data1 + blocksize - (char *) de); |
1219 | de2->rec_len = ext3_rec_len_to_disk(data2 + blocksize - (char *) de2); | |
1da177e4 LT |
1220 | dxtrace(dx_show_leaf (hinfo, (struct ext3_dir_entry_2 *) data1, blocksize, 1)); |
1221 | dxtrace(dx_show_leaf (hinfo, (struct ext3_dir_entry_2 *) data2, blocksize, 1)); | |
1222 | ||
1223 | /* Which block gets the new entry? */ | |
1224 | if (hinfo->hash >= hash2) | |
1225 | { | |
1226 | swap(*bh, bh2); | |
1227 | de = de2; | |
1228 | } | |
1229 | dx_insert_block (frame, hash2 + continued, newblock); | |
1230 | err = ext3_journal_dirty_metadata (handle, bh2); | |
1231 | if (err) | |
1232 | goto journal_error; | |
1233 | err = ext3_journal_dirty_metadata (handle, frame->bh); | |
1234 | if (err) | |
1235 | goto journal_error; | |
1236 | brelse (bh2); | |
1237 | dxtrace(dx_show_index ("frame", frame->entries)); | |
1da177e4 | 1238 | return de; |
fedee54d DM |
1239 | |
1240 | journal_error: | |
1241 | brelse(*bh); | |
1242 | brelse(bh2); | |
1243 | *bh = NULL; | |
1244 | ext3_std_error(dir->i_sb, err); | |
1245 | errout: | |
1246 | *error = err; | |
1247 | return NULL; | |
1da177e4 | 1248 | } |
1da177e4 LT |
1249 | |
1250 | ||
1251 | /* | |
1252 | * Add a new entry into a directory (leaf) block. If de is non-NULL, | |
1253 | * it points to a directory entry which is guaranteed to be large | |
1254 | * enough for new directory entry. If de is NULL, then | |
1255 | * add_dirent_to_buf will attempt search the directory block for | |
1256 | * space. It will return -ENOSPC if no space is available, and -EIO | |
1257 | * and -EEXIST if directory entry already exists. | |
ae6ddcc5 | 1258 | * |
1da177e4 LT |
1259 | * NOTE! bh is NOT released in the case where ENOSPC is returned. In |
1260 | * all other cases bh is released. | |
1261 | */ | |
1262 | static int add_dirent_to_buf(handle_t *handle, struct dentry *dentry, | |
1263 | struct inode *inode, struct ext3_dir_entry_2 *de, | |
1264 | struct buffer_head * bh) | |
1265 | { | |
1266 | struct inode *dir = dentry->d_parent->d_inode; | |
1267 | const char *name = dentry->d_name.name; | |
1268 | int namelen = dentry->d_name.len; | |
1269 | unsigned long offset = 0; | |
1270 | unsigned short reclen; | |
1271 | int nlen, rlen, err; | |
1272 | char *top; | |
1273 | ||
1274 | reclen = EXT3_DIR_REC_LEN(namelen); | |
1275 | if (!de) { | |
1276 | de = (struct ext3_dir_entry_2 *)bh->b_data; | |
1277 | top = bh->b_data + dir->i_sb->s_blocksize - reclen; | |
1278 | while ((char *) de <= top) { | |
1279 | if (!ext3_check_dir_entry("ext3_add_entry", dir, de, | |
1280 | bh, offset)) { | |
1281 | brelse (bh); | |
1282 | return -EIO; | |
1283 | } | |
1284 | if (ext3_match (namelen, name, de)) { | |
1285 | brelse (bh); | |
1286 | return -EEXIST; | |
1287 | } | |
1288 | nlen = EXT3_DIR_REC_LEN(de->name_len); | |
7c06a8dc | 1289 | rlen = ext3_rec_len_from_disk(de->rec_len); |
1da177e4 LT |
1290 | if ((de->inode? rlen - nlen: rlen) >= reclen) |
1291 | break; | |
1292 | de = (struct ext3_dir_entry_2 *)((char *)de + rlen); | |
1293 | offset += rlen; | |
1294 | } | |
1295 | if ((char *) de > top) | |
1296 | return -ENOSPC; | |
1297 | } | |
1298 | BUFFER_TRACE(bh, "get_write_access"); | |
1299 | err = ext3_journal_get_write_access(handle, bh); | |
1300 | if (err) { | |
1301 | ext3_std_error(dir->i_sb, err); | |
1302 | brelse(bh); | |
1303 | return err; | |
1304 | } | |
1305 | ||
1306 | /* By now the buffer is marked for journaling */ | |
1307 | nlen = EXT3_DIR_REC_LEN(de->name_len); | |
7c06a8dc | 1308 | rlen = ext3_rec_len_from_disk(de->rec_len); |
1da177e4 LT |
1309 | if (de->inode) { |
1310 | struct ext3_dir_entry_2 *de1 = (struct ext3_dir_entry_2 *)((char *)de + nlen); | |
7c06a8dc JK |
1311 | de1->rec_len = ext3_rec_len_to_disk(rlen - nlen); |
1312 | de->rec_len = ext3_rec_len_to_disk(nlen); | |
1da177e4 LT |
1313 | de = de1; |
1314 | } | |
1315 | de->file_type = EXT3_FT_UNKNOWN; | |
1316 | if (inode) { | |
1317 | de->inode = cpu_to_le32(inode->i_ino); | |
1318 | ext3_set_de_type(dir->i_sb, de, inode->i_mode); | |
1319 | } else | |
1320 | de->inode = 0; | |
1321 | de->name_len = namelen; | |
1322 | memcpy (de->name, name, namelen); | |
1323 | /* | |
1324 | * XXX shouldn't update any times until successful | |
1325 | * completion of syscall, but too many callers depend | |
1326 | * on this. | |
1327 | * | |
1328 | * XXX similarly, too many callers depend on | |
1329 | * ext3_new_inode() setting the times, but error | |
1330 | * recovery deletes the inode, so the worst that can | |
1331 | * happen is that the times are slightly out of date | |
1332 | * and/or different from the directory change time. | |
1333 | */ | |
1334 | dir->i_mtime = dir->i_ctime = CURRENT_TIME_SEC; | |
1335 | ext3_update_dx_flag(dir); | |
1336 | dir->i_version++; | |
1337 | ext3_mark_inode_dirty(handle, dir); | |
1338 | BUFFER_TRACE(bh, "call ext3_journal_dirty_metadata"); | |
1339 | err = ext3_journal_dirty_metadata(handle, bh); | |
1340 | if (err) | |
1341 | ext3_std_error(dir->i_sb, err); | |
1342 | brelse(bh); | |
1343 | return 0; | |
1344 | } | |
1345 | ||
1da177e4 LT |
1346 | /* |
1347 | * This converts a one block unindexed directory to a 3 block indexed | |
1348 | * directory, and adds the dentry to the indexed directory. | |
1349 | */ | |
1350 | static int make_indexed_dir(handle_t *handle, struct dentry *dentry, | |
1351 | struct inode *inode, struct buffer_head *bh) | |
1352 | { | |
1353 | struct inode *dir = dentry->d_parent->d_inode; | |
1354 | const char *name = dentry->d_name.name; | |
1355 | int namelen = dentry->d_name.len; | |
1356 | struct buffer_head *bh2; | |
1357 | struct dx_root *root; | |
1358 | struct dx_frame frames[2], *frame; | |
1359 | struct dx_entry *entries; | |
1360 | struct ext3_dir_entry_2 *de, *de2; | |
1361 | char *data1, *top; | |
1362 | unsigned len; | |
1363 | int retval; | |
1364 | unsigned blocksize; | |
1365 | struct dx_hash_info hinfo; | |
1366 | u32 block; | |
1367 | struct fake_dirent *fde; | |
1368 | ||
1369 | blocksize = dir->i_sb->s_blocksize; | |
a21102b5 | 1370 | dxtrace(printk(KERN_DEBUG "Creating index: inode %lu\n", dir->i_ino)); |
1da177e4 LT |
1371 | retval = ext3_journal_get_write_access(handle, bh); |
1372 | if (retval) { | |
1373 | ext3_std_error(dir->i_sb, retval); | |
1374 | brelse(bh); | |
1375 | return retval; | |
1376 | } | |
1377 | root = (struct dx_root *) bh->b_data; | |
1378 | ||
a21102b5 TT |
1379 | /* The 0th block becomes the root, move the dirents out */ |
1380 | fde = &root->dotdot; | |
1381 | de = (struct ext3_dir_entry_2 *)((char *)fde + | |
1382 | ext3_rec_len_from_disk(fde->rec_len)); | |
1383 | if ((char *) de >= (((char *) root) + blocksize)) { | |
1384 | ext3_error(dir->i_sb, __func__, | |
1385 | "invalid rec_len for '..' in inode %lu", | |
1386 | dir->i_ino); | |
1387 | brelse(bh); | |
1388 | return -EIO; | |
1389 | } | |
1390 | len = ((char *) root) + blocksize - (char *) de; | |
1391 | ||
1da177e4 LT |
1392 | bh2 = ext3_append (handle, dir, &block, &retval); |
1393 | if (!(bh2)) { | |
1394 | brelse(bh); | |
1395 | return retval; | |
1396 | } | |
1397 | EXT3_I(dir)->i_flags |= EXT3_INDEX_FL; | |
1398 | data1 = bh2->b_data; | |
1399 | ||
1da177e4 LT |
1400 | memcpy (data1, de, len); |
1401 | de = (struct ext3_dir_entry_2 *) data1; | |
1402 | top = data1 + len; | |
7c06a8dc | 1403 | while ((char *)(de2 = ext3_next_entry(de)) < top) |
1da177e4 | 1404 | de = de2; |
7c06a8dc | 1405 | de->rec_len = ext3_rec_len_to_disk(data1 + blocksize - (char *) de); |
1da177e4 LT |
1406 | /* Initialize the root; the dot dirents already exist */ |
1407 | de = (struct ext3_dir_entry_2 *) (&root->dotdot); | |
7c06a8dc | 1408 | de->rec_len = ext3_rec_len_to_disk(blocksize - EXT3_DIR_REC_LEN(2)); |
1da177e4 LT |
1409 | memset (&root->info, 0, sizeof(root->info)); |
1410 | root->info.info_length = sizeof(root->info); | |
1411 | root->info.hash_version = EXT3_SB(dir->i_sb)->s_def_hash_version; | |
1412 | entries = root->entries; | |
1413 | dx_set_block (entries, 1); | |
1414 | dx_set_count (entries, 1); | |
1415 | dx_set_limit (entries, dx_root_limit(dir, sizeof(root->info))); | |
1416 | ||
1417 | /* Initialize as for dx_probe */ | |
1418 | hinfo.hash_version = root->info.hash_version; | |
5e1f8c9e TT |
1419 | if (hinfo.hash_version <= DX_HASH_TEA) |
1420 | hinfo.hash_version += EXT3_SB(dir->i_sb)->s_hash_unsigned; | |
1da177e4 LT |
1421 | hinfo.seed = EXT3_SB(dir->i_sb)->s_hash_seed; |
1422 | ext3fs_dirhash(name, namelen, &hinfo); | |
1423 | frame = frames; | |
1424 | frame->entries = entries; | |
1425 | frame->at = entries; | |
1426 | frame->bh = bh; | |
1427 | bh = bh2; | |
1428 | de = do_split(handle,dir, &bh, frame, &hinfo, &retval); | |
1429 | dx_release (frames); | |
1430 | if (!(de)) | |
1431 | return retval; | |
1432 | ||
1433 | return add_dirent_to_buf(handle, dentry, inode, de, bh); | |
1434 | } | |
1da177e4 LT |
1435 | |
1436 | /* | |
1437 | * ext3_add_entry() | |
1438 | * | |
1439 | * adds a file entry to the specified directory, using the same | |
1440 | * semantics as ext3_find_entry(). It returns NULL if it failed. | |
1441 | * | |
1442 | * NOTE!! The inode part of 'de' is left at 0 - which means you | |
1443 | * may not sleep between calling this and putting something into | |
1444 | * the entry, as someone else might have used it while you slept. | |
1445 | */ | |
1446 | static int ext3_add_entry (handle_t *handle, struct dentry *dentry, | |
1447 | struct inode *inode) | |
1448 | { | |
1449 | struct inode *dir = dentry->d_parent->d_inode; | |
1da177e4 LT |
1450 | struct buffer_head * bh; |
1451 | struct ext3_dir_entry_2 *de; | |
1452 | struct super_block * sb; | |
1453 | int retval; | |
1da177e4 | 1454 | int dx_fallback=0; |
1da177e4 | 1455 | unsigned blocksize; |
1da177e4 LT |
1456 | u32 block, blocks; |
1457 | ||
1458 | sb = dir->i_sb; | |
1459 | blocksize = sb->s_blocksize; | |
1460 | if (!dentry->d_name.len) | |
1461 | return -EINVAL; | |
1da177e4 LT |
1462 | if (is_dx(dir)) { |
1463 | retval = ext3_dx_add_entry(handle, dentry, inode); | |
1464 | if (!retval || (retval != ERR_BAD_DX_DIR)) | |
1465 | return retval; | |
1466 | EXT3_I(dir)->i_flags &= ~EXT3_INDEX_FL; | |
1467 | dx_fallback++; | |
1468 | ext3_mark_inode_dirty(handle, dir); | |
1469 | } | |
1da177e4 | 1470 | blocks = dir->i_size >> sb->s_blocksize_bits; |
0411ba79 | 1471 | for (block = 0; block < blocks; block++) { |
1da177e4 LT |
1472 | bh = ext3_bread(handle, dir, block, 0, &retval); |
1473 | if(!bh) | |
1474 | return retval; | |
1475 | retval = add_dirent_to_buf(handle, dentry, inode, NULL, bh); | |
1476 | if (retval != -ENOSPC) | |
1477 | return retval; | |
1478 | ||
1da177e4 LT |
1479 | if (blocks == 1 && !dx_fallback && |
1480 | EXT3_HAS_COMPAT_FEATURE(sb, EXT3_FEATURE_COMPAT_DIR_INDEX)) | |
1481 | return make_indexed_dir(handle, dentry, inode, bh); | |
1da177e4 LT |
1482 | brelse(bh); |
1483 | } | |
1484 | bh = ext3_append(handle, dir, &block, &retval); | |
1485 | if (!bh) | |
1486 | return retval; | |
1487 | de = (struct ext3_dir_entry_2 *) bh->b_data; | |
1488 | de->inode = 0; | |
7c06a8dc | 1489 | de->rec_len = ext3_rec_len_to_disk(blocksize); |
1da177e4 LT |
1490 | return add_dirent_to_buf(handle, dentry, inode, de, bh); |
1491 | } | |
1492 | ||
1da177e4 LT |
1493 | /* |
1494 | * Returns 0 for success, or a negative error value | |
1495 | */ | |
1496 | static int ext3_dx_add_entry(handle_t *handle, struct dentry *dentry, | |
1497 | struct inode *inode) | |
1498 | { | |
1499 | struct dx_frame frames[2], *frame; | |
1500 | struct dx_entry *entries, *at; | |
1501 | struct dx_hash_info hinfo; | |
1502 | struct buffer_head * bh; | |
1503 | struct inode *dir = dentry->d_parent->d_inode; | |
1504 | struct super_block * sb = dir->i_sb; | |
1505 | struct ext3_dir_entry_2 *de; | |
1506 | int err; | |
1507 | ||
734711ab | 1508 | frame = dx_probe(&dentry->d_name, dir, &hinfo, frames, &err); |
1da177e4 LT |
1509 | if (!frame) |
1510 | return err; | |
1511 | entries = frame->entries; | |
1512 | at = frame->at; | |
1513 | ||
1514 | if (!(bh = ext3_bread(handle,dir, dx_get_block(frame->at), 0, &err))) | |
1515 | goto cleanup; | |
1516 | ||
1517 | BUFFER_TRACE(bh, "get_write_access"); | |
1518 | err = ext3_journal_get_write_access(handle, bh); | |
1519 | if (err) | |
1520 | goto journal_error; | |
1521 | ||
1522 | err = add_dirent_to_buf(handle, dentry, inode, NULL, bh); | |
1523 | if (err != -ENOSPC) { | |
1524 | bh = NULL; | |
1525 | goto cleanup; | |
1526 | } | |
1527 | ||
1528 | /* Block full, should compress but for now just split */ | |
1529 | dxtrace(printk("using %u of %u node entries\n", | |
1530 | dx_get_count(entries), dx_get_limit(entries))); | |
1531 | /* Need to split index? */ | |
1532 | if (dx_get_count(entries) == dx_get_limit(entries)) { | |
1533 | u32 newblock; | |
1534 | unsigned icount = dx_get_count(entries); | |
1535 | int levels = frame - frames; | |
1536 | struct dx_entry *entries2; | |
1537 | struct dx_node *node2; | |
1538 | struct buffer_head *bh2; | |
1539 | ||
1540 | if (levels && (dx_get_count(frames->entries) == | |
1541 | dx_get_limit(frames->entries))) { | |
e05b6b52 | 1542 | ext3_warning(sb, __func__, |
9f40668d | 1543 | "Directory index full!"); |
1da177e4 LT |
1544 | err = -ENOSPC; |
1545 | goto cleanup; | |
1546 | } | |
1547 | bh2 = ext3_append (handle, dir, &newblock, &err); | |
1548 | if (!(bh2)) | |
1549 | goto cleanup; | |
1550 | node2 = (struct dx_node *)(bh2->b_data); | |
1551 | entries2 = node2->entries; | |
7c06a8dc | 1552 | node2->fake.rec_len = ext3_rec_len_to_disk(sb->s_blocksize); |
1da177e4 LT |
1553 | node2->fake.inode = 0; |
1554 | BUFFER_TRACE(frame->bh, "get_write_access"); | |
1555 | err = ext3_journal_get_write_access(handle, frame->bh); | |
1556 | if (err) | |
1557 | goto journal_error; | |
1558 | if (levels) { | |
1559 | unsigned icount1 = icount/2, icount2 = icount - icount1; | |
1560 | unsigned hash2 = dx_get_hash(entries + icount1); | |
1561 | dxtrace(printk("Split index %i/%i\n", icount1, icount2)); | |
1562 | ||
1563 | BUFFER_TRACE(frame->bh, "get_write_access"); /* index root */ | |
1564 | err = ext3_journal_get_write_access(handle, | |
1565 | frames[0].bh); | |
1566 | if (err) | |
1567 | goto journal_error; | |
1568 | ||
1569 | memcpy ((char *) entries2, (char *) (entries + icount1), | |
1570 | icount2 * sizeof(struct dx_entry)); | |
1571 | dx_set_count (entries, icount1); | |
1572 | dx_set_count (entries2, icount2); | |
1573 | dx_set_limit (entries2, dx_node_limit(dir)); | |
1574 | ||
1575 | /* Which index block gets the new entry? */ | |
1576 | if (at - entries >= icount1) { | |
1577 | frame->at = at = at - entries - icount1 + entries2; | |
1578 | frame->entries = entries = entries2; | |
1579 | swap(frame->bh, bh2); | |
1580 | } | |
1581 | dx_insert_block (frames + 0, hash2, newblock); | |
1582 | dxtrace(dx_show_index ("node", frames[1].entries)); | |
1583 | dxtrace(dx_show_index ("node", | |
1584 | ((struct dx_node *) bh2->b_data)->entries)); | |
1585 | err = ext3_journal_dirty_metadata(handle, bh2); | |
1586 | if (err) | |
1587 | goto journal_error; | |
1588 | brelse (bh2); | |
1589 | } else { | |
1590 | dxtrace(printk("Creating second level index...\n")); | |
1591 | memcpy((char *) entries2, (char *) entries, | |
1592 | icount * sizeof(struct dx_entry)); | |
1593 | dx_set_limit(entries2, dx_node_limit(dir)); | |
1594 | ||
1595 | /* Set up root */ | |
1596 | dx_set_count(entries, 1); | |
1597 | dx_set_block(entries + 0, newblock); | |
1598 | ((struct dx_root *) frames[0].bh->b_data)->info.indirect_levels = 1; | |
1599 | ||
1600 | /* Add new access path frame */ | |
1601 | frame = frames + 1; | |
1602 | frame->at = at = at - entries + entries2; | |
1603 | frame->entries = entries = entries2; | |
1604 | frame->bh = bh2; | |
1605 | err = ext3_journal_get_write_access(handle, | |
1606 | frame->bh); | |
1607 | if (err) | |
1608 | goto journal_error; | |
1609 | } | |
1610 | ext3_journal_dirty_metadata(handle, frames[0].bh); | |
1611 | } | |
1612 | de = do_split(handle, dir, &bh, frame, &hinfo, &err); | |
1613 | if (!de) | |
1614 | goto cleanup; | |
1615 | err = add_dirent_to_buf(handle, dentry, inode, de, bh); | |
1616 | bh = NULL; | |
1617 | goto cleanup; | |
1618 | ||
1619 | journal_error: | |
1620 | ext3_std_error(dir->i_sb, err); | |
1621 | cleanup: | |
1622 | if (bh) | |
1623 | brelse(bh); | |
1624 | dx_release(frames); | |
1625 | return err; | |
1626 | } | |
1da177e4 LT |
1627 | |
1628 | /* | |
1629 | * ext3_delete_entry deletes a directory entry by merging it with the | |
1630 | * previous entry | |
1631 | */ | |
ae6ddcc5 | 1632 | static int ext3_delete_entry (handle_t *handle, |
1da177e4 LT |
1633 | struct inode * dir, |
1634 | struct ext3_dir_entry_2 * de_del, | |
1635 | struct buffer_head * bh) | |
1636 | { | |
1637 | struct ext3_dir_entry_2 * de, * pde; | |
1638 | int i; | |
1639 | ||
1640 | i = 0; | |
1641 | pde = NULL; | |
1642 | de = (struct ext3_dir_entry_2 *) bh->b_data; | |
1643 | while (i < bh->b_size) { | |
1644 | if (!ext3_check_dir_entry("ext3_delete_entry", dir, de, bh, i)) | |
1645 | return -EIO; | |
1646 | if (de == de_del) { | |
1647 | BUFFER_TRACE(bh, "get_write_access"); | |
1648 | ext3_journal_get_write_access(handle, bh); | |
1649 | if (pde) | |
7c06a8dc JK |
1650 | pde->rec_len = ext3_rec_len_to_disk( |
1651 | ext3_rec_len_from_disk(pde->rec_len) + | |
1652 | ext3_rec_len_from_disk(de->rec_len)); | |
1da177e4 LT |
1653 | else |
1654 | de->inode = 0; | |
1655 | dir->i_version++; | |
1656 | BUFFER_TRACE(bh, "call ext3_journal_dirty_metadata"); | |
1657 | ext3_journal_dirty_metadata(handle, bh); | |
1658 | return 0; | |
1659 | } | |
7c06a8dc | 1660 | i += ext3_rec_len_from_disk(de->rec_len); |
1da177e4 | 1661 | pde = de; |
7c06a8dc | 1662 | de = ext3_next_entry(de); |
1da177e4 LT |
1663 | } |
1664 | return -ENOENT; | |
1665 | } | |
1666 | ||
1da177e4 LT |
1667 | static int ext3_add_nondir(handle_t *handle, |
1668 | struct dentry *dentry, struct inode *inode) | |
1669 | { | |
1670 | int err = ext3_add_entry(handle, dentry, inode); | |
1671 | if (!err) { | |
1672 | ext3_mark_inode_dirty(handle, inode); | |
1673 | d_instantiate(dentry, inode); | |
c38012da | 1674 | unlock_new_inode(inode); |
1da177e4 LT |
1675 | return 0; |
1676 | } | |
731b9a54 | 1677 | drop_nlink(inode); |
c38012da | 1678 | unlock_new_inode(inode); |
1da177e4 LT |
1679 | iput(inode); |
1680 | return err; | |
1681 | } | |
1682 | ||
1683 | /* | |
1684 | * By the time this is called, we already have created | |
1685 | * the directory cache entry for the new file, but it | |
1686 | * is so far negative - it has no inode. | |
1687 | * | |
1688 | * If the create succeeds, we fill in the inode information | |
ae6ddcc5 | 1689 | * with d_instantiate(). |
1da177e4 LT |
1690 | */ |
1691 | static int ext3_create (struct inode * dir, struct dentry * dentry, int mode, | |
1692 | struct nameidata *nd) | |
1693 | { | |
ae6ddcc5 | 1694 | handle_t *handle; |
1da177e4 LT |
1695 | struct inode * inode; |
1696 | int err, retries = 0; | |
1697 | ||
871a2931 | 1698 | dquot_initialize(dir); |
907f4554 | 1699 | |
1da177e4 | 1700 | retry: |
1f54587b | 1701 | handle = ext3_journal_start(dir, EXT3_DATA_TRANS_BLOCKS(dir->i_sb) + |
1da177e4 | 1702 | EXT3_INDEX_EXTRA_TRANS_BLOCKS + 3 + |
c459001f | 1703 | EXT3_MAXQUOTAS_INIT_BLOCKS(dir->i_sb)); |
1da177e4 LT |
1704 | if (IS_ERR(handle)) |
1705 | return PTR_ERR(handle); | |
1706 | ||
1707 | if (IS_DIRSYNC(dir)) | |
1708 | handle->h_sync = 1; | |
1709 | ||
1710 | inode = ext3_new_inode (handle, dir, mode); | |
1711 | err = PTR_ERR(inode); | |
1712 | if (!IS_ERR(inode)) { | |
1713 | inode->i_op = &ext3_file_inode_operations; | |
1714 | inode->i_fop = &ext3_file_operations; | |
1715 | ext3_set_aops(inode); | |
1716 | err = ext3_add_nondir(handle, dentry, inode); | |
1717 | } | |
1718 | ext3_journal_stop(handle); | |
1719 | if (err == -ENOSPC && ext3_should_retry_alloc(dir->i_sb, &retries)) | |
1720 | goto retry; | |
1721 | return err; | |
1722 | } | |
1723 | ||
1724 | static int ext3_mknod (struct inode * dir, struct dentry *dentry, | |
1725 | int mode, dev_t rdev) | |
1726 | { | |
1727 | handle_t *handle; | |
1728 | struct inode *inode; | |
1729 | int err, retries = 0; | |
1730 | ||
1731 | if (!new_valid_dev(rdev)) | |
1732 | return -EINVAL; | |
1733 | ||
871a2931 | 1734 | dquot_initialize(dir); |
907f4554 | 1735 | |
1da177e4 | 1736 | retry: |
1f54587b | 1737 | handle = ext3_journal_start(dir, EXT3_DATA_TRANS_BLOCKS(dir->i_sb) + |
e9ad5620 | 1738 | EXT3_INDEX_EXTRA_TRANS_BLOCKS + 3 + |
c459001f | 1739 | EXT3_MAXQUOTAS_INIT_BLOCKS(dir->i_sb)); |
1da177e4 LT |
1740 | if (IS_ERR(handle)) |
1741 | return PTR_ERR(handle); | |
1742 | ||
1743 | if (IS_DIRSYNC(dir)) | |
1744 | handle->h_sync = 1; | |
1745 | ||
1746 | inode = ext3_new_inode (handle, dir, mode); | |
1747 | err = PTR_ERR(inode); | |
1748 | if (!IS_ERR(inode)) { | |
1749 | init_special_inode(inode, inode->i_mode, rdev); | |
1750 | #ifdef CONFIG_EXT3_FS_XATTR | |
1751 | inode->i_op = &ext3_special_inode_operations; | |
1752 | #endif | |
1753 | err = ext3_add_nondir(handle, dentry, inode); | |
1754 | } | |
1755 | ext3_journal_stop(handle); | |
1756 | if (err == -ENOSPC && ext3_should_retry_alloc(dir->i_sb, &retries)) | |
1757 | goto retry; | |
1758 | return err; | |
1759 | } | |
1760 | ||
1761 | static int ext3_mkdir(struct inode * dir, struct dentry * dentry, int mode) | |
1762 | { | |
1763 | handle_t *handle; | |
1764 | struct inode * inode; | |
1765 | struct buffer_head * dir_block; | |
1766 | struct ext3_dir_entry_2 * de; | |
1767 | int err, retries = 0; | |
1768 | ||
1769 | if (dir->i_nlink >= EXT3_LINK_MAX) | |
1770 | return -EMLINK; | |
1771 | ||
871a2931 | 1772 | dquot_initialize(dir); |
907f4554 | 1773 | |
1da177e4 | 1774 | retry: |
1f54587b | 1775 | handle = ext3_journal_start(dir, EXT3_DATA_TRANS_BLOCKS(dir->i_sb) + |
1da177e4 | 1776 | EXT3_INDEX_EXTRA_TRANS_BLOCKS + 3 + |
c459001f | 1777 | EXT3_MAXQUOTAS_INIT_BLOCKS(dir->i_sb)); |
1da177e4 LT |
1778 | if (IS_ERR(handle)) |
1779 | return PTR_ERR(handle); | |
1780 | ||
1781 | if (IS_DIRSYNC(dir)) | |
1782 | handle->h_sync = 1; | |
1783 | ||
1784 | inode = ext3_new_inode (handle, dir, S_IFDIR | mode); | |
1785 | err = PTR_ERR(inode); | |
1786 | if (IS_ERR(inode)) | |
1787 | goto out_stop; | |
1788 | ||
1789 | inode->i_op = &ext3_dir_inode_operations; | |
1790 | inode->i_fop = &ext3_dir_operations; | |
1791 | inode->i_size = EXT3_I(inode)->i_disksize = inode->i_sb->s_blocksize; | |
1792 | dir_block = ext3_bread (handle, inode, 0, 1, &err); | |
1793 | if (!dir_block) { | |
9a53c3a7 | 1794 | drop_nlink(inode); /* is this nlink == 0? */ |
c38012da | 1795 | unlock_new_inode(inode); |
1da177e4 LT |
1796 | ext3_mark_inode_dirty(handle, inode); |
1797 | iput (inode); | |
1798 | goto out_stop; | |
1799 | } | |
1800 | BUFFER_TRACE(dir_block, "get_write_access"); | |
1801 | ext3_journal_get_write_access(handle, dir_block); | |
1802 | de = (struct ext3_dir_entry_2 *) dir_block->b_data; | |
1803 | de->inode = cpu_to_le32(inode->i_ino); | |
1804 | de->name_len = 1; | |
7c06a8dc | 1805 | de->rec_len = ext3_rec_len_to_disk(EXT3_DIR_REC_LEN(de->name_len)); |
1da177e4 LT |
1806 | strcpy (de->name, "."); |
1807 | ext3_set_de_type(dir->i_sb, de, S_IFDIR); | |
7c06a8dc | 1808 | de = ext3_next_entry(de); |
1da177e4 | 1809 | de->inode = cpu_to_le32(dir->i_ino); |
7c06a8dc JK |
1810 | de->rec_len = ext3_rec_len_to_disk(inode->i_sb->s_blocksize - |
1811 | EXT3_DIR_REC_LEN(1)); | |
1da177e4 LT |
1812 | de->name_len = 2; |
1813 | strcpy (de->name, ".."); | |
1814 | ext3_set_de_type(dir->i_sb, de, S_IFDIR); | |
1815 | inode->i_nlink = 2; | |
1816 | BUFFER_TRACE(dir_block, "call ext3_journal_dirty_metadata"); | |
1817 | ext3_journal_dirty_metadata(handle, dir_block); | |
1818 | brelse (dir_block); | |
1819 | ext3_mark_inode_dirty(handle, inode); | |
1820 | err = ext3_add_entry (handle, dentry, inode); | |
1821 | if (err) { | |
1822 | inode->i_nlink = 0; | |
c38012da | 1823 | unlock_new_inode(inode); |
1da177e4 LT |
1824 | ext3_mark_inode_dirty(handle, inode); |
1825 | iput (inode); | |
1826 | goto out_stop; | |
1827 | } | |
d8c76e6f | 1828 | inc_nlink(dir); |
1da177e4 LT |
1829 | ext3_update_dx_flag(dir); |
1830 | ext3_mark_inode_dirty(handle, dir); | |
1831 | d_instantiate(dentry, inode); | |
c38012da | 1832 | unlock_new_inode(inode); |
1da177e4 LT |
1833 | out_stop: |
1834 | ext3_journal_stop(handle); | |
1835 | if (err == -ENOSPC && ext3_should_retry_alloc(dir->i_sb, &retries)) | |
1836 | goto retry; | |
1837 | return err; | |
1838 | } | |
1839 | ||
1840 | /* | |
1841 | * routine to check that the specified directory is empty (for rmdir) | |
1842 | */ | |
1843 | static int empty_dir (struct inode * inode) | |
1844 | { | |
1845 | unsigned long offset; | |
1846 | struct buffer_head * bh; | |
1847 | struct ext3_dir_entry_2 * de, * de1; | |
1848 | struct super_block * sb; | |
1849 | int err = 0; | |
1850 | ||
1851 | sb = inode->i_sb; | |
1852 | if (inode->i_size < EXT3_DIR_REC_LEN(1) + EXT3_DIR_REC_LEN(2) || | |
1853 | !(bh = ext3_bread (NULL, inode, 0, 0, &err))) { | |
1854 | if (err) | |
e05b6b52 | 1855 | ext3_error(inode->i_sb, __func__, |
1da177e4 LT |
1856 | "error %d reading directory #%lu offset 0", |
1857 | err, inode->i_ino); | |
1858 | else | |
e05b6b52 | 1859 | ext3_warning(inode->i_sb, __func__, |
1da177e4 LT |
1860 | "bad directory (dir #%lu) - no data block", |
1861 | inode->i_ino); | |
1862 | return 1; | |
1863 | } | |
1864 | de = (struct ext3_dir_entry_2 *) bh->b_data; | |
7c06a8dc | 1865 | de1 = ext3_next_entry(de); |
1da177e4 | 1866 | if (le32_to_cpu(de->inode) != inode->i_ino || |
ae6ddcc5 | 1867 | !le32_to_cpu(de1->inode) || |
1da177e4 LT |
1868 | strcmp (".", de->name) || |
1869 | strcmp ("..", de1->name)) { | |
e9ad5620 | 1870 | ext3_warning (inode->i_sb, "empty_dir", |
1da177e4 LT |
1871 | "bad directory (dir #%lu) - no `.' or `..'", |
1872 | inode->i_ino); | |
1873 | brelse (bh); | |
1874 | return 1; | |
1875 | } | |
7c06a8dc JK |
1876 | offset = ext3_rec_len_from_disk(de->rec_len) + |
1877 | ext3_rec_len_from_disk(de1->rec_len); | |
1878 | de = ext3_next_entry(de1); | |
1da177e4 LT |
1879 | while (offset < inode->i_size ) { |
1880 | if (!bh || | |
1881 | (void *) de >= (void *) (bh->b_data+sb->s_blocksize)) { | |
1882 | err = 0; | |
1883 | brelse (bh); | |
1884 | bh = ext3_bread (NULL, inode, | |
1885 | offset >> EXT3_BLOCK_SIZE_BITS(sb), 0, &err); | |
1886 | if (!bh) { | |
1887 | if (err) | |
e05b6b52 | 1888 | ext3_error(sb, __func__, |
1da177e4 LT |
1889 | "error %d reading directory" |
1890 | " #%lu offset %lu", | |
1891 | err, inode->i_ino, offset); | |
1892 | offset += sb->s_blocksize; | |
1893 | continue; | |
1894 | } | |
1895 | de = (struct ext3_dir_entry_2 *) bh->b_data; | |
1896 | } | |
1897 | if (!ext3_check_dir_entry("empty_dir", inode, de, bh, offset)) { | |
1898 | de = (struct ext3_dir_entry_2 *)(bh->b_data + | |
1899 | sb->s_blocksize); | |
1900 | offset = (offset | (sb->s_blocksize - 1)) + 1; | |
1901 | continue; | |
1902 | } | |
1903 | if (le32_to_cpu(de->inode)) { | |
1904 | brelse (bh); | |
1905 | return 0; | |
1906 | } | |
7c06a8dc JK |
1907 | offset += ext3_rec_len_from_disk(de->rec_len); |
1908 | de = ext3_next_entry(de); | |
1da177e4 LT |
1909 | } |
1910 | brelse (bh); | |
1911 | return 1; | |
1912 | } | |
1913 | ||
1914 | /* ext3_orphan_add() links an unlinked or truncated inode into a list of | |
1915 | * such inodes, starting at the superblock, in case we crash before the | |
1916 | * file is closed/deleted, or in case the inode truncate spans multiple | |
1917 | * transactions and the last transaction is not recovered after a crash. | |
1918 | * | |
1919 | * At filesystem recovery time, we walk this list deleting unlinked | |
1920 | * inodes and truncating linked inodes in ext3_orphan_cleanup(). | |
1921 | */ | |
1922 | int ext3_orphan_add(handle_t *handle, struct inode *inode) | |
1923 | { | |
1924 | struct super_block *sb = inode->i_sb; | |
1925 | struct ext3_iloc iloc; | |
1926 | int err = 0, rc; | |
1927 | ||
b8a052d0 | 1928 | mutex_lock(&EXT3_SB(sb)->s_orphan_lock); |
1da177e4 LT |
1929 | if (!list_empty(&EXT3_I(inode)->i_orphan)) |
1930 | goto out_unlock; | |
1931 | ||
1932 | /* Orphan handling is only valid for files with data blocks | |
1933 | * being truncated, or files being unlinked. */ | |
1934 | ||
1935 | /* @@@ FIXME: Observation from aviro: | |
ae6ddcc5 | 1936 | * I think I can trigger J_ASSERT in ext3_orphan_add(). We block |
b8a052d0 | 1937 | * here (on s_orphan_lock), so race with ext3_link() which might bump |
1da177e4 LT |
1938 | * ->i_nlink. For, say it, character device. Not a regular file, |
1939 | * not a directory, not a symlink and ->i_nlink > 0. | |
b8a052d0 ES |
1940 | * |
1941 | * tytso, 4/25/2009: I'm not sure how that could happen; | |
1942 | * shouldn't the fs core protect us from these sort of | |
1943 | * unlink()/link() races? | |
1da177e4 LT |
1944 | */ |
1945 | J_ASSERT ((S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) || | |
1946 | S_ISLNK(inode->i_mode)) || inode->i_nlink == 0); | |
1947 | ||
1948 | BUFFER_TRACE(EXT3_SB(sb)->s_sbh, "get_write_access"); | |
1949 | err = ext3_journal_get_write_access(handle, EXT3_SB(sb)->s_sbh); | |
1950 | if (err) | |
1951 | goto out_unlock; | |
1952 | ||
1953 | err = ext3_reserve_inode_write(handle, inode, &iloc); | |
1954 | if (err) | |
1955 | goto out_unlock; | |
1956 | ||
1957 | /* Insert this inode at the head of the on-disk orphan list... */ | |
1958 | NEXT_ORPHAN(inode) = le32_to_cpu(EXT3_SB(sb)->s_es->s_last_orphan); | |
1959 | EXT3_SB(sb)->s_es->s_last_orphan = cpu_to_le32(inode->i_ino); | |
1960 | err = ext3_journal_dirty_metadata(handle, EXT3_SB(sb)->s_sbh); | |
1961 | rc = ext3_mark_iloc_dirty(handle, inode, &iloc); | |
1962 | if (!err) | |
1963 | err = rc; | |
1964 | ||
1965 | /* Only add to the head of the in-memory list if all the | |
1966 | * previous operations succeeded. If the orphan_add is going to | |
1967 | * fail (possibly taking the journal offline), we can't risk | |
1968 | * leaving the inode on the orphan list: stray orphan-list | |
1969 | * entries can cause panics at unmount time. | |
1970 | * | |
1971 | * This is safe: on error we're going to ignore the orphan list | |
1972 | * anyway on the next recovery. */ | |
1973 | if (!err) | |
1974 | list_add(&EXT3_I(inode)->i_orphan, &EXT3_SB(sb)->s_orphan); | |
1975 | ||
eee194e7 ES |
1976 | jbd_debug(4, "superblock will point to %lu\n", inode->i_ino); |
1977 | jbd_debug(4, "orphan inode %lu will point to %d\n", | |
1da177e4 LT |
1978 | inode->i_ino, NEXT_ORPHAN(inode)); |
1979 | out_unlock: | |
b8a052d0 | 1980 | mutex_unlock(&EXT3_SB(sb)->s_orphan_lock); |
1da177e4 LT |
1981 | ext3_std_error(inode->i_sb, err); |
1982 | return err; | |
1983 | } | |
1984 | ||
1985 | /* | |
1986 | * ext3_orphan_del() removes an unlinked or truncated inode from the list | |
1987 | * of such inodes stored on disk, because it is finally being cleaned up. | |
1988 | */ | |
1989 | int ext3_orphan_del(handle_t *handle, struct inode *inode) | |
1990 | { | |
1991 | struct list_head *prev; | |
1992 | struct ext3_inode_info *ei = EXT3_I(inode); | |
1993 | struct ext3_sb_info *sbi; | |
1994 | unsigned long ino_next; | |
1995 | struct ext3_iloc iloc; | |
1996 | int err = 0; | |
1997 | ||
b8a052d0 ES |
1998 | mutex_lock(&EXT3_SB(inode->i_sb)->s_orphan_lock); |
1999 | if (list_empty(&ei->i_orphan)) | |
2000 | goto out; | |
1da177e4 LT |
2001 | |
2002 | ino_next = NEXT_ORPHAN(inode); | |
2003 | prev = ei->i_orphan.prev; | |
2004 | sbi = EXT3_SB(inode->i_sb); | |
2005 | ||
2006 | jbd_debug(4, "remove inode %lu from orphan list\n", inode->i_ino); | |
2007 | ||
2008 | list_del_init(&ei->i_orphan); | |
2009 | ||
2010 | /* If we're on an error path, we may not have a valid | |
2011 | * transaction handle with which to update the orphan list on | |
2012 | * disk, but we still need to remove the inode from the linked | |
2013 | * list in memory. */ | |
2014 | if (!handle) | |
2015 | goto out; | |
2016 | ||
2017 | err = ext3_reserve_inode_write(handle, inode, &iloc); | |
2018 | if (err) | |
2019 | goto out_err; | |
2020 | ||
2021 | if (prev == &sbi->s_orphan) { | |
2022 | jbd_debug(4, "superblock will point to %lu\n", ino_next); | |
2023 | BUFFER_TRACE(sbi->s_sbh, "get_write_access"); | |
2024 | err = ext3_journal_get_write_access(handle, sbi->s_sbh); | |
2025 | if (err) | |
2026 | goto out_brelse; | |
2027 | sbi->s_es->s_last_orphan = cpu_to_le32(ino_next); | |
2028 | err = ext3_journal_dirty_metadata(handle, sbi->s_sbh); | |
2029 | } else { | |
2030 | struct ext3_iloc iloc2; | |
2031 | struct inode *i_prev = | |
2032 | &list_entry(prev, struct ext3_inode_info, i_orphan)->vfs_inode; | |
2033 | ||
2034 | jbd_debug(4, "orphan inode %lu will point to %lu\n", | |
2035 | i_prev->i_ino, ino_next); | |
2036 | err = ext3_reserve_inode_write(handle, i_prev, &iloc2); | |
2037 | if (err) | |
2038 | goto out_brelse; | |
2039 | NEXT_ORPHAN(i_prev) = ino_next; | |
2040 | err = ext3_mark_iloc_dirty(handle, i_prev, &iloc2); | |
2041 | } | |
2042 | if (err) | |
2043 | goto out_brelse; | |
2044 | NEXT_ORPHAN(inode) = 0; | |
2045 | err = ext3_mark_iloc_dirty(handle, inode, &iloc); | |
2046 | ||
2047 | out_err: | |
2048 | ext3_std_error(inode->i_sb, err); | |
2049 | out: | |
b8a052d0 | 2050 | mutex_unlock(&EXT3_SB(inode->i_sb)->s_orphan_lock); |
1da177e4 LT |
2051 | return err; |
2052 | ||
2053 | out_brelse: | |
2054 | brelse(iloc.bh); | |
2055 | goto out_err; | |
2056 | } | |
2057 | ||
2058 | static int ext3_rmdir (struct inode * dir, struct dentry *dentry) | |
2059 | { | |
2060 | int retval; | |
2061 | struct inode * inode; | |
2062 | struct buffer_head * bh; | |
2063 | struct ext3_dir_entry_2 * de; | |
2064 | handle_t *handle; | |
2065 | ||
2066 | /* Initialize quotas before so that eventual writes go in | |
2067 | * separate transaction */ | |
871a2931 CH |
2068 | dquot_initialize(dir); |
2069 | dquot_initialize(dentry->d_inode); | |
907f4554 | 2070 | |
1f54587b | 2071 | handle = ext3_journal_start(dir, EXT3_DELETE_TRANS_BLOCKS(dir->i_sb)); |
1da177e4 LT |
2072 | if (IS_ERR(handle)) |
2073 | return PTR_ERR(handle); | |
2074 | ||
2075 | retval = -ENOENT; | |
734711ab | 2076 | bh = ext3_find_entry(dir, &dentry->d_name, &de); |
1da177e4 LT |
2077 | if (!bh) |
2078 | goto end_rmdir; | |
2079 | ||
2080 | if (IS_DIRSYNC(dir)) | |
2081 | handle->h_sync = 1; | |
2082 | ||
2083 | inode = dentry->d_inode; | |
2084 | ||
2085 | retval = -EIO; | |
2086 | if (le32_to_cpu(de->inode) != inode->i_ino) | |
2087 | goto end_rmdir; | |
2088 | ||
2089 | retval = -ENOTEMPTY; | |
2090 | if (!empty_dir (inode)) | |
2091 | goto end_rmdir; | |
2092 | ||
2093 | retval = ext3_delete_entry(handle, dir, de, bh); | |
2094 | if (retval) | |
2095 | goto end_rmdir; | |
2096 | if (inode->i_nlink != 2) | |
2097 | ext3_warning (inode->i_sb, "ext3_rmdir", | |
2098 | "empty directory has nlink!=2 (%d)", | |
2099 | inode->i_nlink); | |
2100 | inode->i_version++; | |
ce71ec36 | 2101 | clear_nlink(inode); |
1da177e4 LT |
2102 | /* There's no need to set i_disksize: the fact that i_nlink is |
2103 | * zero will ensure that the right thing happens during any | |
2104 | * recovery. */ | |
2105 | inode->i_size = 0; | |
2106 | ext3_orphan_add(handle, inode); | |
2107 | inode->i_ctime = dir->i_ctime = dir->i_mtime = CURRENT_TIME_SEC; | |
2108 | ext3_mark_inode_dirty(handle, inode); | |
9a53c3a7 | 2109 | drop_nlink(dir); |
1da177e4 LT |
2110 | ext3_update_dx_flag(dir); |
2111 | ext3_mark_inode_dirty(handle, dir); | |
2112 | ||
2113 | end_rmdir: | |
2114 | ext3_journal_stop(handle); | |
2115 | brelse (bh); | |
2116 | return retval; | |
2117 | } | |
2118 | ||
2119 | static int ext3_unlink(struct inode * dir, struct dentry *dentry) | |
2120 | { | |
2121 | int retval; | |
2122 | struct inode * inode; | |
2123 | struct buffer_head * bh; | |
2124 | struct ext3_dir_entry_2 * de; | |
2125 | handle_t *handle; | |
2126 | ||
2127 | /* Initialize quotas before so that eventual writes go | |
2128 | * in separate transaction */ | |
871a2931 CH |
2129 | dquot_initialize(dir); |
2130 | dquot_initialize(dentry->d_inode); | |
907f4554 | 2131 | |
1f54587b | 2132 | handle = ext3_journal_start(dir, EXT3_DELETE_TRANS_BLOCKS(dir->i_sb)); |
1da177e4 LT |
2133 | if (IS_ERR(handle)) |
2134 | return PTR_ERR(handle); | |
2135 | ||
2136 | if (IS_DIRSYNC(dir)) | |
2137 | handle->h_sync = 1; | |
2138 | ||
2139 | retval = -ENOENT; | |
734711ab | 2140 | bh = ext3_find_entry(dir, &dentry->d_name, &de); |
1da177e4 LT |
2141 | if (!bh) |
2142 | goto end_unlink; | |
2143 | ||
2144 | inode = dentry->d_inode; | |
2145 | ||
2146 | retval = -EIO; | |
2147 | if (le32_to_cpu(de->inode) != inode->i_ino) | |
2148 | goto end_unlink; | |
2149 | ||
2150 | if (!inode->i_nlink) { | |
2151 | ext3_warning (inode->i_sb, "ext3_unlink", | |
2152 | "Deleting nonexistent file (%lu), %d", | |
2153 | inode->i_ino, inode->i_nlink); | |
2154 | inode->i_nlink = 1; | |
2155 | } | |
2156 | retval = ext3_delete_entry(handle, dir, de, bh); | |
2157 | if (retval) | |
2158 | goto end_unlink; | |
2159 | dir->i_ctime = dir->i_mtime = CURRENT_TIME_SEC; | |
2160 | ext3_update_dx_flag(dir); | |
2161 | ext3_mark_inode_dirty(handle, dir); | |
9a53c3a7 | 2162 | drop_nlink(inode); |
1da177e4 LT |
2163 | if (!inode->i_nlink) |
2164 | ext3_orphan_add(handle, inode); | |
2165 | inode->i_ctime = dir->i_ctime; | |
2166 | ext3_mark_inode_dirty(handle, inode); | |
2167 | retval = 0; | |
2168 | ||
2169 | end_unlink: | |
2170 | ext3_journal_stop(handle); | |
2171 | brelse (bh); | |
2172 | return retval; | |
2173 | } | |
2174 | ||
2175 | static int ext3_symlink (struct inode * dir, | |
2176 | struct dentry *dentry, const char * symname) | |
2177 | { | |
2178 | handle_t *handle; | |
2179 | struct inode * inode; | |
2180 | int l, err, retries = 0; | |
2181 | ||
2182 | l = strlen(symname)+1; | |
2183 | if (l > dir->i_sb->s_blocksize) | |
2184 | return -ENAMETOOLONG; | |
2185 | ||
871a2931 | 2186 | dquot_initialize(dir); |
907f4554 | 2187 | |
1da177e4 | 2188 | retry: |
1f54587b | 2189 | handle = ext3_journal_start(dir, EXT3_DATA_TRANS_BLOCKS(dir->i_sb) + |
e9ad5620 | 2190 | EXT3_INDEX_EXTRA_TRANS_BLOCKS + 5 + |
c459001f | 2191 | EXT3_MAXQUOTAS_INIT_BLOCKS(dir->i_sb)); |
1da177e4 LT |
2192 | if (IS_ERR(handle)) |
2193 | return PTR_ERR(handle); | |
2194 | ||
2195 | if (IS_DIRSYNC(dir)) | |
2196 | handle->h_sync = 1; | |
2197 | ||
2198 | inode = ext3_new_inode (handle, dir, S_IFLNK|S_IRWXUGO); | |
2199 | err = PTR_ERR(inode); | |
2200 | if (IS_ERR(inode)) | |
2201 | goto out_stop; | |
2202 | ||
2203 | if (l > sizeof (EXT3_I(inode)->i_data)) { | |
2204 | inode->i_op = &ext3_symlink_inode_operations; | |
2205 | ext3_set_aops(inode); | |
2206 | /* | |
2207 | * page_symlink() calls into ext3_prepare/commit_write. | |
2208 | * We have a transaction open. All is sweetness. It also sets | |
2209 | * i_size in generic_commit_write(). | |
2210 | */ | |
54566b2c | 2211 | err = __page_symlink(inode, symname, l, 1); |
1da177e4 | 2212 | if (err) { |
731b9a54 | 2213 | drop_nlink(inode); |
c38012da | 2214 | unlock_new_inode(inode); |
1da177e4 LT |
2215 | ext3_mark_inode_dirty(handle, inode); |
2216 | iput (inode); | |
2217 | goto out_stop; | |
2218 | } | |
2219 | } else { | |
2220 | inode->i_op = &ext3_fast_symlink_inode_operations; | |
2221 | memcpy((char*)&EXT3_I(inode)->i_data,symname,l); | |
2222 | inode->i_size = l-1; | |
2223 | } | |
2224 | EXT3_I(inode)->i_disksize = inode->i_size; | |
2225 | err = ext3_add_nondir(handle, dentry, inode); | |
2226 | out_stop: | |
2227 | ext3_journal_stop(handle); | |
2228 | if (err == -ENOSPC && ext3_should_retry_alloc(dir->i_sb, &retries)) | |
2229 | goto retry; | |
2230 | return err; | |
2231 | } | |
2232 | ||
2233 | static int ext3_link (struct dentry * old_dentry, | |
2234 | struct inode * dir, struct dentry *dentry) | |
2235 | { | |
2236 | handle_t *handle; | |
2237 | struct inode *inode = old_dentry->d_inode; | |
2238 | int err, retries = 0; | |
2239 | ||
2240 | if (inode->i_nlink >= EXT3_LINK_MAX) | |
2241 | return -EMLINK; | |
907f4554 | 2242 | |
871a2931 | 2243 | dquot_initialize(dir); |
907f4554 | 2244 | |
2988a774 ES |
2245 | /* |
2246 | * Return -ENOENT if we've raced with unlink and i_nlink is 0. Doing | |
2247 | * otherwise has the potential to corrupt the orphan inode list. | |
2248 | */ | |
2249 | if (inode->i_nlink == 0) | |
2250 | return -ENOENT; | |
1da177e4 LT |
2251 | |
2252 | retry: | |
1f54587b | 2253 | handle = ext3_journal_start(dir, EXT3_DATA_TRANS_BLOCKS(dir->i_sb) + |
1da177e4 LT |
2254 | EXT3_INDEX_EXTRA_TRANS_BLOCKS); |
2255 | if (IS_ERR(handle)) | |
2256 | return PTR_ERR(handle); | |
2257 | ||
2258 | if (IS_DIRSYNC(dir)) | |
2259 | handle->h_sync = 1; | |
2260 | ||
2261 | inode->i_ctime = CURRENT_TIME_SEC; | |
731b9a54 | 2262 | inc_nlink(inode); |
1da177e4 LT |
2263 | atomic_inc(&inode->i_count); |
2264 | ||
c38012da AV |
2265 | err = ext3_add_entry(handle, dentry, inode); |
2266 | if (!err) { | |
2267 | ext3_mark_inode_dirty(handle, inode); | |
2268 | d_instantiate(dentry, inode); | |
2269 | } else { | |
2270 | drop_nlink(inode); | |
2271 | iput(inode); | |
2272 | } | |
1da177e4 LT |
2273 | ext3_journal_stop(handle); |
2274 | if (err == -ENOSPC && ext3_should_retry_alloc(dir->i_sb, &retries)) | |
2275 | goto retry; | |
2276 | return err; | |
2277 | } | |
2278 | ||
2279 | #define PARENT_INO(buffer) \ | |
7c06a8dc | 2280 | (ext3_next_entry((struct ext3_dir_entry_2 *)(buffer))->inode) |
1da177e4 LT |
2281 | |
2282 | /* | |
2283 | * Anybody can rename anything with this: the permission checks are left to the | |
2284 | * higher-level routines. | |
2285 | */ | |
2286 | static int ext3_rename (struct inode * old_dir, struct dentry *old_dentry, | |
2287 | struct inode * new_dir,struct dentry *new_dentry) | |
2288 | { | |
2289 | handle_t *handle; | |
2290 | struct inode * old_inode, * new_inode; | |
2291 | struct buffer_head * old_bh, * new_bh, * dir_bh; | |
2292 | struct ext3_dir_entry_2 * old_de, * new_de; | |
e7c8f507 | 2293 | int retval, flush_file = 0; |
1da177e4 | 2294 | |
871a2931 CH |
2295 | dquot_initialize(old_dir); |
2296 | dquot_initialize(new_dir); | |
907f4554 | 2297 | |
1da177e4 LT |
2298 | old_bh = new_bh = dir_bh = NULL; |
2299 | ||
2300 | /* Initialize quotas before so that eventual writes go | |
2301 | * in separate transaction */ | |
2302 | if (new_dentry->d_inode) | |
871a2931 | 2303 | dquot_initialize(new_dentry->d_inode); |
1f54587b JK |
2304 | handle = ext3_journal_start(old_dir, 2 * |
2305 | EXT3_DATA_TRANS_BLOCKS(old_dir->i_sb) + | |
e9ad5620 | 2306 | EXT3_INDEX_EXTRA_TRANS_BLOCKS + 2); |
1da177e4 LT |
2307 | if (IS_ERR(handle)) |
2308 | return PTR_ERR(handle); | |
2309 | ||
2310 | if (IS_DIRSYNC(old_dir) || IS_DIRSYNC(new_dir)) | |
2311 | handle->h_sync = 1; | |
2312 | ||
734711ab | 2313 | old_bh = ext3_find_entry(old_dir, &old_dentry->d_name, &old_de); |
1da177e4 LT |
2314 | /* |
2315 | * Check for inode number is _not_ due to possible IO errors. | |
2316 | * We might rmdir the source, keep it as pwd of some process | |
2317 | * and merrily kill the link to whatever was created under the | |
2318 | * same name. Goodbye sticky bit ;-< | |
2319 | */ | |
2320 | old_inode = old_dentry->d_inode; | |
2321 | retval = -ENOENT; | |
2322 | if (!old_bh || le32_to_cpu(old_de->inode) != old_inode->i_ino) | |
2323 | goto end_rename; | |
2324 | ||
2325 | new_inode = new_dentry->d_inode; | |
734711ab | 2326 | new_bh = ext3_find_entry(new_dir, &new_dentry->d_name, &new_de); |
1da177e4 LT |
2327 | if (new_bh) { |
2328 | if (!new_inode) { | |
2329 | brelse (new_bh); | |
2330 | new_bh = NULL; | |
2331 | } | |
2332 | } | |
2333 | if (S_ISDIR(old_inode->i_mode)) { | |
2334 | if (new_inode) { | |
2335 | retval = -ENOTEMPTY; | |
2336 | if (!empty_dir (new_inode)) | |
2337 | goto end_rename; | |
2338 | } | |
2339 | retval = -EIO; | |
2340 | dir_bh = ext3_bread (handle, old_inode, 0, 0, &retval); | |
2341 | if (!dir_bh) | |
2342 | goto end_rename; | |
2343 | if (le32_to_cpu(PARENT_INO(dir_bh->b_data)) != old_dir->i_ino) | |
2344 | goto end_rename; | |
2345 | retval = -EMLINK; | |
2346 | if (!new_inode && new_dir!=old_dir && | |
2347 | new_dir->i_nlink >= EXT3_LINK_MAX) | |
2348 | goto end_rename; | |
2349 | } | |
2350 | if (!new_bh) { | |
2351 | retval = ext3_add_entry (handle, new_dentry, old_inode); | |
2352 | if (retval) | |
2353 | goto end_rename; | |
2354 | } else { | |
2355 | BUFFER_TRACE(new_bh, "get write access"); | |
2356 | ext3_journal_get_write_access(handle, new_bh); | |
2357 | new_de->inode = cpu_to_le32(old_inode->i_ino); | |
2358 | if (EXT3_HAS_INCOMPAT_FEATURE(new_dir->i_sb, | |
2359 | EXT3_FEATURE_INCOMPAT_FILETYPE)) | |
2360 | new_de->file_type = old_de->file_type; | |
2361 | new_dir->i_version++; | |
0b230769 JK |
2362 | new_dir->i_ctime = new_dir->i_mtime = CURRENT_TIME_SEC; |
2363 | ext3_mark_inode_dirty(handle, new_dir); | |
1da177e4 LT |
2364 | BUFFER_TRACE(new_bh, "call ext3_journal_dirty_metadata"); |
2365 | ext3_journal_dirty_metadata(handle, new_bh); | |
2366 | brelse(new_bh); | |
2367 | new_bh = NULL; | |
2368 | } | |
2369 | ||
2370 | /* | |
2371 | * Like most other Unix systems, set the ctime for inodes on a | |
2372 | * rename. | |
2373 | */ | |
2374 | old_inode->i_ctime = CURRENT_TIME_SEC; | |
2375 | ext3_mark_inode_dirty(handle, old_inode); | |
2376 | ||
2377 | /* | |
2378 | * ok, that's it | |
2379 | */ | |
2380 | if (le32_to_cpu(old_de->inode) != old_inode->i_ino || | |
2381 | old_de->name_len != old_dentry->d_name.len || | |
2382 | strncmp(old_de->name, old_dentry->d_name.name, old_de->name_len) || | |
2383 | (retval = ext3_delete_entry(handle, old_dir, | |
2384 | old_de, old_bh)) == -ENOENT) { | |
2385 | /* old_de could have moved from under us during htree split, so | |
2386 | * make sure that we are deleting the right entry. We might | |
2387 | * also be pointing to a stale entry in the unused part of | |
2388 | * old_bh so just checking inum and the name isn't enough. */ | |
2389 | struct buffer_head *old_bh2; | |
2390 | struct ext3_dir_entry_2 *old_de2; | |
2391 | ||
734711ab AV |
2392 | old_bh2 = ext3_find_entry(old_dir, &old_dentry->d_name, |
2393 | &old_de2); | |
1da177e4 LT |
2394 | if (old_bh2) { |
2395 | retval = ext3_delete_entry(handle, old_dir, | |
2396 | old_de2, old_bh2); | |
2397 | brelse(old_bh2); | |
2398 | } | |
2399 | } | |
2400 | if (retval) { | |
2401 | ext3_warning(old_dir->i_sb, "ext3_rename", | |
2402 | "Deleting old file (%lu), %d, error=%d", | |
2403 | old_dir->i_ino, old_dir->i_nlink, retval); | |
2404 | } | |
2405 | ||
2406 | if (new_inode) { | |
9a53c3a7 | 2407 | drop_nlink(new_inode); |
1da177e4 LT |
2408 | new_inode->i_ctime = CURRENT_TIME_SEC; |
2409 | } | |
2410 | old_dir->i_ctime = old_dir->i_mtime = CURRENT_TIME_SEC; | |
2411 | ext3_update_dx_flag(old_dir); | |
2412 | if (dir_bh) { | |
2413 | BUFFER_TRACE(dir_bh, "get_write_access"); | |
2414 | ext3_journal_get_write_access(handle, dir_bh); | |
2415 | PARENT_INO(dir_bh->b_data) = cpu_to_le32(new_dir->i_ino); | |
2416 | BUFFER_TRACE(dir_bh, "call ext3_journal_dirty_metadata"); | |
2417 | ext3_journal_dirty_metadata(handle, dir_bh); | |
9a53c3a7 | 2418 | drop_nlink(old_dir); |
1da177e4 | 2419 | if (new_inode) { |
9a53c3a7 | 2420 | drop_nlink(new_inode); |
1da177e4 | 2421 | } else { |
d8c76e6f | 2422 | inc_nlink(new_dir); |
1da177e4 LT |
2423 | ext3_update_dx_flag(new_dir); |
2424 | ext3_mark_inode_dirty(handle, new_dir); | |
2425 | } | |
2426 | } | |
2427 | ext3_mark_inode_dirty(handle, old_dir); | |
2428 | if (new_inode) { | |
2429 | ext3_mark_inode_dirty(handle, new_inode); | |
2430 | if (!new_inode->i_nlink) | |
2431 | ext3_orphan_add(handle, new_inode); | |
e7c8f507 TT |
2432 | if (ext3_should_writeback_data(new_inode)) |
2433 | flush_file = 1; | |
1da177e4 LT |
2434 | } |
2435 | retval = 0; | |
2436 | ||
2437 | end_rename: | |
2438 | brelse (dir_bh); | |
2439 | brelse (old_bh); | |
2440 | brelse (new_bh); | |
2441 | ext3_journal_stop(handle); | |
e7c8f507 TT |
2442 | if (retval == 0 && flush_file) |
2443 | filemap_flush(old_inode->i_mapping); | |
1da177e4 LT |
2444 | return retval; |
2445 | } | |
2446 | ||
2447 | /* | |
2448 | * directories can handle most operations... | |
2449 | */ | |
754661f1 | 2450 | const struct inode_operations ext3_dir_inode_operations = { |
1da177e4 LT |
2451 | .create = ext3_create, |
2452 | .lookup = ext3_lookup, | |
2453 | .link = ext3_link, | |
2454 | .unlink = ext3_unlink, | |
2455 | .symlink = ext3_symlink, | |
2456 | .mkdir = ext3_mkdir, | |
2457 | .rmdir = ext3_rmdir, | |
2458 | .mknod = ext3_mknod, | |
2459 | .rename = ext3_rename, | |
2460 | .setattr = ext3_setattr, | |
2461 | #ifdef CONFIG_EXT3_FS_XATTR | |
2462 | .setxattr = generic_setxattr, | |
2463 | .getxattr = generic_getxattr, | |
2464 | .listxattr = ext3_listxattr, | |
2465 | .removexattr = generic_removexattr, | |
2466 | #endif | |
1d5ccd1c | 2467 | .check_acl = ext3_check_acl, |
1da177e4 LT |
2468 | }; |
2469 | ||
754661f1 | 2470 | const struct inode_operations ext3_special_inode_operations = { |
1da177e4 LT |
2471 | .setattr = ext3_setattr, |
2472 | #ifdef CONFIG_EXT3_FS_XATTR | |
2473 | .setxattr = generic_setxattr, | |
2474 | .getxattr = generic_getxattr, | |
2475 | .listxattr = ext3_listxattr, | |
2476 | .removexattr = generic_removexattr, | |
2477 | #endif | |
1d5ccd1c | 2478 | .check_acl = ext3_check_acl, |
ae6ddcc5 | 2479 | }; |