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