1 // SPDX-License-Identifier: GPL-2.0
2 /*
3 * linux/fs/ext4/dir.c
4 *
5 * Copyright (C) 1992, 1993, 1994, 1995
6 * Remy Card (card@masi.ibp.fr)
7 * Laboratoire MASI - Institut Blaise Pascal
8 * Universite Pierre et Marie Curie (Paris VI)
9 *
10 * from
11 *
12 * linux/fs/minix/dir.c
13 *
14 * Copyright (C) 1991, 1992 Linus Torvalds
15 *
16 * ext4 directory handling functions
17 *
18 * Big-endian to little-endian byte-swapping/bitmaps by
19 * David S. Miller (davem@caip.rutgers.edu), 1995
20 *
21 * Hash Tree Directory indexing (c) 2001 Daniel Phillips
22 *
23 */
24
25 #include <linux/fs.h>
26 #include <linux/buffer_head.h>
27 #include <linux/slab.h>
28 #include <linux/iversion.h>
29 #include <linux/unicode.h>
30 #include "ext4.h"
31 #include "xattr.h"
32
33 static int ext4_dx_readdir(struct file *, struct dir_context *);
34
35 /**
36 * is_dx_dir() - check if a directory is using htree indexing
37 * @inode: directory inode
38 *
39 * Check if the given dir-inode refers to an htree-indexed directory
40 * (or a directory which could potentially get converted to use htree
41 * indexing).
42 *
43 * Return 1 if it is a dx dir, 0 if not
44 */
is_dx_dir(struct inode * inode)45 static int is_dx_dir(struct inode *inode)
46 {
47 struct super_block *sb = inode->i_sb;
48
49 if (ext4_has_feature_dir_index(inode->i_sb) &&
50 ((ext4_test_inode_flag(inode, EXT4_INODE_INDEX)) ||
51 ((inode->i_size >> sb->s_blocksize_bits) == 1) ||
52 ext4_has_inline_data(inode)))
53 return 1;
54
55 return 0;
56 }
57
is_fake_dir_entry(struct ext4_dir_entry_2 * de)58 static bool is_fake_dir_entry(struct ext4_dir_entry_2 *de)
59 {
60 /* Check if . or .. , or skip if namelen is 0 */
61 if ((de->name_len > 0) && (de->name_len <= 2) && (de->name[0] == '.') &&
62 (de->name[1] == '.' || de->name[1] == '\0'))
63 return true;
64 /* Check if this is a csum entry */
65 if (de->file_type == EXT4_FT_DIR_CSUM)
66 return true;
67 return false;
68 }
69
70 /*
71 * Return 0 if the directory entry is OK, and 1 if there is a problem
72 *
73 * Note: this is the opposite of what ext2 and ext3 historically returned...
74 *
75 * bh passed here can be an inode block or a dir data block, depending
76 * on the inode inline data flag.
77 */
__ext4_check_dir_entry(const char * function,unsigned int line,struct inode * dir,struct file * filp,struct ext4_dir_entry_2 * de,struct buffer_head * bh,char * buf,int size,unsigned int offset)78 int __ext4_check_dir_entry(const char *function, unsigned int line,
79 struct inode *dir, struct file *filp,
80 struct ext4_dir_entry_2 *de,
81 struct buffer_head *bh, char *buf, int size,
82 unsigned int offset)
83 {
84 const char *error_msg = NULL;
85 const int rlen = ext4_rec_len_from_disk(de->rec_len,
86 dir->i_sb->s_blocksize);
87 const int next_offset = ((char *) de - buf) + rlen;
88 bool fake = is_fake_dir_entry(de);
89 bool has_csum = ext4_has_metadata_csum(dir->i_sb);
90
91 if (unlikely(rlen < ext4_dir_rec_len(1, fake ? NULL : dir)))
92 error_msg = "rec_len is smaller than minimal";
93 else if (unlikely(rlen % 4 != 0))
94 error_msg = "rec_len % 4 != 0";
95 else if (unlikely(rlen < ext4_dir_rec_len(de->name_len,
96 fake ? NULL : dir)))
97 error_msg = "rec_len is too small for name_len";
98 else if (unlikely(((char *) de - buf) + rlen > size))
99 error_msg = "directory entry overrun";
100 else if (unlikely(next_offset > size - ext4_dir_rec_len(1,
101 has_csum ? NULL : dir) &&
102 next_offset != size))
103 error_msg = "directory entry too close to block end";
104 else if (unlikely(le32_to_cpu(de->inode) >
105 le32_to_cpu(EXT4_SB(dir->i_sb)->s_es->s_inodes_count)))
106 error_msg = "inode out of bounds";
107 else
108 return 0;
109
110 if (filp)
111 ext4_error_file(filp, function, line, bh->b_blocknr,
112 "bad entry in directory: %s - offset=%u, "
113 "inode=%u, rec_len=%d, size=%d fake=%d",
114 error_msg, offset, le32_to_cpu(de->inode),
115 rlen, size, fake);
116 else
117 ext4_error_inode(dir, function, line, bh->b_blocknr,
118 "bad entry in directory: %s - offset=%u, "
119 "inode=%u, rec_len=%d, size=%d fake=%d",
120 error_msg, offset, le32_to_cpu(de->inode),
121 rlen, size, fake);
122
123 return 1;
124 }
125
ext4_readdir(struct file * file,struct dir_context * ctx)126 static int ext4_readdir(struct file *file, struct dir_context *ctx)
127 {
128 unsigned int offset;
129 int i;
130 struct ext4_dir_entry_2 *de;
131 int err;
132 struct inode *inode = file_inode(file);
133 struct super_block *sb = inode->i_sb;
134 struct buffer_head *bh = NULL;
135 struct fscrypt_str fstr = FSTR_INIT(NULL, 0);
136
137 if (IS_ENCRYPTED(inode)) {
138 err = fscrypt_get_encryption_info(inode);
139 if (err)
140 return err;
141 }
142
143 if (is_dx_dir(inode)) {
144 err = ext4_dx_readdir(file, ctx);
145 if (err != ERR_BAD_DX_DIR) {
146 return err;
147 }
148 /* Can we just clear INDEX flag to ignore htree information? */
149 if (!ext4_has_metadata_csum(sb)) {
150 /*
151 * We don't set the inode dirty flag since it's not
152 * critical that it gets flushed back to the disk.
153 */
154 ext4_clear_inode_flag(inode, EXT4_INODE_INDEX);
155 }
156 }
157
158 if (ext4_has_inline_data(inode)) {
159 int has_inline_data = 1;
160 err = ext4_read_inline_dir(file, ctx,
161 &has_inline_data);
162 if (has_inline_data)
163 return err;
164 }
165
166 if (IS_ENCRYPTED(inode)) {
167 err = fscrypt_fname_alloc_buffer(inode, EXT4_NAME_LEN, &fstr);
168 if (err < 0)
169 return err;
170 }
171
172 while (ctx->pos < inode->i_size) {
173 struct ext4_map_blocks map;
174
175 if (fatal_signal_pending(current)) {
176 err = -ERESTARTSYS;
177 goto errout;
178 }
179 cond_resched();
180 offset = ctx->pos & (sb->s_blocksize - 1);
181 map.m_lblk = ctx->pos >> EXT4_BLOCK_SIZE_BITS(sb);
182 map.m_len = 1;
183 err = ext4_map_blocks(NULL, inode, &map, 0);
184 if (err == 0) {
185 /* m_len should never be zero but let's avoid
186 * an infinite loop if it somehow is */
187 if (map.m_len == 0)
188 map.m_len = 1;
189 ctx->pos += map.m_len * sb->s_blocksize;
190 continue;
191 }
192 if (err > 0) {
193 pgoff_t index = map.m_pblk >>
194 (PAGE_SHIFT - inode->i_blkbits);
195 if (!ra_has_index(&file->f_ra, index))
196 page_cache_sync_readahead(
197 sb->s_bdev->bd_inode->i_mapping,
198 &file->f_ra, file,
199 index, 1);
200 file->f_ra.prev_pos = (loff_t)index << PAGE_SHIFT;
201 bh = ext4_bread(NULL, inode, map.m_lblk, 0);
202 if (IS_ERR(bh)) {
203 err = PTR_ERR(bh);
204 bh = NULL;
205 goto errout;
206 }
207 }
208
209 if (!bh) {
210 /* corrupt size? Maybe no more blocks to read */
211 if (ctx->pos > inode->i_blocks << 9)
212 break;
213 ctx->pos += sb->s_blocksize - offset;
214 continue;
215 }
216
217 /* Check the checksum */
218 if (!buffer_verified(bh) &&
219 !ext4_dirblock_csum_verify(inode, bh)) {
220 EXT4_ERROR_FILE(file, 0, "directory fails checksum "
221 "at offset %llu",
222 (unsigned long long)ctx->pos);
223 ctx->pos += sb->s_blocksize - offset;
224 brelse(bh);
225 bh = NULL;
226 continue;
227 }
228 set_buffer_verified(bh);
229
230 /* If the dir block has changed since the last call to
231 * readdir(2), then we might be pointing to an invalid
232 * dirent right now. Scan from the start of the block
233 * to make sure. */
234 if (!inode_eq_iversion(inode, file->f_version)) {
235 for (i = 0; i < sb->s_blocksize && i < offset; ) {
236 de = (struct ext4_dir_entry_2 *)
237 (bh->b_data + i);
238 /* It's too expensive to do a full
239 * dirent test each time round this
240 * loop, but we do have to test at
241 * least that it is non-zero. A
242 * failure will be detected in the
243 * dirent test below. */
244 if (ext4_rec_len_from_disk(de->rec_len,
245 sb->s_blocksize) < ext4_dir_rec_len(1,
246 inode))
247 break;
248 i += ext4_rec_len_from_disk(de->rec_len,
249 sb->s_blocksize);
250 }
251 offset = i;
252 ctx->pos = (ctx->pos & ~(sb->s_blocksize - 1))
253 | offset;
254 file->f_version = inode_query_iversion(inode);
255 }
256
257 while (ctx->pos < inode->i_size
258 && offset < sb->s_blocksize) {
259 de = (struct ext4_dir_entry_2 *) (bh->b_data + offset);
260 if (ext4_check_dir_entry(inode, file, de, bh,
261 bh->b_data, bh->b_size,
262 offset)) {
263 /*
264 * On error, skip to the next block
265 */
266 ctx->pos = (ctx->pos |
267 (sb->s_blocksize - 1)) + 1;
268 break;
269 }
270 offset += ext4_rec_len_from_disk(de->rec_len,
271 sb->s_blocksize);
272 if (le32_to_cpu(de->inode)) {
273 if (!IS_ENCRYPTED(inode)) {
274 if (!dir_emit(ctx, de->name,
275 de->name_len,
276 le32_to_cpu(de->inode),
277 get_dtype(sb, de->file_type)))
278 goto done;
279 } else {
280 int save_len = fstr.len;
281 struct fscrypt_str de_name =
282 FSTR_INIT(de->name,
283 de->name_len);
284
285 /* Directory is encrypted */
286 err = fscrypt_fname_disk_to_usr(inode,
287 EXT4_DIRENT_HASH(de),
288 EXT4_DIRENT_MINOR_HASH(de),
289 &de_name, &fstr);
290 de_name = fstr;
291 fstr.len = save_len;
292 if (err)
293 goto errout;
294 if (!dir_emit(ctx,
295 de_name.name, de_name.len,
296 le32_to_cpu(de->inode),
297 get_dtype(sb, de->file_type)))
298 goto done;
299 }
300 }
301 ctx->pos += ext4_rec_len_from_disk(de->rec_len,
302 sb->s_blocksize);
303 }
304 if ((ctx->pos < inode->i_size) && !dir_relax_shared(inode))
305 goto done;
306 brelse(bh);
307 bh = NULL;
308 offset = 0;
309 }
310 done:
311 err = 0;
312 errout:
313 fscrypt_fname_free_buffer(&fstr);
314 brelse(bh);
315 return err;
316 }
317
is_32bit_api(void)318 static inline int is_32bit_api(void)
319 {
320 #ifdef CONFIG_COMPAT
321 return in_compat_syscall();
322 #else
323 return (BITS_PER_LONG == 32);
324 #endif
325 }
326
327 /*
328 * These functions convert from the major/minor hash to an f_pos
329 * value for dx directories
330 *
331 * Upper layer (for example NFS) should specify FMODE_32BITHASH or
332 * FMODE_64BITHASH explicitly. On the other hand, we allow ext4 to be mounted
333 * directly on both 32-bit and 64-bit nodes, under such case, neither
334 * FMODE_32BITHASH nor FMODE_64BITHASH is specified.
335 */
hash2pos(struct file * filp,__u32 major,__u32 minor)336 static inline loff_t hash2pos(struct file *filp, __u32 major, __u32 minor)
337 {
338 if ((filp->f_mode & FMODE_32BITHASH) ||
339 (!(filp->f_mode & FMODE_64BITHASH) && is_32bit_api()))
340 return major >> 1;
341 else
342 return ((__u64)(major >> 1) << 32) | (__u64)minor;
343 }
344
pos2maj_hash(struct file * filp,loff_t pos)345 static inline __u32 pos2maj_hash(struct file *filp, loff_t pos)
346 {
347 if ((filp->f_mode & FMODE_32BITHASH) ||
348 (!(filp->f_mode & FMODE_64BITHASH) && is_32bit_api()))
349 return (pos << 1) & 0xffffffff;
350 else
351 return ((pos >> 32) << 1) & 0xffffffff;
352 }
353
pos2min_hash(struct file * filp,loff_t pos)354 static inline __u32 pos2min_hash(struct file *filp, loff_t pos)
355 {
356 if ((filp->f_mode & FMODE_32BITHASH) ||
357 (!(filp->f_mode & FMODE_64BITHASH) && is_32bit_api()))
358 return 0;
359 else
360 return pos & 0xffffffff;
361 }
362
363 /*
364 * Return 32- or 64-bit end-of-file for dx directories
365 */
ext4_get_htree_eof(struct file * filp)366 static inline loff_t ext4_get_htree_eof(struct file *filp)
367 {
368 if ((filp->f_mode & FMODE_32BITHASH) ||
369 (!(filp->f_mode & FMODE_64BITHASH) && is_32bit_api()))
370 return EXT4_HTREE_EOF_32BIT;
371 else
372 return EXT4_HTREE_EOF_64BIT;
373 }
374
375
376 /*
377 * ext4_dir_llseek() calls generic_file_llseek_size to handle htree
378 * directories, where the "offset" is in terms of the filename hash
379 * value instead of the byte offset.
380 *
381 * Because we may return a 64-bit hash that is well beyond offset limits,
382 * we need to pass the max hash as the maximum allowable offset in
383 * the htree directory case.
384 *
385 * For non-htree, ext4_llseek already chooses the proper max offset.
386 */
ext4_dir_llseek(struct file * file,loff_t offset,int whence)387 static loff_t ext4_dir_llseek(struct file *file, loff_t offset, int whence)
388 {
389 struct inode *inode = file->f_mapping->host;
390 int dx_dir = is_dx_dir(inode);
391 loff_t ret, htree_max = ext4_get_htree_eof(file);
392
393 if (likely(dx_dir))
394 ret = generic_file_llseek_size(file, offset, whence,
395 htree_max, htree_max);
396 else
397 ret = ext4_llseek(file, offset, whence);
398 file->f_version = inode_peek_iversion(inode) - 1;
399 return ret;
400 }
401
402 /*
403 * This structure holds the nodes of the red-black tree used to store
404 * the directory entry in hash order.
405 */
406 struct fname {
407 __u32 hash;
408 __u32 minor_hash;
409 struct rb_node rb_hash;
410 struct fname *next;
411 __u32 inode;
412 __u8 name_len;
413 __u8 file_type;
414 char name[0];
415 };
416
417 /*
418 * This functoin implements a non-recursive way of freeing all of the
419 * nodes in the red-black tree.
420 */
free_rb_tree_fname(struct rb_root * root)421 static void free_rb_tree_fname(struct rb_root *root)
422 {
423 struct fname *fname, *next;
424
425 rbtree_postorder_for_each_entry_safe(fname, next, root, rb_hash)
426 while (fname) {
427 struct fname *old = fname;
428 fname = fname->next;
429 kfree(old);
430 }
431
432 *root = RB_ROOT;
433 }
434
435
ext4_htree_create_dir_info(struct file * filp,loff_t pos)436 static struct dir_private_info *ext4_htree_create_dir_info(struct file *filp,
437 loff_t pos)
438 {
439 struct dir_private_info *p;
440
441 p = kzalloc(sizeof(*p), GFP_KERNEL);
442 if (!p)
443 return NULL;
444 p->curr_hash = pos2maj_hash(filp, pos);
445 p->curr_minor_hash = pos2min_hash(filp, pos);
446 return p;
447 }
448
ext4_htree_free_dir_info(struct dir_private_info * p)449 void ext4_htree_free_dir_info(struct dir_private_info *p)
450 {
451 free_rb_tree_fname(&p->root);
452 kfree(p);
453 }
454
455 /*
456 * Given a directory entry, enter it into the fname rb tree.
457 *
458 * When filename encryption is enabled, the dirent will hold the
459 * encrypted filename, while the htree will hold decrypted filename.
460 * The decrypted filename is passed in via ent_name. parameter.
461 */
ext4_htree_store_dirent(struct file * dir_file,__u32 hash,__u32 minor_hash,struct ext4_dir_entry_2 * dirent,struct fscrypt_str * ent_name)462 int ext4_htree_store_dirent(struct file *dir_file, __u32 hash,
463 __u32 minor_hash,
464 struct ext4_dir_entry_2 *dirent,
465 struct fscrypt_str *ent_name)
466 {
467 struct rb_node **p, *parent = NULL;
468 struct fname *fname, *new_fn;
469 struct dir_private_info *info;
470 int len;
471
472 info = dir_file->private_data;
473 p = &info->root.rb_node;
474
475 /* Create and allocate the fname structure */
476 len = sizeof(struct fname) + ent_name->len + 1;
477 new_fn = kzalloc(len, GFP_KERNEL);
478 if (!new_fn)
479 return -ENOMEM;
480 new_fn->hash = hash;
481 new_fn->minor_hash = minor_hash;
482 new_fn->inode = le32_to_cpu(dirent->inode);
483 new_fn->name_len = ent_name->len;
484 new_fn->file_type = dirent->file_type;
485 memcpy(new_fn->name, ent_name->name, ent_name->len);
486 new_fn->name[ent_name->len] = 0;
487
488 while (*p) {
489 parent = *p;
490 fname = rb_entry(parent, struct fname, rb_hash);
491
492 /*
493 * If the hash and minor hash match up, then we put
494 * them on a linked list. This rarely happens...
495 */
496 if ((new_fn->hash == fname->hash) &&
497 (new_fn->minor_hash == fname->minor_hash)) {
498 new_fn->next = fname->next;
499 fname->next = new_fn;
500 return 0;
501 }
502
503 if (new_fn->hash < fname->hash)
504 p = &(*p)->rb_left;
505 else if (new_fn->hash > fname->hash)
506 p = &(*p)->rb_right;
507 else if (new_fn->minor_hash < fname->minor_hash)
508 p = &(*p)->rb_left;
509 else /* if (new_fn->minor_hash > fname->minor_hash) */
510 p = &(*p)->rb_right;
511 }
512
513 rb_link_node(&new_fn->rb_hash, parent, p);
514 rb_insert_color(&new_fn->rb_hash, &info->root);
515 return 0;
516 }
517
518
519
520 /*
521 * This is a helper function for ext4_dx_readdir. It calls filldir
522 * for all entres on the fname linked list. (Normally there is only
523 * one entry on the linked list, unless there are 62 bit hash collisions.)
524 */
call_filldir(struct file * file,struct dir_context * ctx,struct fname * fname)525 static int call_filldir(struct file *file, struct dir_context *ctx,
526 struct fname *fname)
527 {
528 struct dir_private_info *info = file->private_data;
529 struct inode *inode = file_inode(file);
530 struct super_block *sb = inode->i_sb;
531
532 if (!fname) {
533 ext4_msg(sb, KERN_ERR, "%s:%d: inode #%lu: comm %s: "
534 "called with null fname?!?", __func__, __LINE__,
535 inode->i_ino, current->comm);
536 return 0;
537 }
538 ctx->pos = hash2pos(file, fname->hash, fname->minor_hash);
539 while (fname) {
540 if (!dir_emit(ctx, fname->name,
541 fname->name_len,
542 fname->inode,
543 get_dtype(sb, fname->file_type))) {
544 info->extra_fname = fname;
545 return 1;
546 }
547 fname = fname->next;
548 }
549 return 0;
550 }
551
ext4_dx_readdir(struct file * file,struct dir_context * ctx)552 static int ext4_dx_readdir(struct file *file, struct dir_context *ctx)
553 {
554 struct dir_private_info *info = file->private_data;
555 struct inode *inode = file_inode(file);
556 struct fname *fname;
557 int ret = 0;
558
559 if (!info) {
560 info = ext4_htree_create_dir_info(file, ctx->pos);
561 if (!info)
562 return -ENOMEM;
563 file->private_data = info;
564 }
565
566 if (ctx->pos == ext4_get_htree_eof(file))
567 return 0; /* EOF */
568
569 /* Some one has messed with f_pos; reset the world */
570 if (info->last_pos != ctx->pos) {
571 free_rb_tree_fname(&info->root);
572 info->curr_node = NULL;
573 info->extra_fname = NULL;
574 info->curr_hash = pos2maj_hash(file, ctx->pos);
575 info->curr_minor_hash = pos2min_hash(file, ctx->pos);
576 }
577
578 /*
579 * If there are any leftover names on the hash collision
580 * chain, return them first.
581 */
582 if (info->extra_fname) {
583 if (call_filldir(file, ctx, info->extra_fname))
584 goto finished;
585 info->extra_fname = NULL;
586 goto next_node;
587 } else if (!info->curr_node)
588 info->curr_node = rb_first(&info->root);
589
590 while (1) {
591 /*
592 * Fill the rbtree if we have no more entries,
593 * or the inode has changed since we last read in the
594 * cached entries.
595 */
596 if ((!info->curr_node) ||
597 !inode_eq_iversion(inode, file->f_version)) {
598 info->curr_node = NULL;
599 free_rb_tree_fname(&info->root);
600 file->f_version = inode_query_iversion(inode);
601 ret = ext4_htree_fill_tree(file, info->curr_hash,
602 info->curr_minor_hash,
603 &info->next_hash);
604 if (ret < 0)
605 goto finished;
606 if (ret == 0) {
607 ctx->pos = ext4_get_htree_eof(file);
608 break;
609 }
610 info->curr_node = rb_first(&info->root);
611 }
612
613 fname = rb_entry(info->curr_node, struct fname, rb_hash);
614 info->curr_hash = fname->hash;
615 info->curr_minor_hash = fname->minor_hash;
616 if (call_filldir(file, ctx, fname))
617 break;
618 next_node:
619 info->curr_node = rb_next(info->curr_node);
620 if (info->curr_node) {
621 fname = rb_entry(info->curr_node, struct fname,
622 rb_hash);
623 info->curr_hash = fname->hash;
624 info->curr_minor_hash = fname->minor_hash;
625 } else {
626 if (info->next_hash == ~0) {
627 ctx->pos = ext4_get_htree_eof(file);
628 break;
629 }
630 info->curr_hash = info->next_hash;
631 info->curr_minor_hash = 0;
632 }
633 }
634 finished:
635 info->last_pos = ctx->pos;
636 return ret < 0 ? ret : 0;
637 }
638
ext4_dir_open(struct inode * inode,struct file * filp)639 static int ext4_dir_open(struct inode * inode, struct file * filp)
640 {
641 if (IS_ENCRYPTED(inode))
642 return fscrypt_get_encryption_info(inode) ? -EACCES : 0;
643 return 0;
644 }
645
ext4_release_dir(struct inode * inode,struct file * filp)646 static int ext4_release_dir(struct inode *inode, struct file *filp)
647 {
648 if (filp->private_data)
649 ext4_htree_free_dir_info(filp->private_data);
650
651 return 0;
652 }
653
ext4_check_all_de(struct inode * dir,struct buffer_head * bh,void * buf,int buf_size)654 int ext4_check_all_de(struct inode *dir, struct buffer_head *bh, void *buf,
655 int buf_size)
656 {
657 struct ext4_dir_entry_2 *de;
658 int rlen;
659 unsigned int offset = 0;
660 char *top;
661
662 de = (struct ext4_dir_entry_2 *)buf;
663 top = buf + buf_size;
664 while ((char *) de < top) {
665 if (ext4_check_dir_entry(dir, NULL, de, bh,
666 buf, buf_size, offset))
667 return -EFSCORRUPTED;
668 rlen = ext4_rec_len_from_disk(de->rec_len, buf_size);
669 de = (struct ext4_dir_entry_2 *)((char *)de + rlen);
670 offset += rlen;
671 }
672 if ((char *) de > top)
673 return -EFSCORRUPTED;
674
675 return 0;
676 }
677
678 const struct file_operations ext4_dir_operations = {
679 .llseek = ext4_dir_llseek,
680 .read = generic_read_dir,
681 .iterate_shared = ext4_readdir,
682 .unlocked_ioctl = ext4_ioctl,
683 #ifdef CONFIG_COMPAT
684 .compat_ioctl = ext4_compat_ioctl,
685 #endif
686 .fsync = ext4_sync_file,
687 .open = ext4_dir_open,
688 .release = ext4_release_dir,
689 };
690