blob: 5d6578affbbf91b6d2e80b32398e8f0a53bc08ae [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>
16#include <linux/dirent.h>
17#include <linux/security.h>
18#include <linux/syscalls.h>
19#include <linux/unistd.h>
20
21#include <asm/uaccess.h>
22
Al Viro5c0ba4e2013-05-15 13:52:59 -040023int iterate_dir(struct file *file, struct dir_context *ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -070024{
Al Viro496ad9a2013-01-23 17:07:38 -050025 struct inode *inode = file_inode(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -070026 int res = -ENOTDIR;
Al Virobb6f6192013-05-15 18:49:12 -040027 if (!file->f_op || (!file->f_op->readdir && !file->f_op->iterate))
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 goto out;
29
30 res = security_file_permission(file, MAY_READ);
31 if (res)
32 goto out;
33
Liam R. Howlettda784512007-12-06 17:39:54 -050034 res = mutex_lock_killable(&inode->i_mutex);
35 if (res)
36 goto out;
37
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 res = -ENOENT;
39 if (!IS_DEADDIR(inode)) {
Al Virobb6f6192013-05-15 18:49:12 -040040 if (file->f_op->iterate) {
41 ctx->pos = file->f_pos;
42 res = file->f_op->iterate(file, ctx);
43 file->f_pos = ctx->pos;
44 } else {
45 res = file->f_op->readdir(file, ctx, ctx->actor);
46 ctx->pos = file->f_pos;
47 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 file_accessed(file);
49 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -080050 mutex_unlock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070051out:
52 return res;
53}
Al Viro5c0ba4e2013-05-15 13:52:59 -040054EXPORT_SYMBOL(iterate_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
56/*
57 * Traditional linux readdir() handling..
58 *
59 * "count=1" is a special case, meaning that the buffer is one
60 * dirent-structure in size and that the code can't handle more
61 * anyway. Thus the special "fillonedir()" function for that
62 * case (the low-level handlers don't need to care about this).
63 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
65#ifdef __ARCH_WANT_OLD_READDIR
66
67struct old_linux_dirent {
68 unsigned long d_ino;
69 unsigned long d_offset;
70 unsigned short d_namlen;
71 char d_name[1];
72};
73
74struct readdir_callback {
Al Viro5c0ba4e2013-05-15 13:52:59 -040075 struct dir_context ctx;
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 struct old_linux_dirent __user * dirent;
77 int result;
78};
79
80static int fillonedir(void * __buf, const char * name, int namlen, loff_t offset,
David Howellsafefdbb2006-10-03 01:13:46 -070081 u64 ino, unsigned int d_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -070082{
Al Viro5c0ba4e2013-05-15 13:52:59 -040083 struct readdir_callback *buf = (struct readdir_callback *) __buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 struct old_linux_dirent __user * dirent;
David Howellsafefdbb2006-10-03 01:13:46 -070085 unsigned long d_ino;
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
87 if (buf->result)
88 return -EINVAL;
David Howellsafefdbb2006-10-03 01:13:46 -070089 d_ino = ino;
Al Viro8f3f6552008-08-12 00:28:24 -040090 if (sizeof(d_ino) < sizeof(ino) && d_ino != ino) {
91 buf->result = -EOVERFLOW;
David Howellsafefdbb2006-10-03 01:13:46 -070092 return -EOVERFLOW;
Al Viro8f3f6552008-08-12 00:28:24 -040093 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 buf->result++;
95 dirent = buf->dirent;
96 if (!access_ok(VERIFY_WRITE, dirent,
97 (unsigned long)(dirent->d_name + namlen + 1) -
98 (unsigned long)dirent))
99 goto efault;
David Howellsafefdbb2006-10-03 01:13:46 -0700100 if ( __put_user(d_ino, &dirent->d_ino) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 __put_user(offset, &dirent->d_offset) ||
102 __put_user(namlen, &dirent->d_namlen) ||
103 __copy_to_user(dirent->d_name, name, namlen) ||
104 __put_user(0, dirent->d_name + namlen))
105 goto efault;
106 return 0;
107efault:
108 buf->result = -EFAULT;
109 return -EFAULT;
110}
111
Heiko Carstensd4e82042009-01-14 14:14:34 +0100112SYSCALL_DEFINE3(old_readdir, unsigned int, fd,
113 struct old_linux_dirent __user *, dirent, unsigned int, count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114{
115 int error;
Al Viro2903ff02012-08-28 12:52:22 -0400116 struct fd f = fdget(fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 struct readdir_callback buf;
118
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 buf.ctx.actor = fillonedir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 buf.result = 0;
124 buf.dirent = dirent;
125
Al Viro5c0ba4e2013-05-15 13:52:59 -0400126 error = iterate_dir(f.file, &buf.ctx);
Al Viro53c9c5c2008-08-24 07:29:52 -0400127 if (buf.result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 error = buf.result;
129
Al Viro2903ff02012-08-28 12:52:22 -0400130 fdput(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 return error;
132}
133
134#endif /* __ARCH_WANT_OLD_READDIR */
135
136/*
137 * New, all-improved, singing, dancing, iBCS2-compliant getdents()
138 * interface.
139 */
140struct linux_dirent {
141 unsigned long d_ino;
142 unsigned long d_off;
143 unsigned short d_reclen;
144 char d_name[1];
145};
146
147struct getdents_callback {
Al Viro5c0ba4e2013-05-15 13:52:59 -0400148 struct dir_context ctx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 struct linux_dirent __user * current_dir;
150 struct linux_dirent __user * previous;
151 int count;
152 int error;
153};
154
155static int filldir(void * __buf, const char * name, int namlen, loff_t offset,
David Howellsafefdbb2006-10-03 01:13:46 -0700156 u64 ino, unsigned int d_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157{
158 struct linux_dirent __user * dirent;
159 struct getdents_callback * buf = (struct getdents_callback *) __buf;
David Howellsafefdbb2006-10-03 01:13:46 -0700160 unsigned long d_ino;
Kevin Winchester85c9fe82010-08-09 17:20:22 -0700161 int reclen = ALIGN(offsetof(struct linux_dirent, d_name) + namlen + 2,
162 sizeof(long));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
164 buf->error = -EINVAL; /* only used if we fail.. */
165 if (reclen > buf->count)
166 return -EINVAL;
David Howellsafefdbb2006-10-03 01:13:46 -0700167 d_ino = ino;
Al Viro8f3f6552008-08-12 00:28:24 -0400168 if (sizeof(d_ino) < sizeof(ino) && d_ino != ino) {
169 buf->error = -EOVERFLOW;
David Howellsafefdbb2006-10-03 01:13:46 -0700170 return -EOVERFLOW;
Al Viro8f3f6552008-08-12 00:28:24 -0400171 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 dirent = buf->previous;
173 if (dirent) {
174 if (__put_user(offset, &dirent->d_off))
175 goto efault;
176 }
177 dirent = buf->current_dir;
David Howellsafefdbb2006-10-03 01:13:46 -0700178 if (__put_user(d_ino, &dirent->d_ino))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 goto efault;
180 if (__put_user(reclen, &dirent->d_reclen))
181 goto efault;
182 if (copy_to_user(dirent->d_name, name, namlen))
183 goto efault;
184 if (__put_user(0, dirent->d_name + namlen))
185 goto efault;
186 if (__put_user(d_type, (char __user *) dirent + reclen - 1))
187 goto efault;
188 buf->previous = dirent;
189 dirent = (void __user *)dirent + reclen;
190 buf->current_dir = dirent;
191 buf->count -= reclen;
192 return 0;
193efault:
194 buf->error = -EFAULT;
195 return -EFAULT;
196}
197
Heiko Carstens20f37032009-01-14 14:14:23 +0100198SYSCALL_DEFINE3(getdents, unsigned int, fd,
199 struct linux_dirent __user *, dirent, unsigned int, count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200{
Al Viro2903ff02012-08-28 12:52:22 -0400201 struct fd f;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 struct linux_dirent __user * lastdirent;
203 struct getdents_callback buf;
204 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
213 buf.current_dir = dirent;
214 buf.previous = NULL;
215 buf.count = count;
216 buf.error = 0;
Al Viro5c0ba4e2013-05-15 13:52:59 -0400217 buf.ctx.actor = filldir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
Al Viro5c0ba4e2013-05-15 13:52:59 -0400219 error = iterate_dir(f.file, &buf.ctx);
Al Viro53c9c5c2008-08-24 07:29:52 -0400220 if (error >= 0)
221 error = buf.error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 lastdirent = buf.previous;
223 if (lastdirent) {
Al Virobb6f6192013-05-15 18:49:12 -0400224 if (put_user(buf.ctx.pos, &lastdirent->d_off))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 error = -EFAULT;
226 else
227 error = count - buf.count;
228 }
Al Viro2903ff02012-08-28 12:52:22 -0400229 fdput(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 return error;
231}
232
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233struct getdents_callback64 {
Al Viro5c0ba4e2013-05-15 13:52:59 -0400234 struct dir_context ctx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 struct linux_dirent64 __user * current_dir;
236 struct linux_dirent64 __user * previous;
237 int count;
238 int error;
239};
240
241static int filldir64(void * __buf, const char * name, int namlen, loff_t offset,
David Howellsafefdbb2006-10-03 01:13:46 -0700242 u64 ino, unsigned int d_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243{
244 struct linux_dirent64 __user *dirent;
245 struct getdents_callback64 * buf = (struct getdents_callback64 *) __buf;
Kevin Winchester85c9fe82010-08-09 17:20:22 -0700246 int reclen = ALIGN(offsetof(struct linux_dirent64, d_name) + namlen + 1,
247 sizeof(u64));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
249 buf->error = -EINVAL; /* only used if we fail.. */
250 if (reclen > buf->count)
251 return -EINVAL;
252 dirent = buf->previous;
253 if (dirent) {
254 if (__put_user(offset, &dirent->d_off))
255 goto efault;
256 }
257 dirent = buf->current_dir;
258 if (__put_user(ino, &dirent->d_ino))
259 goto efault;
260 if (__put_user(0, &dirent->d_off))
261 goto efault;
262 if (__put_user(reclen, &dirent->d_reclen))
263 goto efault;
264 if (__put_user(d_type, &dirent->d_type))
265 goto efault;
266 if (copy_to_user(dirent->d_name, name, namlen))
267 goto efault;
268 if (__put_user(0, dirent->d_name + namlen))
269 goto efault;
270 buf->previous = dirent;
271 dirent = (void __user *)dirent + reclen;
272 buf->current_dir = dirent;
273 buf->count -= reclen;
274 return 0;
275efault:
276 buf->error = -EFAULT;
277 return -EFAULT;
278}
279
Heiko Carstens20f37032009-01-14 14:14:23 +0100280SYSCALL_DEFINE3(getdents64, unsigned int, fd,
281 struct linux_dirent64 __user *, dirent, unsigned int, count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282{
Al Viro2903ff02012-08-28 12:52:22 -0400283 struct fd f;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 struct linux_dirent64 __user * lastdirent;
285 struct getdents_callback64 buf;
286 int error;
287
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 if (!access_ok(VERIFY_WRITE, dirent, count))
Al Viro863ced72012-04-21 18:40:32 -0400289 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290
Al Viro2903ff02012-08-28 12:52:22 -0400291 f = fdget(fd);
292 if (!f.file)
Al Viro863ced72012-04-21 18:40:32 -0400293 return -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294
295 buf.current_dir = dirent;
296 buf.previous = NULL;
297 buf.count = count;
298 buf.error = 0;
Al Viro5c0ba4e2013-05-15 13:52:59 -0400299 buf.ctx.actor = filldir64;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
Al Viro5c0ba4e2013-05-15 13:52:59 -0400301 error = iterate_dir(f.file, &buf.ctx);
Al Viro53c9c5c2008-08-24 07:29:52 -0400302 if (error >= 0)
303 error = buf.error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 lastdirent = buf.previous;
305 if (lastdirent) {
Al Virobb6f6192013-05-15 18:49:12 -0400306 typeof(lastdirent->d_off) d_off = buf.ctx.pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 if (__put_user(d_off, &lastdirent->d_off))
Al Viro53c9c5c2008-08-24 07:29:52 -0400308 error = -EFAULT;
309 else
310 error = count - buf.count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 }
Al Viro2903ff02012-08-28 12:52:22 -0400312 fdput(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 return error;
314}