blob: 33fd92208cb75411cae8e30bc972e742e97a6479 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/readdir.c
3 *
4 * Copyright (C) 1995 Linus Torvalds
5 */
6
Kevin Winchester85c9fe82010-08-09 17:20:22 -07007#include <linux/stddef.h>
Milind Arun Choudhary022a1692007-05-08 00:29:02 -07008#include <linux/kernel.h>
Paul Gortmaker630d9c42011-11-16 23:57:37 -05009#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <linux/time.h>
11#include <linux/mm.h>
12#include <linux/errno.h>
13#include <linux/stat.h>
14#include <linux/file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/fs.h>
Heinrich Schuchardtd4c7cf62014-06-04 16:05:41 -070016#include <linux/fsnotify.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/dirent.h>
18#include <linux/security.h>
19#include <linux/syscalls.h>
20#include <linux/unistd.h>
21
22#include <asm/uaccess.h>
23
Al Viro5c0ba4e2013-05-15 13:52:59 -040024int iterate_dir(struct file *file, struct dir_context *ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -070025{
Al Viro496ad9a2013-01-23 17:07:38 -050026 struct inode *inode = file_inode(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -070027 int res = -ENOTDIR;
Al Viro72c2d532013-09-22 16:27:52 -040028 if (!file->f_op->iterate)
Linus Torvalds1da177e2005-04-16 15:20:36 -070029 goto out;
30
31 res = security_file_permission(file, MAY_READ);
32 if (res)
33 goto out;
34
Liam R. Howlettda784512007-12-06 17:39:54 -050035 res = mutex_lock_killable(&inode->i_mutex);
36 if (res)
37 goto out;
38
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 res = -ENOENT;
40 if (!IS_DEADDIR(inode)) {
Al Viro2233f312013-05-22 21:44:23 -040041 ctx->pos = file->f_pos;
42 res = file->f_op->iterate(file, ctx);
43 file->f_pos = ctx->pos;
Heinrich Schuchardtd4c7cf62014-06-04 16:05:41 -070044 fsnotify_access(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 file_accessed(file);
46 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -080047 mutex_unlock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070048out:
49 return res;
50}
Al Viro5c0ba4e2013-05-15 13:52:59 -040051EXPORT_SYMBOL(iterate_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
53/*
54 * Traditional linux readdir() handling..
55 *
56 * "count=1" is a special case, meaning that the buffer is one
57 * dirent-structure in size and that the code can't handle more
58 * anyway. Thus the special "fillonedir()" function for that
59 * case (the low-level handlers don't need to care about this).
60 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
62#ifdef __ARCH_WANT_OLD_READDIR
63
64struct old_linux_dirent {
65 unsigned long d_ino;
66 unsigned long d_offset;
67 unsigned short d_namlen;
68 char d_name[1];
69};
70
71struct readdir_callback {
Al Viro5c0ba4e2013-05-15 13:52:59 -040072 struct dir_context ctx;
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 struct old_linux_dirent __user * dirent;
74 int result;
75};
76
77static int fillonedir(void * __buf, const char * name, int namlen, loff_t offset,
David Howellsafefdbb2006-10-03 01:13:46 -070078 u64 ino, unsigned int d_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -070079{
Al Viro5c0ba4e2013-05-15 13:52:59 -040080 struct readdir_callback *buf = (struct readdir_callback *) __buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 struct old_linux_dirent __user * dirent;
David Howellsafefdbb2006-10-03 01:13:46 -070082 unsigned long d_ino;
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
84 if (buf->result)
85 return -EINVAL;
David Howellsafefdbb2006-10-03 01:13:46 -070086 d_ino = ino;
Al Viro8f3f6552008-08-12 00:28:24 -040087 if (sizeof(d_ino) < sizeof(ino) && d_ino != ino) {
88 buf->result = -EOVERFLOW;
David Howellsafefdbb2006-10-03 01:13:46 -070089 return -EOVERFLOW;
Al Viro8f3f6552008-08-12 00:28:24 -040090 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 buf->result++;
92 dirent = buf->dirent;
93 if (!access_ok(VERIFY_WRITE, dirent,
94 (unsigned long)(dirent->d_name + namlen + 1) -
95 (unsigned long)dirent))
96 goto efault;
David Howellsafefdbb2006-10-03 01:13:46 -070097 if ( __put_user(d_ino, &dirent->d_ino) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 __put_user(offset, &dirent->d_offset) ||
99 __put_user(namlen, &dirent->d_namlen) ||
100 __copy_to_user(dirent->d_name, name, namlen) ||
101 __put_user(0, dirent->d_name + namlen))
102 goto efault;
103 return 0;
104efault:
105 buf->result = -EFAULT;
106 return -EFAULT;
107}
108
Heiko Carstensd4e82042009-01-14 14:14:34 +0100109SYSCALL_DEFINE3(old_readdir, unsigned int, fd,
110 struct old_linux_dirent __user *, dirent, unsigned int, count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111{
112 int error;
Al Viro2903ff02012-08-28 12:52:22 -0400113 struct fd f = fdget(fd);
Al Viroac6614b2013-05-22 22:22:04 -0400114 struct readdir_callback buf = {
115 .ctx.actor = fillonedir,
116 .dirent = dirent
117 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
Al Viro2903ff02012-08-28 12:52:22 -0400119 if (!f.file)
Al Viro863ced72012-04-21 18:40:32 -0400120 return -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
Al Viro5c0ba4e2013-05-15 13:52:59 -0400122 error = iterate_dir(f.file, &buf.ctx);
Al Viro53c9c5c2008-08-24 07:29:52 -0400123 if (buf.result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 error = buf.result;
125
Al Viro2903ff02012-08-28 12:52:22 -0400126 fdput(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 return error;
128}
129
130#endif /* __ARCH_WANT_OLD_READDIR */
131
132/*
133 * New, all-improved, singing, dancing, iBCS2-compliant getdents()
134 * interface.
135 */
136struct linux_dirent {
137 unsigned long d_ino;
138 unsigned long d_off;
139 unsigned short d_reclen;
140 char d_name[1];
141};
142
143struct getdents_callback {
Al Viro5c0ba4e2013-05-15 13:52:59 -0400144 struct dir_context ctx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 struct linux_dirent __user * current_dir;
146 struct linux_dirent __user * previous;
147 int count;
148 int error;
149};
150
151static int filldir(void * __buf, const char * name, int namlen, loff_t offset,
David Howellsafefdbb2006-10-03 01:13:46 -0700152 u64 ino, unsigned int d_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153{
154 struct linux_dirent __user * dirent;
155 struct getdents_callback * buf = (struct getdents_callback *) __buf;
David Howellsafefdbb2006-10-03 01:13:46 -0700156 unsigned long d_ino;
Kevin Winchester85c9fe82010-08-09 17:20:22 -0700157 int reclen = ALIGN(offsetof(struct linux_dirent, d_name) + namlen + 2,
158 sizeof(long));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
160 buf->error = -EINVAL; /* only used if we fail.. */
161 if (reclen > buf->count)
162 return -EINVAL;
David Howellsafefdbb2006-10-03 01:13:46 -0700163 d_ino = ino;
Al Viro8f3f6552008-08-12 00:28:24 -0400164 if (sizeof(d_ino) < sizeof(ino) && d_ino != ino) {
165 buf->error = -EOVERFLOW;
David Howellsafefdbb2006-10-03 01:13:46 -0700166 return -EOVERFLOW;
Al Viro8f3f6552008-08-12 00:28:24 -0400167 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 dirent = buf->previous;
169 if (dirent) {
170 if (__put_user(offset, &dirent->d_off))
171 goto efault;
172 }
173 dirent = buf->current_dir;
David Howellsafefdbb2006-10-03 01:13:46 -0700174 if (__put_user(d_ino, &dirent->d_ino))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 goto efault;
176 if (__put_user(reclen, &dirent->d_reclen))
177 goto efault;
178 if (copy_to_user(dirent->d_name, name, namlen))
179 goto efault;
180 if (__put_user(0, dirent->d_name + namlen))
181 goto efault;
182 if (__put_user(d_type, (char __user *) dirent + reclen - 1))
183 goto efault;
184 buf->previous = dirent;
185 dirent = (void __user *)dirent + reclen;
186 buf->current_dir = dirent;
187 buf->count -= reclen;
188 return 0;
189efault:
190 buf->error = -EFAULT;
191 return -EFAULT;
192}
193
Heiko Carstens20f37032009-01-14 14:14:23 +0100194SYSCALL_DEFINE3(getdents, unsigned int, fd,
195 struct linux_dirent __user *, dirent, unsigned int, count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196{
Al Viro2903ff02012-08-28 12:52:22 -0400197 struct fd f;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 struct linux_dirent __user * lastdirent;
Al Viroac6614b2013-05-22 22:22:04 -0400199 struct getdents_callback buf = {
200 .ctx.actor = filldir,
201 .count = count,
202 .current_dir = dirent
203 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 int error;
205
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 if (!access_ok(VERIFY_WRITE, dirent, count))
Al Viro863ced72012-04-21 18:40:32 -0400207 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
Al Viro2903ff02012-08-28 12:52:22 -0400209 f = fdget(fd);
210 if (!f.file)
Al Viro863ced72012-04-21 18:40:32 -0400211 return -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
Al Viro5c0ba4e2013-05-15 13:52:59 -0400213 error = iterate_dir(f.file, &buf.ctx);
Al Viro53c9c5c2008-08-24 07:29:52 -0400214 if (error >= 0)
215 error = buf.error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 lastdirent = buf.previous;
217 if (lastdirent) {
Al Virobb6f6192013-05-15 18:49:12 -0400218 if (put_user(buf.ctx.pos, &lastdirent->d_off))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 error = -EFAULT;
220 else
221 error = count - buf.count;
222 }
Al Viro2903ff02012-08-28 12:52:22 -0400223 fdput(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 return error;
225}
226
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227struct getdents_callback64 {
Al Viro5c0ba4e2013-05-15 13:52:59 -0400228 struct dir_context ctx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 struct linux_dirent64 __user * current_dir;
230 struct linux_dirent64 __user * previous;
231 int count;
232 int error;
233};
234
235static int filldir64(void * __buf, const char * name, int namlen, loff_t offset,
David Howellsafefdbb2006-10-03 01:13:46 -0700236 u64 ino, unsigned int d_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237{
238 struct linux_dirent64 __user *dirent;
239 struct getdents_callback64 * buf = (struct getdents_callback64 *) __buf;
Kevin Winchester85c9fe82010-08-09 17:20:22 -0700240 int reclen = ALIGN(offsetof(struct linux_dirent64, d_name) + namlen + 1,
241 sizeof(u64));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242
243 buf->error = -EINVAL; /* only used if we fail.. */
244 if (reclen > buf->count)
245 return -EINVAL;
246 dirent = buf->previous;
247 if (dirent) {
248 if (__put_user(offset, &dirent->d_off))
249 goto efault;
250 }
251 dirent = buf->current_dir;
252 if (__put_user(ino, &dirent->d_ino))
253 goto efault;
254 if (__put_user(0, &dirent->d_off))
255 goto efault;
256 if (__put_user(reclen, &dirent->d_reclen))
257 goto efault;
258 if (__put_user(d_type, &dirent->d_type))
259 goto efault;
260 if (copy_to_user(dirent->d_name, name, namlen))
261 goto efault;
262 if (__put_user(0, dirent->d_name + namlen))
263 goto efault;
264 buf->previous = dirent;
265 dirent = (void __user *)dirent + reclen;
266 buf->current_dir = dirent;
267 buf->count -= reclen;
268 return 0;
269efault:
270 buf->error = -EFAULT;
271 return -EFAULT;
272}
273
Heiko Carstens20f37032009-01-14 14:14:23 +0100274SYSCALL_DEFINE3(getdents64, unsigned int, fd,
275 struct linux_dirent64 __user *, dirent, unsigned int, count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276{
Al Viro2903ff02012-08-28 12:52:22 -0400277 struct fd f;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 struct linux_dirent64 __user * lastdirent;
Al Viroac6614b2013-05-22 22:22:04 -0400279 struct getdents_callback64 buf = {
280 .ctx.actor = filldir64,
281 .count = count,
282 .current_dir = dirent
283 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 int error;
285
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 if (!access_ok(VERIFY_WRITE, dirent, count))
Al Viro863ced72012-04-21 18:40:32 -0400287 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
Al Viro2903ff02012-08-28 12:52:22 -0400289 f = fdget(fd);
290 if (!f.file)
Al Viro863ced72012-04-21 18:40:32 -0400291 return -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292
Al Viro5c0ba4e2013-05-15 13:52:59 -0400293 error = iterate_dir(f.file, &buf.ctx);
Al Viro53c9c5c2008-08-24 07:29:52 -0400294 if (error >= 0)
295 error = buf.error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 lastdirent = buf.previous;
297 if (lastdirent) {
Al Virobb6f6192013-05-15 18:49:12 -0400298 typeof(lastdirent->d_off) d_off = buf.ctx.pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 if (__put_user(d_off, &lastdirent->d_off))
Al Viro53c9c5c2008-08-24 07:29:52 -0400300 error = -EFAULT;
301 else
302 error = count - buf.count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 }
Al Viro2903ff02012-08-28 12:52:22 -0400304 fdput(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 return error;
306}