Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2000 by Hans Reiser, licensing governed by reiserfs/README |
| 3 | */ |
| 4 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | #include <linux/string.h> |
| 6 | #include <linux/errno.h> |
| 7 | #include <linux/fs.h> |
Al Viro | f466c6f | 2012-03-17 01:16:43 -0400 | [diff] [blame] | 8 | #include "reiserfs.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | #include <linux/stat.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | #include <linux/buffer_head.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 11 | #include <linux/slab.h> |
Fabian Frederick | 1709399 | 2014-08-08 14:21:12 -0700 | [diff] [blame] | 12 | #include <linux/uaccess.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | |
David Woodhouse | 5a1b639 | 2007-05-23 13:57:52 -0700 | [diff] [blame] | 14 | extern const struct reiserfs_key MIN_KEY; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | |
Al Viro | 4acf381 | 2013-05-17 22:42:17 -0400 | [diff] [blame] | 16 | static int reiserfs_readdir(struct file *, struct dir_context *); |
Josef Bacik | 02c24a8 | 2011-07-16 20:44:56 -0400 | [diff] [blame] | 17 | static int reiserfs_dir_fsync(struct file *filp, loff_t start, loff_t end, |
| 18 | int datasync); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | |
Arjan van de Ven | 4b6f5d2 | 2006-03-28 01:56:42 -0800 | [diff] [blame] | 20 | const struct file_operations reiserfs_dir_operations = { |
jan Blunck | ca57272 | 2010-05-26 14:44:53 -0700 | [diff] [blame] | 21 | .llseek = generic_file_llseek, |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 22 | .read = generic_read_dir, |
Al Viro | 4acf381 | 2013-05-17 22:42:17 -0400 | [diff] [blame] | 23 | .iterate = reiserfs_readdir, |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 24 | .fsync = reiserfs_dir_fsync, |
Frederic Weisbecker | 205cb37 | 2009-10-14 23:22:17 +0200 | [diff] [blame] | 25 | .unlocked_ioctl = reiserfs_ioctl, |
David Howells | 52b499c | 2006-08-29 19:06:18 +0100 | [diff] [blame] | 26 | #ifdef CONFIG_COMPAT |
| 27 | .compat_ioctl = reiserfs_compat_ioctl, |
| 28 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | }; |
| 30 | |
Josef Bacik | 02c24a8 | 2011-07-16 20:44:56 -0400 | [diff] [blame] | 31 | static int reiserfs_dir_fsync(struct file *filp, loff_t start, loff_t end, |
| 32 | int datasync) |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 33 | { |
Christoph Hellwig | 7ea8085 | 2010-05-26 17:53:25 +0200 | [diff] [blame] | 34 | struct inode *inode = filp->f_mapping->host; |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 35 | int err; |
Josef Bacik | 02c24a8 | 2011-07-16 20:44:56 -0400 | [diff] [blame] | 36 | |
| 37 | err = filemap_write_and_wait_range(inode->i_mapping, start, end); |
| 38 | if (err) |
| 39 | return err; |
| 40 | |
| 41 | mutex_lock(&inode->i_mutex); |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 42 | reiserfs_write_lock(inode->i_sb); |
| 43 | err = reiserfs_commit_for_inode(inode); |
| 44 | reiserfs_write_unlock(inode->i_sb); |
Josef Bacik | 02c24a8 | 2011-07-16 20:44:56 -0400 | [diff] [blame] | 45 | mutex_unlock(&inode->i_mutex); |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 46 | if (err < 0) |
| 47 | return err; |
| 48 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | } |
| 50 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | #define store_ih(where,what) copy_item_head (where, what) |
| 52 | |
Al Viro | 99ce416 | 2013-05-17 22:45:29 -0400 | [diff] [blame] | 53 | static inline bool is_privroot_deh(struct inode *dir, struct reiserfs_de_head *deh) |
Jeff Mahoney | 677c9b2 | 2009-05-05 15:30:17 -0400 | [diff] [blame] | 54 | { |
Al Viro | 99ce416 | 2013-05-17 22:45:29 -0400 | [diff] [blame] | 55 | struct dentry *privroot = REISERFS_SB(dir->i_sb)->priv_root; |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 56 | return (d_really_is_positive(privroot) && |
| 57 | deh->deh_objectid == INODE_PKEY(d_inode(privroot))->k_objectid); |
Jeff Mahoney | 677c9b2 | 2009-05-05 15:30:17 -0400 | [diff] [blame] | 58 | } |
| 59 | |
Al Viro | cd62cda | 2013-05-17 22:58:58 -0400 | [diff] [blame] | 60 | int reiserfs_readdir_inode(struct inode *inode, struct dir_context *ctx) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | { |
Jeff Mahoney | 098297b | 2014-04-23 10:00:36 -0400 | [diff] [blame] | 62 | |
| 63 | /* key of current position in the directory (key of directory entry) */ |
| 64 | struct cpu_key pos_key; |
| 65 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 66 | INITIALIZE_PATH(path_to_entry); |
| 67 | struct buffer_head *bh; |
| 68 | int item_num, entry_num; |
| 69 | const struct reiserfs_key *rkey; |
| 70 | struct item_head *ih, tmp_ih; |
| 71 | int search_res; |
| 72 | char *local_buf; |
| 73 | loff_t next_pos; |
| 74 | char small_buf[32]; /* avoid kmalloc if we can */ |
| 75 | struct reiserfs_dir_entry de; |
| 76 | int ret = 0; |
Jeff Mahoney | 278f667 | 2013-08-08 17:34:46 -0400 | [diff] [blame] | 77 | int depth; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 79 | reiserfs_write_lock(inode->i_sb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 81 | reiserfs_check_lock_depth(inode->i_sb, "readdir"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | |
Jeff Mahoney | 098297b | 2014-04-23 10:00:36 -0400 | [diff] [blame] | 83 | /* |
| 84 | * form key for search the next directory entry using |
| 85 | * f_pos field of file structure |
| 86 | */ |
Al Viro | 4acf381 | 2013-05-17 22:42:17 -0400 | [diff] [blame] | 87 | make_cpu_key(&pos_key, inode, ctx->pos ?: DOT_OFFSET, TYPE_DIRENTRY, 3); |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 88 | next_pos = cpu_key_k_offset(&pos_key); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 90 | path_to_entry.reada = PATH_READA; |
| 91 | while (1) { |
Jeff Mahoney | cf776a7 | 2014-04-23 10:00:41 -0400 | [diff] [blame] | 92 | research: |
Jeff Mahoney | 098297b | 2014-04-23 10:00:36 -0400 | [diff] [blame] | 93 | /* |
| 94 | * search the directory item, containing entry with |
| 95 | * specified key |
| 96 | */ |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 97 | search_res = |
| 98 | search_by_entry_key(inode->i_sb, &pos_key, &path_to_entry, |
| 99 | &de); |
| 100 | if (search_res == IO_ERROR) { |
Jeff Mahoney | 098297b | 2014-04-23 10:00:36 -0400 | [diff] [blame] | 101 | /* |
| 102 | * FIXME: we could just skip part of directory |
| 103 | * which could not be read |
| 104 | */ |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 105 | ret = -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | } |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 108 | entry_num = de.de_entry_num; |
| 109 | bh = de.de_bh; |
| 110 | item_num = de.de_item_num; |
| 111 | ih = de.de_ih; |
| 112 | store_ih(&tmp_ih, ih); |
| 113 | |
| 114 | /* we must have found item, that is item of this directory, */ |
Jeff Mahoney | a228bf8 | 2014-04-23 10:00:42 -0400 | [diff] [blame] | 115 | RFALSE(COMP_SHORT_KEYS(&ih->ih_key, &pos_key), |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 116 | "vs-9000: found item %h does not match to dir we readdir %K", |
| 117 | ih, &pos_key); |
| 118 | RFALSE(item_num > B_NR_ITEMS(bh) - 1, |
| 119 | "vs-9005 item_num == %d, item amount == %d", |
| 120 | item_num, B_NR_ITEMS(bh)); |
| 121 | |
Jeff Mahoney | 098297b | 2014-04-23 10:00:36 -0400 | [diff] [blame] | 122 | /* |
| 123 | * and entry must be not more than number of entries |
| 124 | * in the item |
| 125 | */ |
Jeff Mahoney | 4cf5f7a | 2014-04-23 10:00:35 -0400 | [diff] [blame] | 126 | RFALSE(ih_entry_count(ih) < entry_num, |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 127 | "vs-9010: entry number is too big %d (%d)", |
Jeff Mahoney | 4cf5f7a | 2014-04-23 10:00:35 -0400 | [diff] [blame] | 128 | entry_num, ih_entry_count(ih)); |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 129 | |
Jeff Mahoney | 098297b | 2014-04-23 10:00:36 -0400 | [diff] [blame] | 130 | /* |
| 131 | * go through all entries in the directory item beginning |
| 132 | * from the entry, that has been found |
| 133 | */ |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 134 | if (search_res == POSITION_FOUND |
Jeff Mahoney | 4cf5f7a | 2014-04-23 10:00:35 -0400 | [diff] [blame] | 135 | || entry_num < ih_entry_count(ih)) { |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 136 | struct reiserfs_de_head *deh = |
| 137 | B_I_DEH(bh, ih) + entry_num; |
| 138 | |
Jeff Mahoney | 4cf5f7a | 2014-04-23 10:00:35 -0400 | [diff] [blame] | 139 | for (; entry_num < ih_entry_count(ih); |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 140 | entry_num++, deh++) { |
| 141 | int d_reclen; |
| 142 | char *d_name; |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 143 | ino_t d_ino; |
Jeff Mahoney | 01d8885 | 2014-04-02 14:40:26 -0400 | [diff] [blame] | 144 | loff_t cur_pos = deh_offset(deh); |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 145 | |
Jeff Mahoney | 098297b | 2014-04-23 10:00:36 -0400 | [diff] [blame] | 146 | /* it is hidden entry */ |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 147 | if (!de_visible(deh)) |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 148 | continue; |
| 149 | d_reclen = entry_length(bh, ih, entry_num); |
| 150 | d_name = B_I_DEH_ENTRY_FILE_NAME(bh, ih, deh); |
Lepton Wu | 80eb68d | 2007-10-16 23:29:50 -0700 | [diff] [blame] | 151 | |
| 152 | if (d_reclen <= 0 || |
| 153 | d_name + d_reclen > bh->b_data + bh->b_size) { |
Jeff Mahoney | 098297b | 2014-04-23 10:00:36 -0400 | [diff] [blame] | 154 | /* |
| 155 | * There is corrupted data in entry, |
| 156 | * We'd better stop here |
| 157 | */ |
Lepton Wu | 80eb68d | 2007-10-16 23:29:50 -0700 | [diff] [blame] | 158 | pathrelse(&path_to_entry); |
| 159 | ret = -EIO; |
| 160 | goto out; |
| 161 | } |
| 162 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 163 | if (!d_name[d_reclen - 1]) |
| 164 | d_reclen = strlen(d_name); |
| 165 | |
Jeff Mahoney | 098297b | 2014-04-23 10:00:36 -0400 | [diff] [blame] | 166 | /* too big to send back to VFS */ |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 167 | if (d_reclen > |
| 168 | REISERFS_MAX_NAME(inode->i_sb-> |
| 169 | s_blocksize)) { |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 170 | continue; |
| 171 | } |
| 172 | |
| 173 | /* Ignore the .reiserfs_priv entry */ |
Al Viro | 99ce416 | 2013-05-17 22:45:29 -0400 | [diff] [blame] | 174 | if (is_privroot_deh(inode, deh)) |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 175 | continue; |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 176 | |
Al Viro | 4acf381 | 2013-05-17 22:42:17 -0400 | [diff] [blame] | 177 | ctx->pos = deh_offset(deh); |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 178 | d_ino = deh_objectid(deh); |
| 179 | if (d_reclen <= 32) { |
| 180 | local_buf = small_buf; |
| 181 | } else { |
Pekka Enberg | d739b42 | 2006-02-01 03:06:43 -0800 | [diff] [blame] | 182 | local_buf = kmalloc(d_reclen, |
| 183 | GFP_NOFS); |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 184 | if (!local_buf) { |
| 185 | pathrelse(&path_to_entry); |
| 186 | ret = -ENOMEM; |
| 187 | goto out; |
| 188 | } |
| 189 | if (item_moved(&tmp_ih, &path_to_entry)) { |
Pekka Enberg | d739b42 | 2006-02-01 03:06:43 -0800 | [diff] [blame] | 190 | kfree(local_buf); |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 191 | goto research; |
| 192 | } |
| 193 | } |
Jeff Mahoney | 098297b | 2014-04-23 10:00:36 -0400 | [diff] [blame] | 194 | |
| 195 | /* |
| 196 | * Note, that we copy name to user space via |
| 197 | * temporary buffer (local_buf) because |
| 198 | * filldir will block if user space buffer is |
| 199 | * swapped out. At that time entry can move to |
| 200 | * somewhere else |
| 201 | */ |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 202 | memcpy(local_buf, d_name, d_reclen); |
Frederic Weisbecker | 8ebc423 | 2009-04-07 04:19:49 +0200 | [diff] [blame] | 203 | |
| 204 | /* |
| 205 | * Since filldir might sleep, we can release |
| 206 | * the write lock here for other waiters |
| 207 | */ |
Jeff Mahoney | 278f667 | 2013-08-08 17:34:46 -0400 | [diff] [blame] | 208 | depth = reiserfs_write_unlock_nested(inode->i_sb); |
Al Viro | 4acf381 | 2013-05-17 22:42:17 -0400 | [diff] [blame] | 209 | if (!dir_emit |
| 210 | (ctx, local_buf, d_reclen, d_ino, |
| 211 | DT_UNKNOWN)) { |
Jeff Mahoney | 278f667 | 2013-08-08 17:34:46 -0400 | [diff] [blame] | 212 | reiserfs_write_lock_nested(inode->i_sb, depth); |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 213 | if (local_buf != small_buf) { |
Pekka Enberg | d739b42 | 2006-02-01 03:06:43 -0800 | [diff] [blame] | 214 | kfree(local_buf); |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 215 | } |
| 216 | goto end; |
| 217 | } |
Jeff Mahoney | 278f667 | 2013-08-08 17:34:46 -0400 | [diff] [blame] | 218 | reiserfs_write_lock_nested(inode->i_sb, depth); |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 219 | if (local_buf != small_buf) { |
Pekka Enberg | d739b42 | 2006-02-01 03:06:43 -0800 | [diff] [blame] | 220 | kfree(local_buf); |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 221 | } |
Jeff Mahoney | 01d8885 | 2014-04-02 14:40:26 -0400 | [diff] [blame] | 222 | |
| 223 | /* deh_offset(deh) may be invalid now. */ |
| 224 | next_pos = cur_pos + 1; |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 225 | |
| 226 | if (item_moved(&tmp_ih, &path_to_entry)) { |
Jeff Mahoney | 0bdc7ac | 2013-05-31 15:07:52 -0400 | [diff] [blame] | 227 | set_cpu_key_k_offset(&pos_key, |
| 228 | next_pos); |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 229 | goto research; |
| 230 | } |
| 231 | } /* for */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 232 | } |
| 233 | |
Jeff Mahoney | 098297b | 2014-04-23 10:00:36 -0400 | [diff] [blame] | 234 | /* end of directory has been reached */ |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 235 | if (item_num != B_NR_ITEMS(bh) - 1) |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 236 | goto end; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 237 | |
Jeff Mahoney | 098297b | 2014-04-23 10:00:36 -0400 | [diff] [blame] | 238 | /* |
| 239 | * item we went through is last item of node. Using right |
| 240 | * delimiting key check is it directory end |
| 241 | */ |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 242 | rkey = get_rkey(&path_to_entry, inode->i_sb); |
| 243 | if (!comp_le_keys(rkey, &MIN_KEY)) { |
Jeff Mahoney | 098297b | 2014-04-23 10:00:36 -0400 | [diff] [blame] | 244 | /* |
| 245 | * set pos_key to key, that is the smallest and greater |
| 246 | * that key of the last entry in the item |
| 247 | */ |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 248 | set_cpu_key_k_offset(&pos_key, next_pos); |
| 249 | continue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 250 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 251 | |
Jeff Mahoney | 098297b | 2014-04-23 10:00:36 -0400 | [diff] [blame] | 252 | /* end of directory has been reached */ |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 253 | if (COMP_SHORT_KEYS(rkey, &pos_key)) { |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 254 | goto end; |
| 255 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 256 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 257 | /* directory continues in the right neighboring block */ |
| 258 | set_cpu_key_k_offset(&pos_key, |
| 259 | le_key_k_offset(KEY_FORMAT_3_5, rkey)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 260 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 261 | } /* while */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 262 | |
Jeff Mahoney | a41f1a4 | 2009-03-30 14:02:40 -0400 | [diff] [blame] | 263 | end: |
Al Viro | 4acf381 | 2013-05-17 22:42:17 -0400 | [diff] [blame] | 264 | ctx->pos = next_pos; |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 265 | pathrelse(&path_to_entry); |
| 266 | reiserfs_check_path(&path_to_entry); |
Jeff Mahoney | a41f1a4 | 2009-03-30 14:02:40 -0400 | [diff] [blame] | 267 | out: |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 268 | reiserfs_write_unlock(inode->i_sb); |
| 269 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 270 | } |
| 271 | |
Al Viro | 4acf381 | 2013-05-17 22:42:17 -0400 | [diff] [blame] | 272 | static int reiserfs_readdir(struct file *file, struct dir_context *ctx) |
Jeff Mahoney | a41f1a4 | 2009-03-30 14:02:40 -0400 | [diff] [blame] | 273 | { |
Al Viro | cd62cda | 2013-05-17 22:58:58 -0400 | [diff] [blame] | 274 | return reiserfs_readdir_inode(file_inode(file), ctx); |
Jeff Mahoney | a41f1a4 | 2009-03-30 14:02:40 -0400 | [diff] [blame] | 275 | } |
| 276 | |
Jeff Mahoney | 098297b | 2014-04-23 10:00:36 -0400 | [diff] [blame] | 277 | /* |
| 278 | * compose directory item containing "." and ".." entries (entries are |
| 279 | * not aligned to 4 byte boundary) |
| 280 | */ |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 281 | void make_empty_dir_item_v1(char *body, __le32 dirid, __le32 objid, |
| 282 | __le32 par_dirid, __le32 par_objid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 283 | { |
Jeff Mahoney | 16da167 | 2014-04-23 10:00:43 -0400 | [diff] [blame] | 284 | struct reiserfs_de_head *dot, *dotdot; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 285 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 286 | memset(body, 0, EMPTY_DIR_SIZE_V1); |
Jeff Mahoney | 16da167 | 2014-04-23 10:00:43 -0400 | [diff] [blame] | 287 | dot = (struct reiserfs_de_head *)body; |
| 288 | dotdot = dot + 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 289 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 290 | /* direntry header of "." */ |
Jeff Mahoney | 16da167 | 2014-04-23 10:00:43 -0400 | [diff] [blame] | 291 | put_deh_offset(dot, DOT_OFFSET); |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 292 | /* these two are from make_le_item_head, and are are LE */ |
Jeff Mahoney | 16da167 | 2014-04-23 10:00:43 -0400 | [diff] [blame] | 293 | dot->deh_dir_id = dirid; |
| 294 | dot->deh_objectid = objid; |
| 295 | dot->deh_state = 0; /* Endian safe if 0 */ |
| 296 | put_deh_location(dot, EMPTY_DIR_SIZE_V1 - strlen(".")); |
| 297 | mark_de_visible(dot); |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 298 | |
| 299 | /* direntry header of ".." */ |
Jeff Mahoney | 16da167 | 2014-04-23 10:00:43 -0400 | [diff] [blame] | 300 | put_deh_offset(dotdot, DOT_DOT_OFFSET); |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 301 | /* key of ".." for the root directory */ |
| 302 | /* these two are from the inode, and are are LE */ |
Jeff Mahoney | 16da167 | 2014-04-23 10:00:43 -0400 | [diff] [blame] | 303 | dotdot->deh_dir_id = par_dirid; |
| 304 | dotdot->deh_objectid = par_objid; |
| 305 | dotdot->deh_state = 0; /* Endian safe if 0 */ |
| 306 | put_deh_location(dotdot, deh_location(dot) - strlen("..")); |
| 307 | mark_de_visible(dotdot); |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 308 | |
| 309 | /* copy ".." and "." */ |
Jeff Mahoney | 16da167 | 2014-04-23 10:00:43 -0400 | [diff] [blame] | 310 | memcpy(body + deh_location(dot), ".", 1); |
| 311 | memcpy(body + deh_location(dotdot), "..", 2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 | } |
| 313 | |
| 314 | /* compose directory item containing "." and ".." entries */ |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 315 | void make_empty_dir_item(char *body, __le32 dirid, __le32 objid, |
| 316 | __le32 par_dirid, __le32 par_objid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 317 | { |
Jeff Mahoney | 16da167 | 2014-04-23 10:00:43 -0400 | [diff] [blame] | 318 | struct reiserfs_de_head *dot, *dotdot; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 319 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 320 | memset(body, 0, EMPTY_DIR_SIZE); |
Jeff Mahoney | 16da167 | 2014-04-23 10:00:43 -0400 | [diff] [blame] | 321 | dot = (struct reiserfs_de_head *)body; |
| 322 | dotdot = dot + 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 323 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 324 | /* direntry header of "." */ |
Jeff Mahoney | 16da167 | 2014-04-23 10:00:43 -0400 | [diff] [blame] | 325 | put_deh_offset(dot, DOT_OFFSET); |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 326 | /* these two are from make_le_item_head, and are are LE */ |
Jeff Mahoney | 16da167 | 2014-04-23 10:00:43 -0400 | [diff] [blame] | 327 | dot->deh_dir_id = dirid; |
| 328 | dot->deh_objectid = objid; |
| 329 | dot->deh_state = 0; /* Endian safe if 0 */ |
| 330 | put_deh_location(dot, EMPTY_DIR_SIZE - ROUND_UP(strlen("."))); |
| 331 | mark_de_visible(dot); |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 332 | |
| 333 | /* direntry header of ".." */ |
Jeff Mahoney | 16da167 | 2014-04-23 10:00:43 -0400 | [diff] [blame] | 334 | put_deh_offset(dotdot, DOT_DOT_OFFSET); |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 335 | /* key of ".." for the root directory */ |
| 336 | /* these two are from the inode, and are are LE */ |
Jeff Mahoney | 16da167 | 2014-04-23 10:00:43 -0400 | [diff] [blame] | 337 | dotdot->deh_dir_id = par_dirid; |
| 338 | dotdot->deh_objectid = par_objid; |
| 339 | dotdot->deh_state = 0; /* Endian safe if 0 */ |
| 340 | put_deh_location(dotdot, deh_location(dot) - ROUND_UP(strlen(".."))); |
| 341 | mark_de_visible(dotdot); |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 342 | |
| 343 | /* copy ".." and "." */ |
Jeff Mahoney | 16da167 | 2014-04-23 10:00:43 -0400 | [diff] [blame] | 344 | memcpy(body + deh_location(dot), ".", 1); |
| 345 | memcpy(body + deh_location(dotdot), "..", 2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 346 | } |