1 // SPDX-License-Identifier: GPL-2.0
5 * Copyright (C) 1992, 1993, 1994, 1995
7 * Laboratoire MASI - Institut Blaise Pascal
8 * Universite Pierre et Marie Curie (Paris VI)
12 * linux/fs/minix/dir.c
14 * Copyright (C) 1991, 1992 Linus Torvalds
16 * ext2 directory handling functions
18 * Big-endian to little-endian byte-swapping/bitmaps by
21 * All code that works with directory layout had been switched to pagecache
26 #include <linux/buffer_head.h>
27 #include <linux/pagemap.h>
28 #include <linux/swap.h>
29 #include <linux/iversion.h>
31 typedef struct ext2_dir_entry_2 ext2_dirent;
34 * Tests against MAX_REC_LEN etc were put in place for 64k block
35 * sizes; if that is not possible on this arch, we can skip
36 * those tests and speed things up.
38 static inline unsigned ext2_rec_len_from_disk(__le16 dlen)
40 unsigned len = le16_to_cpu(dlen);
42 #if (PAGE_SIZE >= 65536)
43 if (len == EXT2_MAX_REC_LEN)
49 static inline __le16 ext2_rec_len_to_disk(unsigned len)
51 #if (PAGE_SIZE >= 65536)
53 return cpu_to_le16(EXT2_MAX_REC_LEN);
55 BUG_ON(len > (1 << 16));
57 return cpu_to_le16(len);
61 * ext2 uses block-sized chunks. Arguably, sector-sized ones would be
62 * more robust, but we have what we have
64 static inline unsigned ext2_chunk_size(struct inode *inode)
66 return inode->i_sb->s_blocksize;
70 * Return the offset into page `page_nr' of the last valid
71 * byte in that page, plus one.
74 ext2_last_byte(struct inode *inode, unsigned long page_nr)
76 unsigned last_byte = inode->i_size;
78 last_byte -= page_nr << PAGE_SHIFT;
79 if (last_byte > PAGE_SIZE)
80 last_byte = PAGE_SIZE;
84 static void ext2_commit_chunk(struct folio *folio, loff_t pos, unsigned len)
86 struct address_space *mapping = folio->mapping;
87 struct inode *dir = mapping->host;
89 inode_inc_iversion(dir);
90 block_write_end(NULL, mapping, pos, len, len, &folio->page, NULL);
92 if (pos+len > dir->i_size) {
93 i_size_write(dir, pos+len);
94 mark_inode_dirty(dir);
99 static bool ext2_check_folio(struct folio *folio, int quiet, char *kaddr)
101 struct inode *dir = folio->mapping->host;
102 struct super_block *sb = dir->i_sb;
103 unsigned chunk_size = ext2_chunk_size(dir);
104 u32 max_inumber = le32_to_cpu(EXT2_SB(sb)->s_es->s_inodes_count);
105 unsigned offs, rec_len;
106 unsigned limit = folio_size(folio);
110 if (dir->i_size < folio_pos(folio) + limit) {
111 limit = offset_in_folio(folio, dir->i_size);
112 if (limit & (chunk_size - 1))
117 for (offs = 0; offs <= limit - EXT2_DIR_REC_LEN(1); offs += rec_len) {
118 p = (ext2_dirent *)(kaddr + offs);
119 rec_len = ext2_rec_len_from_disk(p->rec_len);
121 if (unlikely(rec_len < EXT2_DIR_REC_LEN(1)))
123 if (unlikely(rec_len & 3))
125 if (unlikely(rec_len < EXT2_DIR_REC_LEN(p->name_len)))
127 if (unlikely(((offs + rec_len - 1) ^ offs) & ~(chunk_size-1)))
129 if (unlikely(le32_to_cpu(p->inode) > max_inumber))
135 folio_set_checked(folio);
138 /* Too bad, we had an error */
142 ext2_error(sb, __func__,
143 "size of directory #%lu is not a multiple "
144 "of chunk size", dir->i_ino);
147 error = "rec_len is smaller than minimal";
150 error = "unaligned directory entry";
153 error = "rec_len is too small for name_len";
156 error = "directory entry across blocks";
159 error = "inode out of bounds";
162 ext2_error(sb, __func__, "bad entry in directory #%lu: : %s - "
163 "offset=%llu, inode=%lu, rec_len=%d, name_len=%d",
164 dir->i_ino, error, folio_pos(folio) + offs,
165 (unsigned long) le32_to_cpu(p->inode),
166 rec_len, p->name_len);
170 p = (ext2_dirent *)(kaddr + offs);
171 ext2_error(sb, "ext2_check_folio",
172 "entry in directory #%lu spans the page boundary"
173 "offset=%llu, inode=%lu",
174 dir->i_ino, folio_pos(folio) + offs,
175 (unsigned long) le32_to_cpu(p->inode));
178 folio_set_error(folio);
183 * Calls to ext2_get_folio()/folio_release_kmap() must be nested according
184 * to the rules documented in kmap_local_folio()/kunmap_local().
186 * NOTE: ext2_find_entry() and ext2_dotdot() act as a call
187 * to folio_release_kmap() and should be treated as a call to
188 * folio_release_kmap() for nesting purposes.
190 static void *ext2_get_folio(struct inode *dir, unsigned long n,
191 int quiet, struct folio **foliop)
193 struct address_space *mapping = dir->i_mapping;
194 struct folio *folio = read_mapping_folio(mapping, n, NULL);
198 return ERR_CAST(folio);
199 kaddr = kmap_local_folio(folio, 0);
200 if (unlikely(!folio_test_checked(folio))) {
201 if (!ext2_check_folio(folio, quiet, kaddr))
208 folio_release_kmap(folio, kaddr);
209 return ERR_PTR(-EIO);
213 * NOTE! unlike strncmp, ext2_match returns 1 for success, 0 for failure.
215 * len <= EXT2_NAME_LEN and de != NULL are guaranteed by caller.
217 static inline int ext2_match (int len, const char * const name,
218 struct ext2_dir_entry_2 * de)
220 if (len != de->name_len)
224 return !memcmp(name, de->name, len);
228 * p is at least 6 bytes before the end of page
230 static inline ext2_dirent *ext2_next_entry(ext2_dirent *p)
232 return (ext2_dirent *)((char *)p +
233 ext2_rec_len_from_disk(p->rec_len));
236 static inline unsigned
237 ext2_validate_entry(char *base, unsigned offset, unsigned mask)
239 ext2_dirent *de = (ext2_dirent*)(base + offset);
240 ext2_dirent *p = (ext2_dirent*)(base + (offset&mask));
241 while ((char*)p < (char*)de) {
244 p = ext2_next_entry(p);
246 return offset_in_page(p);
249 static inline void ext2_set_de_type(ext2_dirent *de, struct inode *inode)
251 if (EXT2_HAS_INCOMPAT_FEATURE(inode->i_sb, EXT2_FEATURE_INCOMPAT_FILETYPE))
252 de->file_type = fs_umode_to_ftype(inode->i_mode);
258 ext2_readdir(struct file *file, struct dir_context *ctx)
260 loff_t pos = ctx->pos;
261 struct inode *inode = file_inode(file);
262 struct super_block *sb = inode->i_sb;
263 unsigned int offset = pos & ~PAGE_MASK;
264 unsigned long n = pos >> PAGE_SHIFT;
265 unsigned long npages = dir_pages(inode);
266 unsigned chunk_mask = ~(ext2_chunk_size(inode)-1);
267 bool need_revalidate = !inode_eq_iversion(inode, file->f_version);
270 if (pos > inode->i_size - EXT2_DIR_REC_LEN(1))
274 EXT2_HAS_INCOMPAT_FEATURE(sb, EXT2_FEATURE_INCOMPAT_FILETYPE);
276 for ( ; n < npages; n++, offset = 0) {
279 char *kaddr = ext2_get_folio(inode, n, 0, &folio);
283 ext2_error(sb, __func__,
286 ctx->pos += PAGE_SIZE - offset;
287 return PTR_ERR(kaddr);
289 if (unlikely(need_revalidate)) {
291 offset = ext2_validate_entry(kaddr, offset, chunk_mask);
292 ctx->pos = (n<<PAGE_SHIFT) + offset;
294 file->f_version = inode_query_iversion(inode);
295 need_revalidate = false;
297 de = (ext2_dirent *)(kaddr+offset);
298 limit = kaddr + ext2_last_byte(inode, n) - EXT2_DIR_REC_LEN(1);
299 for ( ;(char*)de <= limit; de = ext2_next_entry(de)) {
300 if (de->rec_len == 0) {
301 ext2_error(sb, __func__,
302 "zero-length directory entry");
303 folio_release_kmap(folio, de);
307 unsigned char d_type = DT_UNKNOWN;
310 d_type = fs_ftype_to_dtype(de->file_type);
312 if (!dir_emit(ctx, de->name, de->name_len,
313 le32_to_cpu(de->inode),
315 folio_release_kmap(folio, de);
319 ctx->pos += ext2_rec_len_from_disk(de->rec_len);
321 folio_release_kmap(folio, kaddr);
329 * finds an entry in the specified directory with the wanted name. It
330 * returns the page in which the entry was found (as a parameter - res_page),
331 * and the entry itself. Page is returned mapped and unlocked.
332 * Entry is guaranteed to be valid.
334 * On Success folio_release_kmap() should be called on *foliop.
336 * NOTE: Calls to ext2_get_folio()/folio_release_kmap() must be nested
337 * according to the rules documented in kmap_local_folio()/kunmap_local().
339 * ext2_find_entry() and ext2_dotdot() act as a call to ext2_get_folio()
340 * and should be treated as a call to ext2_get_folio() for nesting
343 struct ext2_dir_entry_2 *ext2_find_entry (struct inode *dir,
344 const struct qstr *child, struct folio **foliop)
346 const char *name = child->name;
347 int namelen = child->len;
348 unsigned reclen = EXT2_DIR_REC_LEN(namelen);
349 unsigned long start, n;
350 unsigned long npages = dir_pages(dir);
351 struct ext2_inode_info *ei = EXT2_I(dir);
357 start = ei->i_dir_start_lookup;
362 char *kaddr = ext2_get_folio(dir, n, 0, foliop);
364 return ERR_CAST(kaddr);
366 de = (ext2_dirent *) kaddr;
367 kaddr += ext2_last_byte(dir, n) - reclen;
368 while ((char *) de <= kaddr) {
369 if (de->rec_len == 0) {
370 ext2_error(dir->i_sb, __func__,
371 "zero-length directory entry");
372 folio_release_kmap(*foliop, de);
375 if (ext2_match(namelen, name, de))
377 de = ext2_next_entry(de);
379 folio_release_kmap(*foliop, kaddr);
383 /* next folio is past the blocks we've got */
384 if (unlikely(n > (dir->i_blocks >> (PAGE_SHIFT - 9)))) {
385 ext2_error(dir->i_sb, __func__,
386 "dir %lu size %lld exceeds block count %llu",
387 dir->i_ino, dir->i_size,
388 (unsigned long long)dir->i_blocks);
391 } while (n != start);
393 return ERR_PTR(-ENOENT);
396 ei->i_dir_start_lookup = n;
401 * Return the '..' directory entry and the page in which the entry was found
402 * (as a parameter - p).
404 * On Success folio_release_kmap() should be called on *foliop.
406 * NOTE: Calls to ext2_get_folio()/folio_release_kmap() must be nested
407 * according to the rules documented in kmap_local_folio()/kunmap_local().
409 * ext2_find_entry() and ext2_dotdot() act as a call to ext2_get_folio()
410 * and should be treated as a call to ext2_get_folio() for nesting
413 struct ext2_dir_entry_2 *ext2_dotdot(struct inode *dir, struct folio **foliop)
415 ext2_dirent *de = ext2_get_folio(dir, 0, 0, foliop);
418 return ext2_next_entry(de);
422 int ext2_inode_by_name(struct inode *dir, const struct qstr *child, ino_t *ino)
424 struct ext2_dir_entry_2 *de;
427 de = ext2_find_entry(dir, child, &folio);
431 *ino = le32_to_cpu(de->inode);
432 folio_release_kmap(folio, de);
436 static int ext2_prepare_chunk(struct folio *folio, loff_t pos, unsigned len)
438 return __block_write_begin(&folio->page, pos, len, ext2_get_block);
441 static int ext2_handle_dirsync(struct inode *dir)
445 err = filemap_write_and_wait(dir->i_mapping);
447 err = sync_inode_metadata(dir, 1);
451 int ext2_set_link(struct inode *dir, struct ext2_dir_entry_2 *de,
452 struct folio *folio, struct inode *inode, bool update_times)
454 loff_t pos = folio_pos(folio) + offset_in_folio(folio, de);
455 unsigned len = ext2_rec_len_from_disk(de->rec_len);
459 err = ext2_prepare_chunk(folio, pos, len);
464 de->inode = cpu_to_le32(inode->i_ino);
465 ext2_set_de_type(de, inode);
466 ext2_commit_chunk(folio, pos, len);
468 inode_set_mtime_to_ts(dir, inode_set_ctime_current(dir));
469 EXT2_I(dir)->i_flags &= ~EXT2_BTREE_FL;
470 mark_inode_dirty(dir);
471 return ext2_handle_dirsync(dir);
477 int ext2_add_link (struct dentry *dentry, struct inode *inode)
479 struct inode *dir = d_inode(dentry->d_parent);
480 const char *name = dentry->d_name.name;
481 int namelen = dentry->d_name.len;
482 unsigned chunk_size = ext2_chunk_size(dir);
483 unsigned reclen = EXT2_DIR_REC_LEN(namelen);
484 unsigned short rec_len, name_len;
485 struct folio *folio = NULL;
487 unsigned long npages = dir_pages(dir);
493 * We take care of directory expansion in the same loop.
494 * This code plays outside i_size, so it locks the folio
495 * to protect that region.
497 for (n = 0; n <= npages; n++) {
498 char *kaddr = ext2_get_folio(dir, n, 0, &folio);
502 return PTR_ERR(kaddr);
504 dir_end = kaddr + ext2_last_byte(dir, n);
505 de = (ext2_dirent *)kaddr;
506 kaddr += folio_size(folio) - reclen;
507 while ((char *)de <= kaddr) {
508 if ((char *)de == dir_end) {
511 rec_len = chunk_size;
512 de->rec_len = ext2_rec_len_to_disk(chunk_size);
516 if (de->rec_len == 0) {
517 ext2_error(dir->i_sb, __func__,
518 "zero-length directory entry");
523 if (ext2_match (namelen, name, de))
525 name_len = EXT2_DIR_REC_LEN(de->name_len);
526 rec_len = ext2_rec_len_from_disk(de->rec_len);
527 if (!de->inode && rec_len >= reclen)
529 if (rec_len >= name_len + reclen)
531 de = (ext2_dirent *) ((char *) de + rec_len);
534 folio_release_kmap(folio, kaddr);
540 pos = folio_pos(folio) + offset_in_folio(folio, de);
541 err = ext2_prepare_chunk(folio, pos, rec_len);
545 ext2_dirent *de1 = (ext2_dirent *) ((char *) de + name_len);
546 de1->rec_len = ext2_rec_len_to_disk(rec_len - name_len);
547 de->rec_len = ext2_rec_len_to_disk(name_len);
550 de->name_len = namelen;
551 memcpy(de->name, name, namelen);
552 de->inode = cpu_to_le32(inode->i_ino);
553 ext2_set_de_type (de, inode);
554 ext2_commit_chunk(folio, pos, rec_len);
555 inode_set_mtime_to_ts(dir, inode_set_ctime_current(dir));
556 EXT2_I(dir)->i_flags &= ~EXT2_BTREE_FL;
557 mark_inode_dirty(dir);
558 err = ext2_handle_dirsync(dir);
561 folio_release_kmap(folio, de);
569 * ext2_delete_entry deletes a directory entry by merging it with the
570 * previous entry. Page is up-to-date.
572 int ext2_delete_entry(struct ext2_dir_entry_2 *dir, struct folio *folio)
574 struct inode *inode = folio->mapping->host;
578 ext2_dirent *de, *pde = NULL;
581 from = offset_in_folio(folio, dir);
582 to = from + ext2_rec_len_from_disk(dir->rec_len);
583 kaddr = (char *)dir - from;
584 from &= ~(ext2_chunk_size(inode)-1);
585 de = (ext2_dirent *)(kaddr + from);
587 while ((char*)de < (char*)dir) {
588 if (de->rec_len == 0) {
589 ext2_error(inode->i_sb, __func__,
590 "zero-length directory entry");
594 de = ext2_next_entry(de);
597 from = offset_in_folio(folio, pde);
598 pos = folio_pos(folio) + from;
600 err = ext2_prepare_chunk(folio, pos, to - from);
606 pde->rec_len = ext2_rec_len_to_disk(to - from);
608 ext2_commit_chunk(folio, pos, to - from);
609 inode_set_mtime_to_ts(inode, inode_set_ctime_current(inode));
610 EXT2_I(inode)->i_flags &= ~EXT2_BTREE_FL;
611 mark_inode_dirty(inode);
612 return ext2_handle_dirsync(inode);
616 * Set the first fragment of directory.
618 int ext2_make_empty(struct inode *inode, struct inode *parent)
620 struct folio *folio = filemap_grab_folio(inode->i_mapping, 0);
621 unsigned chunk_size = ext2_chunk_size(inode);
622 struct ext2_dir_entry_2 * de;
627 return PTR_ERR(folio);
629 err = ext2_prepare_chunk(folio, 0, chunk_size);
634 kaddr = kmap_local_folio(folio, 0);
635 memset(kaddr, 0, chunk_size);
636 de = (struct ext2_dir_entry_2 *)kaddr;
638 de->rec_len = ext2_rec_len_to_disk(EXT2_DIR_REC_LEN(1));
639 memcpy (de->name, ".\0\0", 4);
640 de->inode = cpu_to_le32(inode->i_ino);
641 ext2_set_de_type (de, inode);
643 de = (struct ext2_dir_entry_2 *)(kaddr + EXT2_DIR_REC_LEN(1));
645 de->rec_len = ext2_rec_len_to_disk(chunk_size - EXT2_DIR_REC_LEN(1));
646 de->inode = cpu_to_le32(parent->i_ino);
647 memcpy (de->name, "..\0", 4);
648 ext2_set_de_type (de, inode);
650 ext2_commit_chunk(folio, 0, chunk_size);
651 err = ext2_handle_dirsync(inode);
658 * routine to check that the specified directory is empty (for rmdir)
660 int ext2_empty_dir(struct inode *inode)
664 unsigned long i, npages = dir_pages(inode);
666 for (i = 0; i < npages; i++) {
669 kaddr = ext2_get_folio(inode, i, 0, &folio);
673 de = (ext2_dirent *)kaddr;
674 kaddr += ext2_last_byte(inode, i) - EXT2_DIR_REC_LEN(1);
676 while ((char *)de <= kaddr) {
677 if (de->rec_len == 0) {
678 ext2_error(inode->i_sb, __func__,
679 "zero-length directory entry");
680 printk("kaddr=%p, de=%p\n", kaddr, de);
683 if (de->inode != 0) {
684 /* check for . and .. */
685 if (de->name[0] != '.')
687 if (de->name_len > 2)
689 if (de->name_len < 2) {
691 cpu_to_le32(inode->i_ino))
693 } else if (de->name[1] != '.')
696 de = ext2_next_entry(de);
698 folio_release_kmap(folio, kaddr);
703 folio_release_kmap(folio, kaddr);
707 const struct file_operations ext2_dir_operations = {
708 .llseek = generic_file_llseek,
709 .read = generic_read_dir,
710 .iterate_shared = ext2_readdir,
711 .unlocked_ioctl = ext2_ioctl,
713 .compat_ioctl = ext2_compat_ioctl,