Linux Audio

Check our new training course

Real-Time Linux with PREEMPT_RT training

Feb 18-20, 2025
Register
Loading...
v6.9.4
  1// SPDX-License-Identifier: GPL-2.0
  2/*
  3 *  linux/fs/readdir.c
  4 *
  5 *  Copyright (C) 1995  Linus Torvalds
  6 */
  7
  8#include <linux/stddef.h>
  9#include <linux/kernel.h>
 10#include <linux/export.h>
 11#include <linux/time.h>
 12#include <linux/mm.h>
 13#include <linux/errno.h>
 14#include <linux/stat.h>
 15#include <linux/file.h>
 16#include <linux/fs.h>
 17#include <linux/fsnotify.h>
 18#include <linux/dirent.h>
 19#include <linux/security.h>
 20#include <linux/syscalls.h>
 21#include <linux/unistd.h>
 22#include <linux/compat.h>
 23#include <linux/uaccess.h>
 24
 25#include <asm/unaligned.h>
 26
 27/*
 28 * Some filesystems were never converted to '->iterate_shared()'
 29 * and their directory iterators want the inode lock held for
 30 * writing. This wrapper allows for converting from the shared
 31 * semantics to the exclusive inode use.
 32 */
 33int wrap_directory_iterator(struct file *file,
 34			    struct dir_context *ctx,
 35			    int (*iter)(struct file *, struct dir_context *))
 36{
 37	struct inode *inode = file_inode(file);
 38	int ret;
 39
 40	/*
 41	 * We'd love to have an 'inode_upgrade_trylock()' operation,
 42	 * see the comment in mmap_upgrade_trylock() in mm/memory.c.
 43	 *
 44	 * But considering this is for "filesystems that never got
 45	 * converted", it really doesn't matter.
 46	 *
 47	 * Also note that since we have to return with the lock held
 48	 * for reading, we can't use the "killable()" locking here,
 49	 * since we do need to get the lock even if we're dying.
 50	 *
 51	 * We could do the write part killably and then get the read
 52	 * lock unconditionally if it mattered, but see above on why
 53	 * this does the very simplistic conversion.
 54	 */
 55	up_read(&inode->i_rwsem);
 56	down_write(&inode->i_rwsem);
 57
 58	/*
 59	 * Since we dropped the inode lock, we should do the
 60	 * DEADDIR test again. See 'iterate_dir()' below.
 61	 *
 62	 * Note that we don't need to re-do the f_pos games,
 63	 * since the file must be locked wrt f_pos anyway.
 64	 */
 65	ret = -ENOENT;
 66	if (!IS_DEADDIR(inode))
 67		ret = iter(file, ctx);
 68
 69	downgrade_write(&inode->i_rwsem);
 70	return ret;
 71}
 72EXPORT_SYMBOL(wrap_directory_iterator);
 73
 74/*
 75 * Note the "unsafe_put_user() semantics: we goto a
 76 * label for errors.
 77 */
 78#define unsafe_copy_dirent_name(_dst, _src, _len, label) do {	\
 79	char __user *dst = (_dst);				\
 80	const char *src = (_src);				\
 81	size_t len = (_len);					\
 82	unsafe_put_user(0, dst+len, label);			\
 83	unsafe_copy_to_user(dst, src, len, label);		\
 84} while (0)
 85
 86
 87int iterate_dir(struct file *file, struct dir_context *ctx)
 88{
 89	struct inode *inode = file_inode(file);
 
 90	int res = -ENOTDIR;
 91
 92	if (!file->f_op->iterate_shared)
 
 93		goto out;
 94
 95	res = security_file_permission(file, MAY_READ);
 96	if (res)
 97		goto out;
 98
 99	res = fsnotify_file_perm(file, MAY_READ);
100	if (res)
101		goto out;
102
103	res = down_read_killable(&inode->i_rwsem);
104	if (res)
105		goto out;
106
107	res = -ENOENT;
108	if (!IS_DEADDIR(inode)) {
109		ctx->pos = file->f_pos;
110		res = file->f_op->iterate_shared(file, ctx);
 
 
 
111		file->f_pos = ctx->pos;
112		fsnotify_access(file);
113		file_accessed(file);
114	}
115	inode_unlock_shared(inode);
 
 
 
116out:
117	return res;
118}
119EXPORT_SYMBOL(iterate_dir);
120
121/*
122 * POSIX says that a dirent name cannot contain NULL or a '/'.
123 *
124 * It's not 100% clear what we should really do in this case.
125 * The filesystem is clearly corrupted, but returning a hard
126 * error means that you now don't see any of the other names
127 * either, so that isn't a perfect alternative.
128 *
129 * And if you return an error, what error do you use? Several
130 * filesystems seem to have decided on EUCLEAN being the error
131 * code for EFSCORRUPTED, and that may be the error to use. Or
132 * just EIO, which is perhaps more obvious to users.
133 *
134 * In order to see the other file names in the directory, the
135 * caller might want to make this a "soft" error: skip the
136 * entry, and return the error at the end instead.
137 *
138 * Note that this should likely do a "memchr(name, 0, len)"
139 * check too, since that would be filesystem corruption as
140 * well. However, that case can't actually confuse user space,
141 * which has to do a strlen() on the name anyway to find the
142 * filename length, and the above "soft error" worry means
143 * that it's probably better left alone until we have that
144 * issue clarified.
145 *
146 * Note the PATH_MAX check - it's arbitrary but the real
147 * kernel limit on a possible path component, not NAME_MAX,
148 * which is the technical standard limit.
149 */
150static int verify_dirent_name(const char *name, int len)
151{
152	if (len <= 0 || len >= PATH_MAX)
153		return -EIO;
154	if (memchr(name, '/', len))
155		return -EIO;
156	return 0;
157}
158
159/*
160 * Traditional linux readdir() handling..
161 *
162 * "count=1" is a special case, meaning that the buffer is one
163 * dirent-structure in size and that the code can't handle more
164 * anyway. Thus the special "fillonedir()" function for that
165 * case (the low-level handlers don't need to care about this).
166 */
167
168#ifdef __ARCH_WANT_OLD_READDIR
169
170struct old_linux_dirent {
171	unsigned long	d_ino;
172	unsigned long	d_offset;
173	unsigned short	d_namlen;
174	char		d_name[];
175};
176
177struct readdir_callback {
178	struct dir_context ctx;
179	struct old_linux_dirent __user * dirent;
180	int result;
181};
182
183static bool fillonedir(struct dir_context *ctx, const char *name, int namlen,
184		      loff_t offset, u64 ino, unsigned int d_type)
185{
186	struct readdir_callback *buf =
187		container_of(ctx, struct readdir_callback, ctx);
188	struct old_linux_dirent __user * dirent;
189	unsigned long d_ino;
190
191	if (buf->result)
192		return false;
193	buf->result = verify_dirent_name(name, namlen);
194	if (buf->result)
195		return false;
196	d_ino = ino;
197	if (sizeof(d_ino) < sizeof(ino) && d_ino != ino) {
198		buf->result = -EOVERFLOW;
199		return false;
200	}
201	buf->result++;
202	dirent = buf->dirent;
203	if (!user_write_access_begin(dirent,
204			(unsigned long)(dirent->d_name + namlen + 1) -
205				(unsigned long)dirent))
206		goto efault;
207	unsafe_put_user(d_ino, &dirent->d_ino, efault_end);
208	unsafe_put_user(offset, &dirent->d_offset, efault_end);
209	unsafe_put_user(namlen, &dirent->d_namlen, efault_end);
210	unsafe_copy_dirent_name(dirent->d_name, name, namlen, efault_end);
211	user_write_access_end();
212	return true;
213efault_end:
214	user_write_access_end();
215efault:
216	buf->result = -EFAULT;
217	return false;
218}
219
220SYSCALL_DEFINE3(old_readdir, unsigned int, fd,
221		struct old_linux_dirent __user *, dirent, unsigned int, count)
222{
223	int error;
224	struct fd f = fdget_pos(fd);
225	struct readdir_callback buf = {
226		.ctx.actor = fillonedir,
227		.dirent = dirent
228	};
229
230	if (!f.file)
231		return -EBADF;
232
233	error = iterate_dir(f.file, &buf.ctx);
234	if (buf.result)
235		error = buf.result;
236
237	fdput_pos(f);
238	return error;
239}
240
241#endif /* __ARCH_WANT_OLD_READDIR */
242
243/*
244 * New, all-improved, singing, dancing, iBCS2-compliant getdents()
245 * interface. 
246 */
247struct linux_dirent {
248	unsigned long	d_ino;
249	unsigned long	d_off;
250	unsigned short	d_reclen;
251	char		d_name[];
252};
253
254struct getdents_callback {
255	struct dir_context ctx;
256	struct linux_dirent __user * current_dir;
257	int prev_reclen;
258	int count;
259	int error;
260};
261
262static bool filldir(struct dir_context *ctx, const char *name, int namlen,
263		   loff_t offset, u64 ino, unsigned int d_type)
264{
265	struct linux_dirent __user *dirent, *prev;
266	struct getdents_callback *buf =
267		container_of(ctx, struct getdents_callback, ctx);
268	unsigned long d_ino;
269	int reclen = ALIGN(offsetof(struct linux_dirent, d_name) + namlen + 2,
270		sizeof(long));
271	int prev_reclen;
272
273	buf->error = verify_dirent_name(name, namlen);
274	if (unlikely(buf->error))
275		return false;
276	buf->error = -EINVAL;	/* only used if we fail.. */
277	if (reclen > buf->count)
278		return false;
279	d_ino = ino;
280	if (sizeof(d_ino) < sizeof(ino) && d_ino != ino) {
281		buf->error = -EOVERFLOW;
282		return false;
283	}
284	prev_reclen = buf->prev_reclen;
285	if (prev_reclen && signal_pending(current))
286		return false;
287	dirent = buf->current_dir;
288	prev = (void __user *) dirent - prev_reclen;
289	if (!user_write_access_begin(prev, reclen + prev_reclen))
290		goto efault;
291
292	/* This might be 'dirent->d_off', but if so it will get overwritten */
293	unsafe_put_user(offset, &prev->d_off, efault_end);
294	unsafe_put_user(d_ino, &dirent->d_ino, efault_end);
295	unsafe_put_user(reclen, &dirent->d_reclen, efault_end);
296	unsafe_put_user(d_type, (char __user *) dirent + reclen - 1, efault_end);
297	unsafe_copy_dirent_name(dirent->d_name, name, namlen, efault_end);
298	user_write_access_end();
299
300	buf->current_dir = (void __user *)dirent + reclen;
301	buf->prev_reclen = reclen;
302	buf->count -= reclen;
303	return true;
304efault_end:
305	user_write_access_end();
306efault:
307	buf->error = -EFAULT;
308	return false;
309}
310
311SYSCALL_DEFINE3(getdents, unsigned int, fd,
312		struct linux_dirent __user *, dirent, unsigned int, count)
313{
314	struct fd f;
315	struct getdents_callback buf = {
316		.ctx.actor = filldir,
317		.count = count,
318		.current_dir = dirent
319	};
320	int error;
321
322	f = fdget_pos(fd);
323	if (!f.file)
324		return -EBADF;
325
326	error = iterate_dir(f.file, &buf.ctx);
327	if (error >= 0)
328		error = buf.error;
329	if (buf.prev_reclen) {
330		struct linux_dirent __user * lastdirent;
331		lastdirent = (void __user *)buf.current_dir - buf.prev_reclen;
332
333		if (put_user(buf.ctx.pos, &lastdirent->d_off))
334			error = -EFAULT;
335		else
336			error = count - buf.count;
337	}
338	fdput_pos(f);
339	return error;
340}
341
342struct getdents_callback64 {
343	struct dir_context ctx;
344	struct linux_dirent64 __user * current_dir;
345	int prev_reclen;
346	int count;
347	int error;
348};
349
350static bool filldir64(struct dir_context *ctx, const char *name, int namlen,
351		     loff_t offset, u64 ino, unsigned int d_type)
352{
353	struct linux_dirent64 __user *dirent, *prev;
354	struct getdents_callback64 *buf =
355		container_of(ctx, struct getdents_callback64, ctx);
356	int reclen = ALIGN(offsetof(struct linux_dirent64, d_name) + namlen + 1,
357		sizeof(u64));
358	int prev_reclen;
359
360	buf->error = verify_dirent_name(name, namlen);
361	if (unlikely(buf->error))
362		return false;
363	buf->error = -EINVAL;	/* only used if we fail.. */
364	if (reclen > buf->count)
365		return false;
366	prev_reclen = buf->prev_reclen;
367	if (prev_reclen && signal_pending(current))
368		return false;
369	dirent = buf->current_dir;
370	prev = (void __user *)dirent - prev_reclen;
371	if (!user_write_access_begin(prev, reclen + prev_reclen))
372		goto efault;
373
374	/* This might be 'dirent->d_off', but if so it will get overwritten */
375	unsafe_put_user(offset, &prev->d_off, efault_end);
376	unsafe_put_user(ino, &dirent->d_ino, efault_end);
377	unsafe_put_user(reclen, &dirent->d_reclen, efault_end);
378	unsafe_put_user(d_type, &dirent->d_type, efault_end);
379	unsafe_copy_dirent_name(dirent->d_name, name, namlen, efault_end);
380	user_write_access_end();
381
382	buf->prev_reclen = reclen;
383	buf->current_dir = (void __user *)dirent + reclen;
384	buf->count -= reclen;
385	return true;
386
387efault_end:
388	user_write_access_end();
389efault:
390	buf->error = -EFAULT;
391	return false;
392}
393
394SYSCALL_DEFINE3(getdents64, unsigned int, fd,
395		struct linux_dirent64 __user *, dirent, unsigned int, count)
396{
397	struct fd f;
398	struct getdents_callback64 buf = {
399		.ctx.actor = filldir64,
400		.count = count,
401		.current_dir = dirent
402	};
403	int error;
404
405	f = fdget_pos(fd);
406	if (!f.file)
407		return -EBADF;
408
409	error = iterate_dir(f.file, &buf.ctx);
410	if (error >= 0)
411		error = buf.error;
412	if (buf.prev_reclen) {
413		struct linux_dirent64 __user * lastdirent;
414		typeof(lastdirent->d_off) d_off = buf.ctx.pos;
415
416		lastdirent = (void __user *) buf.current_dir - buf.prev_reclen;
417		if (put_user(d_off, &lastdirent->d_off))
418			error = -EFAULT;
419		else
420			error = count - buf.count;
421	}
422	fdput_pos(f);
423	return error;
424}
425
426#ifdef CONFIG_COMPAT
427struct compat_old_linux_dirent {
428	compat_ulong_t	d_ino;
429	compat_ulong_t	d_offset;
430	unsigned short	d_namlen;
431	char		d_name[];
432};
433
434struct compat_readdir_callback {
435	struct dir_context ctx;
436	struct compat_old_linux_dirent __user *dirent;
437	int result;
438};
439
440static bool compat_fillonedir(struct dir_context *ctx, const char *name,
441			     int namlen, loff_t offset, u64 ino,
442			     unsigned int d_type)
443{
444	struct compat_readdir_callback *buf =
445		container_of(ctx, struct compat_readdir_callback, ctx);
446	struct compat_old_linux_dirent __user *dirent;
447	compat_ulong_t d_ino;
448
449	if (buf->result)
450		return false;
451	buf->result = verify_dirent_name(name, namlen);
452	if (buf->result)
453		return false;
454	d_ino = ino;
455	if (sizeof(d_ino) < sizeof(ino) && d_ino != ino) {
456		buf->result = -EOVERFLOW;
457		return false;
458	}
459	buf->result++;
460	dirent = buf->dirent;
461	if (!user_write_access_begin(dirent,
462			(unsigned long)(dirent->d_name + namlen + 1) -
463				(unsigned long)dirent))
464		goto efault;
465	unsafe_put_user(d_ino, &dirent->d_ino, efault_end);
466	unsafe_put_user(offset, &dirent->d_offset, efault_end);
467	unsafe_put_user(namlen, &dirent->d_namlen, efault_end);
468	unsafe_copy_dirent_name(dirent->d_name, name, namlen, efault_end);
469	user_write_access_end();
470	return true;
471efault_end:
472	user_write_access_end();
473efault:
474	buf->result = -EFAULT;
475	return false;
476}
477
478COMPAT_SYSCALL_DEFINE3(old_readdir, unsigned int, fd,
479		struct compat_old_linux_dirent __user *, dirent, unsigned int, count)
480{
481	int error;
482	struct fd f = fdget_pos(fd);
483	struct compat_readdir_callback buf = {
484		.ctx.actor = compat_fillonedir,
485		.dirent = dirent
486	};
487
488	if (!f.file)
489		return -EBADF;
490
491	error = iterate_dir(f.file, &buf.ctx);
492	if (buf.result)
493		error = buf.result;
494
495	fdput_pos(f);
496	return error;
497}
498
499struct compat_linux_dirent {
500	compat_ulong_t	d_ino;
501	compat_ulong_t	d_off;
502	unsigned short	d_reclen;
503	char		d_name[];
504};
505
506struct compat_getdents_callback {
507	struct dir_context ctx;
508	struct compat_linux_dirent __user *current_dir;
509	int prev_reclen;
510	int count;
511	int error;
512};
513
514static bool compat_filldir(struct dir_context *ctx, const char *name, int namlen,
515		loff_t offset, u64 ino, unsigned int d_type)
516{
517	struct compat_linux_dirent __user *dirent, *prev;
518	struct compat_getdents_callback *buf =
519		container_of(ctx, struct compat_getdents_callback, ctx);
520	compat_ulong_t d_ino;
521	int reclen = ALIGN(offsetof(struct compat_linux_dirent, d_name) +
522		namlen + 2, sizeof(compat_long_t));
523	int prev_reclen;
524
525	buf->error = verify_dirent_name(name, namlen);
526	if (unlikely(buf->error))
527		return false;
528	buf->error = -EINVAL;	/* only used if we fail.. */
529	if (reclen > buf->count)
530		return false;
531	d_ino = ino;
532	if (sizeof(d_ino) < sizeof(ino) && d_ino != ino) {
533		buf->error = -EOVERFLOW;
534		return false;
535	}
536	prev_reclen = buf->prev_reclen;
537	if (prev_reclen && signal_pending(current))
538		return false;
539	dirent = buf->current_dir;
540	prev = (void __user *) dirent - prev_reclen;
541	if (!user_write_access_begin(prev, reclen + prev_reclen))
542		goto efault;
543
544	unsafe_put_user(offset, &prev->d_off, efault_end);
545	unsafe_put_user(d_ino, &dirent->d_ino, efault_end);
546	unsafe_put_user(reclen, &dirent->d_reclen, efault_end);
547	unsafe_put_user(d_type, (char __user *) dirent + reclen - 1, efault_end);
548	unsafe_copy_dirent_name(dirent->d_name, name, namlen, efault_end);
549	user_write_access_end();
550
551	buf->prev_reclen = reclen;
552	buf->current_dir = (void __user *)dirent + reclen;
553	buf->count -= reclen;
554	return true;
555efault_end:
556	user_write_access_end();
557efault:
558	buf->error = -EFAULT;
559	return false;
560}
561
562COMPAT_SYSCALL_DEFINE3(getdents, unsigned int, fd,
563		struct compat_linux_dirent __user *, dirent, unsigned int, count)
564{
565	struct fd f;
566	struct compat_getdents_callback buf = {
567		.ctx.actor = compat_filldir,
568		.current_dir = dirent,
569		.count = count
570	};
571	int error;
572
573	f = fdget_pos(fd);
574	if (!f.file)
575		return -EBADF;
576
577	error = iterate_dir(f.file, &buf.ctx);
578	if (error >= 0)
579		error = buf.error;
580	if (buf.prev_reclen) {
581		struct compat_linux_dirent __user * lastdirent;
582		lastdirent = (void __user *)buf.current_dir - buf.prev_reclen;
583
584		if (put_user(buf.ctx.pos, &lastdirent->d_off))
585			error = -EFAULT;
586		else
587			error = count - buf.count;
588	}
589	fdput_pos(f);
590	return error;
591}
592#endif
v5.14.15
  1// SPDX-License-Identifier: GPL-2.0
  2/*
  3 *  linux/fs/readdir.c
  4 *
  5 *  Copyright (C) 1995  Linus Torvalds
  6 */
  7
  8#include <linux/stddef.h>
  9#include <linux/kernel.h>
 10#include <linux/export.h>
 11#include <linux/time.h>
 12#include <linux/mm.h>
 13#include <linux/errno.h>
 14#include <linux/stat.h>
 15#include <linux/file.h>
 16#include <linux/fs.h>
 17#include <linux/fsnotify.h>
 18#include <linux/dirent.h>
 19#include <linux/security.h>
 20#include <linux/syscalls.h>
 21#include <linux/unistd.h>
 22#include <linux/compat.h>
 23#include <linux/uaccess.h>
 24
 25#include <asm/unaligned.h>
 26
 27/*
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 28 * Note the "unsafe_put_user() semantics: we goto a
 29 * label for errors.
 30 */
 31#define unsafe_copy_dirent_name(_dst, _src, _len, label) do {	\
 32	char __user *dst = (_dst);				\
 33	const char *src = (_src);				\
 34	size_t len = (_len);					\
 35	unsafe_put_user(0, dst+len, label);			\
 36	unsafe_copy_to_user(dst, src, len, label);		\
 37} while (0)
 38
 39
 40int iterate_dir(struct file *file, struct dir_context *ctx)
 41{
 42	struct inode *inode = file_inode(file);
 43	bool shared = false;
 44	int res = -ENOTDIR;
 45	if (file->f_op->iterate_shared)
 46		shared = true;
 47	else if (!file->f_op->iterate)
 48		goto out;
 49
 50	res = security_file_permission(file, MAY_READ);
 51	if (res)
 52		goto out;
 53
 54	if (shared)
 55		res = down_read_killable(&inode->i_rwsem);
 56	else
 57		res = down_write_killable(&inode->i_rwsem);
 
 58	if (res)
 59		goto out;
 60
 61	res = -ENOENT;
 62	if (!IS_DEADDIR(inode)) {
 63		ctx->pos = file->f_pos;
 64		if (shared)
 65			res = file->f_op->iterate_shared(file, ctx);
 66		else
 67			res = file->f_op->iterate(file, ctx);
 68		file->f_pos = ctx->pos;
 69		fsnotify_access(file);
 70		file_accessed(file);
 71	}
 72	if (shared)
 73		inode_unlock_shared(inode);
 74	else
 75		inode_unlock(inode);
 76out:
 77	return res;
 78}
 79EXPORT_SYMBOL(iterate_dir);
 80
 81/*
 82 * POSIX says that a dirent name cannot contain NULL or a '/'.
 83 *
 84 * It's not 100% clear what we should really do in this case.
 85 * The filesystem is clearly corrupted, but returning a hard
 86 * error means that you now don't see any of the other names
 87 * either, so that isn't a perfect alternative.
 88 *
 89 * And if you return an error, what error do you use? Several
 90 * filesystems seem to have decided on EUCLEAN being the error
 91 * code for EFSCORRUPTED, and that may be the error to use. Or
 92 * just EIO, which is perhaps more obvious to users.
 93 *
 94 * In order to see the other file names in the directory, the
 95 * caller might want to make this a "soft" error: skip the
 96 * entry, and return the error at the end instead.
 97 *
 98 * Note that this should likely do a "memchr(name, 0, len)"
 99 * check too, since that would be filesystem corruption as
100 * well. However, that case can't actually confuse user space,
101 * which has to do a strlen() on the name anyway to find the
102 * filename length, and the above "soft error" worry means
103 * that it's probably better left alone until we have that
104 * issue clarified.
105 *
106 * Note the PATH_MAX check - it's arbitrary but the real
107 * kernel limit on a possible path component, not NAME_MAX,
108 * which is the technical standard limit.
109 */
110static int verify_dirent_name(const char *name, int len)
111{
112	if (len <= 0 || len >= PATH_MAX)
113		return -EIO;
114	if (memchr(name, '/', len))
115		return -EIO;
116	return 0;
117}
118
119/*
120 * Traditional linux readdir() handling..
121 *
122 * "count=1" is a special case, meaning that the buffer is one
123 * dirent-structure in size and that the code can't handle more
124 * anyway. Thus the special "fillonedir()" function for that
125 * case (the low-level handlers don't need to care about this).
126 */
127
128#ifdef __ARCH_WANT_OLD_READDIR
129
130struct old_linux_dirent {
131	unsigned long	d_ino;
132	unsigned long	d_offset;
133	unsigned short	d_namlen;
134	char		d_name[1];
135};
136
137struct readdir_callback {
138	struct dir_context ctx;
139	struct old_linux_dirent __user * dirent;
140	int result;
141};
142
143static int fillonedir(struct dir_context *ctx, const char *name, int namlen,
144		      loff_t offset, u64 ino, unsigned int d_type)
145{
146	struct readdir_callback *buf =
147		container_of(ctx, struct readdir_callback, ctx);
148	struct old_linux_dirent __user * dirent;
149	unsigned long d_ino;
150
151	if (buf->result)
152		return -EINVAL;
153	buf->result = verify_dirent_name(name, namlen);
154	if (buf->result < 0)
155		return buf->result;
156	d_ino = ino;
157	if (sizeof(d_ino) < sizeof(ino) && d_ino != ino) {
158		buf->result = -EOVERFLOW;
159		return -EOVERFLOW;
160	}
161	buf->result++;
162	dirent = buf->dirent;
163	if (!user_write_access_begin(dirent,
164			(unsigned long)(dirent->d_name + namlen + 1) -
165				(unsigned long)dirent))
166		goto efault;
167	unsafe_put_user(d_ino, &dirent->d_ino, efault_end);
168	unsafe_put_user(offset, &dirent->d_offset, efault_end);
169	unsafe_put_user(namlen, &dirent->d_namlen, efault_end);
170	unsafe_copy_dirent_name(dirent->d_name, name, namlen, efault_end);
171	user_write_access_end();
172	return 0;
173efault_end:
174	user_write_access_end();
175efault:
176	buf->result = -EFAULT;
177	return -EFAULT;
178}
179
180SYSCALL_DEFINE3(old_readdir, unsigned int, fd,
181		struct old_linux_dirent __user *, dirent, unsigned int, count)
182{
183	int error;
184	struct fd f = fdget_pos(fd);
185	struct readdir_callback buf = {
186		.ctx.actor = fillonedir,
187		.dirent = dirent
188	};
189
190	if (!f.file)
191		return -EBADF;
192
193	error = iterate_dir(f.file, &buf.ctx);
194	if (buf.result)
195		error = buf.result;
196
197	fdput_pos(f);
198	return error;
199}
200
201#endif /* __ARCH_WANT_OLD_READDIR */
202
203/*
204 * New, all-improved, singing, dancing, iBCS2-compliant getdents()
205 * interface. 
206 */
207struct linux_dirent {
208	unsigned long	d_ino;
209	unsigned long	d_off;
210	unsigned short	d_reclen;
211	char		d_name[1];
212};
213
214struct getdents_callback {
215	struct dir_context ctx;
216	struct linux_dirent __user * current_dir;
217	int prev_reclen;
218	int count;
219	int error;
220};
221
222static int filldir(struct dir_context *ctx, const char *name, int namlen,
223		   loff_t offset, u64 ino, unsigned int d_type)
224{
225	struct linux_dirent __user *dirent, *prev;
226	struct getdents_callback *buf =
227		container_of(ctx, struct getdents_callback, ctx);
228	unsigned long d_ino;
229	int reclen = ALIGN(offsetof(struct linux_dirent, d_name) + namlen + 2,
230		sizeof(long));
231	int prev_reclen;
232
233	buf->error = verify_dirent_name(name, namlen);
234	if (unlikely(buf->error))
235		return buf->error;
236	buf->error = -EINVAL;	/* only used if we fail.. */
237	if (reclen > buf->count)
238		return -EINVAL;
239	d_ino = ino;
240	if (sizeof(d_ino) < sizeof(ino) && d_ino != ino) {
241		buf->error = -EOVERFLOW;
242		return -EOVERFLOW;
243	}
244	prev_reclen = buf->prev_reclen;
245	if (prev_reclen && signal_pending(current))
246		return -EINTR;
247	dirent = buf->current_dir;
248	prev = (void __user *) dirent - prev_reclen;
249	if (!user_write_access_begin(prev, reclen + prev_reclen))
250		goto efault;
251
252	/* This might be 'dirent->d_off', but if so it will get overwritten */
253	unsafe_put_user(offset, &prev->d_off, efault_end);
254	unsafe_put_user(d_ino, &dirent->d_ino, efault_end);
255	unsafe_put_user(reclen, &dirent->d_reclen, efault_end);
256	unsafe_put_user(d_type, (char __user *) dirent + reclen - 1, efault_end);
257	unsafe_copy_dirent_name(dirent->d_name, name, namlen, efault_end);
258	user_write_access_end();
259
260	buf->current_dir = (void __user *)dirent + reclen;
261	buf->prev_reclen = reclen;
262	buf->count -= reclen;
263	return 0;
264efault_end:
265	user_write_access_end();
266efault:
267	buf->error = -EFAULT;
268	return -EFAULT;
269}
270
271SYSCALL_DEFINE3(getdents, unsigned int, fd,
272		struct linux_dirent __user *, dirent, unsigned int, count)
273{
274	struct fd f;
275	struct getdents_callback buf = {
276		.ctx.actor = filldir,
277		.count = count,
278		.current_dir = dirent
279	};
280	int error;
281
282	f = fdget_pos(fd);
283	if (!f.file)
284		return -EBADF;
285
286	error = iterate_dir(f.file, &buf.ctx);
287	if (error >= 0)
288		error = buf.error;
289	if (buf.prev_reclen) {
290		struct linux_dirent __user * lastdirent;
291		lastdirent = (void __user *)buf.current_dir - buf.prev_reclen;
292
293		if (put_user(buf.ctx.pos, &lastdirent->d_off))
294			error = -EFAULT;
295		else
296			error = count - buf.count;
297	}
298	fdput_pos(f);
299	return error;
300}
301
302struct getdents_callback64 {
303	struct dir_context ctx;
304	struct linux_dirent64 __user * current_dir;
305	int prev_reclen;
306	int count;
307	int error;
308};
309
310static int filldir64(struct dir_context *ctx, const char *name, int namlen,
311		     loff_t offset, u64 ino, unsigned int d_type)
312{
313	struct linux_dirent64 __user *dirent, *prev;
314	struct getdents_callback64 *buf =
315		container_of(ctx, struct getdents_callback64, ctx);
316	int reclen = ALIGN(offsetof(struct linux_dirent64, d_name) + namlen + 1,
317		sizeof(u64));
318	int prev_reclen;
319
320	buf->error = verify_dirent_name(name, namlen);
321	if (unlikely(buf->error))
322		return buf->error;
323	buf->error = -EINVAL;	/* only used if we fail.. */
324	if (reclen > buf->count)
325		return -EINVAL;
326	prev_reclen = buf->prev_reclen;
327	if (prev_reclen && signal_pending(current))
328		return -EINTR;
329	dirent = buf->current_dir;
330	prev = (void __user *)dirent - prev_reclen;
331	if (!user_write_access_begin(prev, reclen + prev_reclen))
332		goto efault;
333
334	/* This might be 'dirent->d_off', but if so it will get overwritten */
335	unsafe_put_user(offset, &prev->d_off, efault_end);
336	unsafe_put_user(ino, &dirent->d_ino, efault_end);
337	unsafe_put_user(reclen, &dirent->d_reclen, efault_end);
338	unsafe_put_user(d_type, &dirent->d_type, efault_end);
339	unsafe_copy_dirent_name(dirent->d_name, name, namlen, efault_end);
340	user_write_access_end();
341
342	buf->prev_reclen = reclen;
343	buf->current_dir = (void __user *)dirent + reclen;
344	buf->count -= reclen;
345	return 0;
346
347efault_end:
348	user_write_access_end();
349efault:
350	buf->error = -EFAULT;
351	return -EFAULT;
352}
353
354SYSCALL_DEFINE3(getdents64, unsigned int, fd,
355		struct linux_dirent64 __user *, dirent, unsigned int, count)
356{
357	struct fd f;
358	struct getdents_callback64 buf = {
359		.ctx.actor = filldir64,
360		.count = count,
361		.current_dir = dirent
362	};
363	int error;
364
365	f = fdget_pos(fd);
366	if (!f.file)
367		return -EBADF;
368
369	error = iterate_dir(f.file, &buf.ctx);
370	if (error >= 0)
371		error = buf.error;
372	if (buf.prev_reclen) {
373		struct linux_dirent64 __user * lastdirent;
374		typeof(lastdirent->d_off) d_off = buf.ctx.pos;
375
376		lastdirent = (void __user *) buf.current_dir - buf.prev_reclen;
377		if (put_user(d_off, &lastdirent->d_off))
378			error = -EFAULT;
379		else
380			error = count - buf.count;
381	}
382	fdput_pos(f);
383	return error;
384}
385
386#ifdef CONFIG_COMPAT
387struct compat_old_linux_dirent {
388	compat_ulong_t	d_ino;
389	compat_ulong_t	d_offset;
390	unsigned short	d_namlen;
391	char		d_name[1];
392};
393
394struct compat_readdir_callback {
395	struct dir_context ctx;
396	struct compat_old_linux_dirent __user *dirent;
397	int result;
398};
399
400static int compat_fillonedir(struct dir_context *ctx, const char *name,
401			     int namlen, loff_t offset, u64 ino,
402			     unsigned int d_type)
403{
404	struct compat_readdir_callback *buf =
405		container_of(ctx, struct compat_readdir_callback, ctx);
406	struct compat_old_linux_dirent __user *dirent;
407	compat_ulong_t d_ino;
408
409	if (buf->result)
410		return -EINVAL;
411	buf->result = verify_dirent_name(name, namlen);
412	if (buf->result < 0)
413		return buf->result;
414	d_ino = ino;
415	if (sizeof(d_ino) < sizeof(ino) && d_ino != ino) {
416		buf->result = -EOVERFLOW;
417		return -EOVERFLOW;
418	}
419	buf->result++;
420	dirent = buf->dirent;
421	if (!user_write_access_begin(dirent,
422			(unsigned long)(dirent->d_name + namlen + 1) -
423				(unsigned long)dirent))
424		goto efault;
425	unsafe_put_user(d_ino, &dirent->d_ino, efault_end);
426	unsafe_put_user(offset, &dirent->d_offset, efault_end);
427	unsafe_put_user(namlen, &dirent->d_namlen, efault_end);
428	unsafe_copy_dirent_name(dirent->d_name, name, namlen, efault_end);
429	user_write_access_end();
430	return 0;
431efault_end:
432	user_write_access_end();
433efault:
434	buf->result = -EFAULT;
435	return -EFAULT;
436}
437
438COMPAT_SYSCALL_DEFINE3(old_readdir, unsigned int, fd,
439		struct compat_old_linux_dirent __user *, dirent, unsigned int, count)
440{
441	int error;
442	struct fd f = fdget_pos(fd);
443	struct compat_readdir_callback buf = {
444		.ctx.actor = compat_fillonedir,
445		.dirent = dirent
446	};
447
448	if (!f.file)
449		return -EBADF;
450
451	error = iterate_dir(f.file, &buf.ctx);
452	if (buf.result)
453		error = buf.result;
454
455	fdput_pos(f);
456	return error;
457}
458
459struct compat_linux_dirent {
460	compat_ulong_t	d_ino;
461	compat_ulong_t	d_off;
462	unsigned short	d_reclen;
463	char		d_name[1];
464};
465
466struct compat_getdents_callback {
467	struct dir_context ctx;
468	struct compat_linux_dirent __user *current_dir;
469	int prev_reclen;
470	int count;
471	int error;
472};
473
474static int compat_filldir(struct dir_context *ctx, const char *name, int namlen,
475		loff_t offset, u64 ino, unsigned int d_type)
476{
477	struct compat_linux_dirent __user *dirent, *prev;
478	struct compat_getdents_callback *buf =
479		container_of(ctx, struct compat_getdents_callback, ctx);
480	compat_ulong_t d_ino;
481	int reclen = ALIGN(offsetof(struct compat_linux_dirent, d_name) +
482		namlen + 2, sizeof(compat_long_t));
483	int prev_reclen;
484
485	buf->error = verify_dirent_name(name, namlen);
486	if (unlikely(buf->error))
487		return buf->error;
488	buf->error = -EINVAL;	/* only used if we fail.. */
489	if (reclen > buf->count)
490		return -EINVAL;
491	d_ino = ino;
492	if (sizeof(d_ino) < sizeof(ino) && d_ino != ino) {
493		buf->error = -EOVERFLOW;
494		return -EOVERFLOW;
495	}
496	prev_reclen = buf->prev_reclen;
497	if (prev_reclen && signal_pending(current))
498		return -EINTR;
499	dirent = buf->current_dir;
500	prev = (void __user *) dirent - prev_reclen;
501	if (!user_write_access_begin(prev, reclen + prev_reclen))
502		goto efault;
503
504	unsafe_put_user(offset, &prev->d_off, efault_end);
505	unsafe_put_user(d_ino, &dirent->d_ino, efault_end);
506	unsafe_put_user(reclen, &dirent->d_reclen, efault_end);
507	unsafe_put_user(d_type, (char __user *) dirent + reclen - 1, efault_end);
508	unsafe_copy_dirent_name(dirent->d_name, name, namlen, efault_end);
509	user_write_access_end();
510
511	buf->prev_reclen = reclen;
512	buf->current_dir = (void __user *)dirent + reclen;
513	buf->count -= reclen;
514	return 0;
515efault_end:
516	user_write_access_end();
517efault:
518	buf->error = -EFAULT;
519	return -EFAULT;
520}
521
522COMPAT_SYSCALL_DEFINE3(getdents, unsigned int, fd,
523		struct compat_linux_dirent __user *, dirent, unsigned int, count)
524{
525	struct fd f;
526	struct compat_getdents_callback buf = {
527		.ctx.actor = compat_filldir,
528		.current_dir = dirent,
529		.count = count
530	};
531	int error;
532
533	f = fdget_pos(fd);
534	if (!f.file)
535		return -EBADF;
536
537	error = iterate_dir(f.file, &buf.ctx);
538	if (error >= 0)
539		error = buf.error;
540	if (buf.prev_reclen) {
541		struct compat_linux_dirent __user * lastdirent;
542		lastdirent = (void __user *)buf.current_dir - buf.prev_reclen;
543
544		if (put_user(buf.ctx.pos, &lastdirent->d_off))
545			error = -EFAULT;
546		else
547			error = count - buf.count;
548	}
549	fdput_pos(f);
550	return error;
551}
552#endif