MOXA linux-2.6.x / linux-2.6.9-uc0 from sdlinux-moxaart.tgz
[linux-2.6.9-moxart.git] / fs / readdir.c
blobfbea474bdb78884352ec0d09ea1d558177a3f732
1 /*
2 * linux/fs/readdir.c
4 * Copyright (C) 1995 Linus Torvalds
5 */
7 #include <linux/module.h>
8 #include <linux/time.h>
9 #include <linux/mm.h>
10 #include <linux/errno.h>
11 #include <linux/stat.h>
12 #include <linux/file.h>
13 #include <linux/smp_lock.h>
14 #include <linux/fs.h>
15 #include <linux/dirent.h>
16 #include <linux/security.h>
17 #include <linux/unistd.h>
19 #include <asm/uaccess.h>
21 int vfs_readdir(struct file *file, filldir_t filler, void *buf)
23 struct inode *inode = file->f_dentry->d_inode;
24 int res = -ENOTDIR;
25 if (!file->f_op || !file->f_op->readdir)
26 goto out;
28 res = security_file_permission(file, MAY_READ);
29 if (res)
30 goto out;
32 down(&inode->i_sem);
33 res = -ENOENT;
34 if (!IS_DEADDIR(inode)) {
35 res = file->f_op->readdir(file, buf, filler);
36 file_accessed(file);
38 up(&inode->i_sem);
39 out:
40 return res;
43 EXPORT_SYMBOL(vfs_readdir);
46 * Traditional linux readdir() handling..
48 * "count=1" is a special case, meaning that the buffer is one
49 * dirent-structure in size and that the code can't handle more
50 * anyway. Thus the special "fillonedir()" function for that
51 * case (the low-level handlers don't need to care about this).
53 #define NAME_OFFSET(de) ((int) ((de)->d_name - (char __user *) (de)))
54 #define ROUND_UP(x) (((x)+sizeof(long)-1) & ~(sizeof(long)-1))
56 #ifdef __ARCH_WANT_OLD_READDIR
58 struct old_linux_dirent {
59 unsigned long d_ino;
60 unsigned long d_offset;
61 unsigned short d_namlen;
62 char d_name[1];
65 struct readdir_callback {
66 struct old_linux_dirent __user * dirent;
67 int result;
70 static int fillonedir(void * __buf, const char * name, int namlen, loff_t offset,
71 ino_t ino, unsigned int d_type)
73 struct readdir_callback * buf = (struct readdir_callback *) __buf;
74 struct old_linux_dirent __user * dirent;
76 if (buf->result)
77 return -EINVAL;
78 buf->result++;
79 dirent = buf->dirent;
80 if (!access_ok(VERIFY_WRITE, dirent,
81 (unsigned long)(dirent->d_name + namlen + 1) -
82 (unsigned long)dirent))
83 goto efault;
84 if ( __put_user(ino, &dirent->d_ino) ||
85 __put_user(offset, &dirent->d_offset) ||
86 __put_user(namlen, &dirent->d_namlen) ||
87 __copy_to_user(dirent->d_name, name, namlen) ||
88 __put_user(0, dirent->d_name + namlen))
89 goto efault;
90 return 0;
91 efault:
92 buf->result = -EFAULT;
93 return -EFAULT;
96 asmlinkage long old_readdir(unsigned int fd, struct old_linux_dirent __user * dirent, unsigned int count)
98 int error;
99 struct file * file;
100 struct readdir_callback buf;
102 error = -EBADF;
103 file = fget(fd);
104 if (!file)
105 goto out;
107 buf.result = 0;
108 buf.dirent = dirent;
110 error = vfs_readdir(file, fillonedir, &buf);
111 if (error >= 0)
112 error = buf.result;
114 fput(file);
115 out:
116 return error;
119 #endif /* __ARCH_WANT_OLD_READDIR */
122 * New, all-improved, singing, dancing, iBCS2-compliant getdents()
123 * interface.
125 struct linux_dirent {
126 unsigned long d_ino;
127 unsigned long d_off;
128 unsigned short d_reclen;
129 char d_name[1];
132 struct getdents_callback {
133 struct linux_dirent __user * current_dir;
134 struct linux_dirent __user * previous;
135 int count;
136 int error;
139 static int filldir(void * __buf, const char * name, int namlen, loff_t offset,
140 ino_t ino, unsigned int d_type)
142 struct linux_dirent __user * dirent;
143 struct getdents_callback * buf = (struct getdents_callback *) __buf;
144 int reclen = ROUND_UP(NAME_OFFSET(dirent) + namlen + 2);
146 buf->error = -EINVAL; /* only used if we fail.. */
147 if (reclen > buf->count)
148 return -EINVAL;
149 dirent = buf->previous;
150 if (dirent) {
151 if (__put_user(offset, &dirent->d_off))
152 goto efault;
154 dirent = buf->current_dir;
155 if (__put_user(ino, &dirent->d_ino))
156 goto efault;
157 if (__put_user(reclen, &dirent->d_reclen))
158 goto efault;
159 if (copy_to_user(dirent->d_name, name, namlen))
160 goto efault;
161 if (__put_user(0, dirent->d_name + namlen))
162 goto efault;
163 if (__put_user(d_type, (char __user *) dirent + reclen - 1))
164 goto efault;
165 buf->previous = dirent;
166 dirent = (void __user *)dirent + reclen;
167 buf->current_dir = dirent;
168 buf->count -= reclen;
169 return 0;
170 efault:
171 buf->error = -EFAULT;
172 return -EFAULT;
175 asmlinkage long sys_getdents(unsigned int fd, struct linux_dirent __user * dirent, unsigned int count)
177 struct file * file;
178 struct linux_dirent __user * lastdirent;
179 struct getdents_callback buf;
180 int error;
182 error = -EFAULT;
183 if (!access_ok(VERIFY_WRITE, dirent, count))
184 goto out;
186 error = -EBADF;
187 file = fget(fd);
188 if (!file)
189 goto out;
191 buf.current_dir = dirent;
192 buf.previous = NULL;
193 buf.count = count;
194 buf.error = 0;
196 error = vfs_readdir(file, filldir, &buf);
197 if (error < 0)
198 goto out_putf;
199 error = buf.error;
200 lastdirent = buf.previous;
201 if (lastdirent) {
202 if (put_user(file->f_pos, &lastdirent->d_off))
203 error = -EFAULT;
204 else
205 error = count - buf.count;
208 out_putf:
209 fput(file);
210 out:
211 return error;
214 #define ROUND_UP64(x) (((x)+sizeof(u64)-1) & ~(sizeof(u64)-1))
216 struct getdents_callback64 {
217 struct linux_dirent64 __user * current_dir;
218 struct linux_dirent64 __user * previous;
219 int count;
220 int error;
223 static int filldir64(void * __buf, const char * name, int namlen, loff_t offset,
224 ino_t ino, unsigned int d_type)
226 struct linux_dirent64 __user *dirent;
227 struct getdents_callback64 * buf = (struct getdents_callback64 *) __buf;
228 int reclen = ROUND_UP64(NAME_OFFSET(dirent) + namlen + 1);
230 buf->error = -EINVAL; /* only used if we fail.. */
231 if (reclen > buf->count)
232 return -EINVAL;
233 dirent = buf->previous;
234 if (dirent) {
235 if (__put_user(offset, &dirent->d_off))
236 goto efault;
238 dirent = buf->current_dir;
239 if (__put_user(ino, &dirent->d_ino))
240 goto efault;
241 if (__put_user(0, &dirent->d_off))
242 goto efault;
243 if (__put_user(reclen, &dirent->d_reclen))
244 goto efault;
245 if (__put_user(d_type, &dirent->d_type))
246 goto efault;
247 if (copy_to_user(dirent->d_name, name, namlen))
248 goto efault;
249 if (__put_user(0, dirent->d_name + namlen))
250 goto efault;
251 buf->previous = dirent;
252 dirent = (void __user *)dirent + reclen;
253 buf->current_dir = dirent;
254 buf->count -= reclen;
255 return 0;
256 efault:
257 buf->error = -EFAULT;
258 return -EFAULT;
261 asmlinkage long sys_getdents64(unsigned int fd, struct linux_dirent64 __user * dirent, unsigned int count)
263 struct file * file;
264 struct linux_dirent64 __user * lastdirent;
265 struct getdents_callback64 buf;
266 int error;
268 error = -EFAULT;
269 if (!access_ok(VERIFY_WRITE, dirent, count))
270 goto out;
272 error = -EBADF;
273 file = fget(fd);
274 if (!file)
275 goto out;
277 buf.current_dir = dirent;
278 buf.previous = NULL;
279 buf.count = count;
280 buf.error = 0;
282 error = vfs_readdir(file, filldir64, &buf);
283 if (error < 0)
284 goto out_putf;
285 error = buf.error;
286 lastdirent = buf.previous;
287 if (lastdirent) {
288 typeof(lastdirent->d_off) d_off = file->f_pos;
289 __put_user(d_off, &lastdirent->d_off);
290 error = count - buf.count;
293 out_putf:
294 fput(file);
295 out:
296 return error;