4 * Copyright (C) 1991, 1992 Linus Torvalds
7 #include <linux/string.h>
9 #include <linux/file.h>
10 #include <linux/quotaops.h>
11 #include <linux/fsnotify.h>
12 #include <linux/module.h>
13 #include <linux/slab.h>
14 #include <linux/tty.h>
15 #include <linux/namei.h>
16 #include <linux/backing-dev.h>
17 #include <linux/capability.h>
18 #include <linux/security.h>
19 #include <linux/mount.h>
20 #include <linux/vfs.h>
21 #include <linux/fcntl.h>
22 #include <asm/uaccess.h>
24 #include <linux/personality.h>
25 #include <linux/pagemap.h>
26 #include <linux/syscalls.h>
27 #include <linux/rcupdate.h>
28 #include <linux/audit.h>
29 #include <linux/falloc.h>
31 int vfs_statfs(struct dentry
*dentry
, struct kstatfs
*buf
)
37 if (dentry
->d_sb
->s_op
->statfs
) {
38 memset(buf
, 0, sizeof(*buf
));
39 retval
= security_sb_statfs(dentry
);
42 retval
= dentry
->d_sb
->s_op
->statfs(dentry
, buf
);
43 if (retval
== 0 && buf
->f_frsize
== 0)
44 buf
->f_frsize
= buf
->f_bsize
;
50 EXPORT_SYMBOL(vfs_statfs
);
52 static int vfs_statfs_native(struct dentry
*dentry
, struct statfs
*buf
)
57 retval
= vfs_statfs(dentry
, &st
);
61 if (sizeof(*buf
) == sizeof(st
))
62 memcpy(buf
, &st
, sizeof(st
));
64 if (sizeof buf
->f_blocks
== 4) {
65 if ((st
.f_blocks
| st
.f_bfree
| st
.f_bavail
) &
66 0xffffffff00000000ULL
)
69 * f_files and f_ffree may be -1; it's okay to stuff
72 if (st
.f_files
!= -1 &&
73 (st
.f_files
& 0xffffffff00000000ULL
))
75 if (st
.f_ffree
!= -1 &&
76 (st
.f_ffree
& 0xffffffff00000000ULL
))
80 buf
->f_type
= st
.f_type
;
81 buf
->f_bsize
= st
.f_bsize
;
82 buf
->f_blocks
= st
.f_blocks
;
83 buf
->f_bfree
= st
.f_bfree
;
84 buf
->f_bavail
= st
.f_bavail
;
85 buf
->f_files
= st
.f_files
;
86 buf
->f_ffree
= st
.f_ffree
;
87 buf
->f_fsid
= st
.f_fsid
;
88 buf
->f_namelen
= st
.f_namelen
;
89 buf
->f_frsize
= st
.f_frsize
;
90 memset(buf
->f_spare
, 0, sizeof(buf
->f_spare
));
95 static int vfs_statfs64(struct dentry
*dentry
, struct statfs64
*buf
)
100 retval
= vfs_statfs(dentry
, &st
);
104 if (sizeof(*buf
) == sizeof(st
))
105 memcpy(buf
, &st
, sizeof(st
));
107 buf
->f_type
= st
.f_type
;
108 buf
->f_bsize
= st
.f_bsize
;
109 buf
->f_blocks
= st
.f_blocks
;
110 buf
->f_bfree
= st
.f_bfree
;
111 buf
->f_bavail
= st
.f_bavail
;
112 buf
->f_files
= st
.f_files
;
113 buf
->f_ffree
= st
.f_ffree
;
114 buf
->f_fsid
= st
.f_fsid
;
115 buf
->f_namelen
= st
.f_namelen
;
116 buf
->f_frsize
= st
.f_frsize
;
117 memset(buf
->f_spare
, 0, sizeof(buf
->f_spare
));
122 asmlinkage
long sys_statfs(const char __user
* path
, struct statfs __user
* buf
)
127 error
= user_path_walk(path
, &nd
);
130 error
= vfs_statfs_native(nd
.path
.dentry
, &tmp
);
131 if (!error
&& copy_to_user(buf
, &tmp
, sizeof(tmp
)))
139 asmlinkage
long sys_statfs64(const char __user
*path
, size_t sz
, struct statfs64 __user
*buf
)
144 if (sz
!= sizeof(*buf
))
146 error
= user_path_walk(path
, &nd
);
149 error
= vfs_statfs64(nd
.path
.dentry
, &tmp
);
150 if (!error
&& copy_to_user(buf
, &tmp
, sizeof(tmp
)))
158 asmlinkage
long sys_fstatfs(unsigned int fd
, struct statfs __user
* buf
)
168 error
= vfs_statfs_native(file
->f_path
.dentry
, &tmp
);
169 if (!error
&& copy_to_user(buf
, &tmp
, sizeof(tmp
)))
176 asmlinkage
long sys_fstatfs64(unsigned int fd
, size_t sz
, struct statfs64 __user
*buf
)
182 if (sz
!= sizeof(*buf
))
189 error
= vfs_statfs64(file
->f_path
.dentry
, &tmp
);
190 if (!error
&& copy_to_user(buf
, &tmp
, sizeof(tmp
)))
197 int do_truncate(struct dentry
*dentry
, loff_t length
, unsigned int time_attrs
,
201 struct iattr newattrs
;
203 /* Not pretty: "inode->i_size" shouldn't really be signed. But it is. */
207 newattrs
.ia_size
= length
;
208 newattrs
.ia_valid
= ATTR_SIZE
| time_attrs
;
210 newattrs
.ia_file
= filp
;
211 newattrs
.ia_valid
|= ATTR_FILE
;
214 /* Remove suid/sgid on truncate too */
215 newattrs
.ia_valid
|= should_remove_suid(dentry
);
217 mutex_lock(&dentry
->d_inode
->i_mutex
);
218 err
= notify_change(dentry
, &newattrs
);
219 mutex_unlock(&dentry
->d_inode
->i_mutex
);
223 static long do_sys_truncate(const char __user
* path
, loff_t length
)
226 struct inode
* inode
;
230 if (length
< 0) /* sorry, but loff_t says... */
233 error
= user_path_walk(path
, &nd
);
236 inode
= nd
.path
.dentry
->d_inode
;
238 /* For directories it's -EISDIR, for other non-regulars - -EINVAL */
240 if (S_ISDIR(inode
->i_mode
))
244 if (!S_ISREG(inode
->i_mode
))
247 error
= mnt_want_write(nd
.path
.mnt
);
251 error
= vfs_permission(&nd
, MAY_WRITE
);
253 goto mnt_drop_write_and_out
;
256 if (IS_IMMUTABLE(inode
) || IS_APPEND(inode
))
257 goto mnt_drop_write_and_out
;
259 error
= get_write_access(inode
);
261 goto mnt_drop_write_and_out
;
264 * Make sure that there are no leases. get_write_access() protects
265 * against the truncate racing with a lease-granting setlease().
267 error
= break_lease(inode
, FMODE_WRITE
);
269 goto put_write_and_out
;
271 error
= locks_verify_truncate(inode
, NULL
, length
);
274 error
= do_truncate(nd
.path
.dentry
, length
, 0, NULL
);
278 put_write_access(inode
);
279 mnt_drop_write_and_out
:
280 mnt_drop_write(nd
.path
.mnt
);
287 asmlinkage
long sys_truncate(const char __user
* path
, unsigned long length
)
289 /* on 32-bit boxen it will cut the range 2^31--2^32-1 off */
290 return do_sys_truncate(path
, (long)length
);
293 static long do_sys_ftruncate(unsigned int fd
, loff_t length
, int small
)
295 struct inode
* inode
;
296 struct dentry
*dentry
;
308 /* explicitly opened as large or we are on 64-bit box */
309 if (file
->f_flags
& O_LARGEFILE
)
312 dentry
= file
->f_path
.dentry
;
313 inode
= dentry
->d_inode
;
315 if (!S_ISREG(inode
->i_mode
) || !(file
->f_mode
& FMODE_WRITE
))
319 /* Cannot ftruncate over 2^31 bytes without large file support */
320 if (small
&& length
> MAX_NON_LFS
)
324 if (IS_APPEND(inode
))
327 error
= locks_verify_truncate(inode
, file
, length
);
329 error
= do_truncate(dentry
, length
, ATTR_MTIME
|ATTR_CTIME
, file
);
336 asmlinkage
long sys_ftruncate(unsigned int fd
, unsigned long length
)
338 long ret
= do_sys_ftruncate(fd
, length
, 1);
339 /* avoid REGPARM breakage on x86: */
340 asmlinkage_protect(2, ret
, fd
, length
);
344 /* LFS versions of truncate are only needed on 32 bit machines */
345 #if BITS_PER_LONG == 32
346 asmlinkage
long sys_truncate64(const char __user
* path
, loff_t length
)
348 return do_sys_truncate(path
, length
);
351 asmlinkage
long sys_ftruncate64(unsigned int fd
, loff_t length
)
353 long ret
= do_sys_ftruncate(fd
, length
, 0);
354 /* avoid REGPARM breakage on x86: */
355 asmlinkage_protect(2, ret
, fd
, length
);
360 asmlinkage
long sys_fallocate(int fd
, int mode
, loff_t offset
, loff_t len
)
366 if (offset
< 0 || len
<= 0)
369 /* Return error if mode is not supported */
371 if (mode
&& !(mode
& FALLOC_FL_KEEP_SIZE
))
378 if (!(file
->f_mode
& FMODE_WRITE
))
381 * Revalidate the write permissions, in case security policy has
382 * changed since the files were opened.
384 ret
= security_file_permission(file
, MAY_WRITE
);
388 inode
= file
->f_path
.dentry
->d_inode
;
391 if (S_ISFIFO(inode
->i_mode
))
396 * Let individual file system decide if it supports preallocation
397 * for directories or not.
399 if (!S_ISREG(inode
->i_mode
) && !S_ISDIR(inode
->i_mode
))
403 /* Check for wrap through zero too */
404 if (((offset
+ len
) > inode
->i_sb
->s_maxbytes
) || ((offset
+ len
) < 0))
407 if (inode
->i_op
&& inode
->i_op
->fallocate
)
408 ret
= inode
->i_op
->fallocate(inode
, mode
, offset
, len
);
419 * access() needs to use the real uid/gid, not the effective uid/gid.
420 * We do this by temporarily clearing all FS-related capabilities and
421 * switching the fsuid/fsgid around to the real ones.
423 asmlinkage
long sys_faccessat(int dfd
, const char __user
*filename
, int mode
)
426 int old_fsuid
, old_fsgid
;
427 kernel_cap_t old_cap
;
430 if (mode
& ~S_IRWXO
) /* where's F_OK, X_OK, W_OK, R_OK? */
433 old_fsuid
= current
->fsuid
;
434 old_fsgid
= current
->fsgid
;
435 old_cap
= current
->cap_effective
;
437 current
->fsuid
= current
->uid
;
438 current
->fsgid
= current
->gid
;
441 * Clear the capabilities if we switch to a non-root user
443 * FIXME: There is a race here against sys_capset. The
444 * capabilities can change yet we will restore the old
445 * value below. We should hold task_capabilities_lock,
446 * but we cannot because user_path_walk can sleep.
449 cap_clear(current
->cap_effective
);
451 current
->cap_effective
= current
->cap_permitted
;
453 res
= __user_walk_fd(dfd
, filename
, LOOKUP_FOLLOW
|LOOKUP_ACCESS
, &nd
);
457 res
= vfs_permission(&nd
, mode
);
458 /* SuS v2 requires we report a read only fs too */
459 if(res
|| !(mode
& S_IWOTH
) ||
460 special_file(nd
.path
.dentry
->d_inode
->i_mode
))
461 goto out_path_release
;
463 * This is a rare case where using __mnt_is_readonly()
464 * is OK without a mnt_want/drop_write() pair. Since
465 * no actual write to the fs is performed here, we do
466 * not need to telegraph to that to anyone.
468 * By doing this, we accept that this access is
469 * inherently racy and know that the fs may change
470 * state before we even see this result.
472 if (__mnt_is_readonly(nd
.path
.mnt
))
478 current
->fsuid
= old_fsuid
;
479 current
->fsgid
= old_fsgid
;
480 current
->cap_effective
= old_cap
;
485 asmlinkage
long sys_access(const char __user
*filename
, int mode
)
487 return sys_faccessat(AT_FDCWD
, filename
, mode
);
490 asmlinkage
long sys_chdir(const char __user
* filename
)
495 error
= __user_walk(filename
,
496 LOOKUP_FOLLOW
|LOOKUP_DIRECTORY
|LOOKUP_CHDIR
, &nd
);
500 error
= vfs_permission(&nd
, MAY_EXEC
);
504 set_fs_pwd(current
->fs
, &nd
.path
);
512 asmlinkage
long sys_fchdir(unsigned int fd
)
523 inode
= file
->f_path
.dentry
->d_inode
;
526 if (!S_ISDIR(inode
->i_mode
))
529 error
= file_permission(file
, MAY_EXEC
);
531 set_fs_pwd(current
->fs
, &file
->f_path
);
538 asmlinkage
long sys_chroot(const char __user
* filename
)
543 error
= __user_walk(filename
, LOOKUP_FOLLOW
| LOOKUP_DIRECTORY
| LOOKUP_NOALT
, &nd
);
547 error
= vfs_permission(&nd
, MAY_EXEC
);
552 if (!capable(CAP_SYS_CHROOT
))
555 set_fs_root(current
->fs
, &nd
.path
);
564 asmlinkage
long sys_fchmod(unsigned int fd
, mode_t mode
)
566 struct inode
* inode
;
567 struct dentry
* dentry
;
570 struct iattr newattrs
;
576 dentry
= file
->f_path
.dentry
;
577 inode
= dentry
->d_inode
;
579 audit_inode(NULL
, dentry
);
581 err
= mnt_want_write(file
->f_path
.mnt
);
585 if (IS_IMMUTABLE(inode
) || IS_APPEND(inode
))
587 mutex_lock(&inode
->i_mutex
);
588 if (mode
== (mode_t
) -1)
589 mode
= inode
->i_mode
;
590 newattrs
.ia_mode
= (mode
& S_IALLUGO
) | (inode
->i_mode
& ~S_IALLUGO
);
591 newattrs
.ia_valid
= ATTR_MODE
| ATTR_CTIME
;
592 err
= notify_change(dentry
, &newattrs
);
593 mutex_unlock(&inode
->i_mutex
);
596 mnt_drop_write(file
->f_path
.mnt
);
603 asmlinkage
long sys_fchmodat(int dfd
, const char __user
*filename
,
607 struct inode
* inode
;
609 struct iattr newattrs
;
611 error
= __user_walk_fd(dfd
, filename
, LOOKUP_FOLLOW
, &nd
);
614 inode
= nd
.path
.dentry
->d_inode
;
616 error
= mnt_want_write(nd
.path
.mnt
);
621 if (IS_IMMUTABLE(inode
) || IS_APPEND(inode
))
624 mutex_lock(&inode
->i_mutex
);
625 if (mode
== (mode_t
) -1)
626 mode
= inode
->i_mode
;
627 newattrs
.ia_mode
= (mode
& S_IALLUGO
) | (inode
->i_mode
& ~S_IALLUGO
);
628 newattrs
.ia_valid
= ATTR_MODE
| ATTR_CTIME
;
629 error
= notify_change(nd
.path
.dentry
, &newattrs
);
630 mutex_unlock(&inode
->i_mutex
);
633 mnt_drop_write(nd
.path
.mnt
);
640 asmlinkage
long sys_chmod(const char __user
*filename
, mode_t mode
)
642 return sys_fchmodat(AT_FDCWD
, filename
, mode
);
645 static int chown_common(struct dentry
* dentry
, uid_t user
, gid_t group
)
647 struct inode
* inode
;
649 struct iattr newattrs
;
652 if (!(inode
= dentry
->d_inode
)) {
653 printk(KERN_ERR
"chown_common: NULL inode\n");
657 if (IS_IMMUTABLE(inode
) || IS_APPEND(inode
))
659 newattrs
.ia_valid
= ATTR_CTIME
;
660 if (user
!= (uid_t
) -1) {
661 newattrs
.ia_valid
|= ATTR_UID
;
662 newattrs
.ia_uid
= user
;
664 if (group
!= (gid_t
) -1) {
665 newattrs
.ia_valid
|= ATTR_GID
;
666 newattrs
.ia_gid
= group
;
668 if (!S_ISDIR(inode
->i_mode
))
670 ATTR_KILL_SUID
| ATTR_KILL_SGID
| ATTR_KILL_PRIV
;
671 mutex_lock(&inode
->i_mutex
);
672 error
= notify_change(dentry
, &newattrs
);
673 mutex_unlock(&inode
->i_mutex
);
678 asmlinkage
long sys_chown(const char __user
* filename
, uid_t user
, gid_t group
)
683 error
= user_path_walk(filename
, &nd
);
686 error
= mnt_want_write(nd
.path
.mnt
);
689 error
= chown_common(nd
.path
.dentry
, user
, group
);
690 mnt_drop_write(nd
.path
.mnt
);
697 asmlinkage
long sys_fchownat(int dfd
, const char __user
*filename
, uid_t user
,
698 gid_t group
, int flag
)
704 if ((flag
& ~AT_SYMLINK_NOFOLLOW
) != 0)
707 follow
= (flag
& AT_SYMLINK_NOFOLLOW
) ? 0 : LOOKUP_FOLLOW
;
708 error
= __user_walk_fd(dfd
, filename
, follow
, &nd
);
711 error
= mnt_want_write(nd
.path
.mnt
);
714 error
= chown_common(nd
.path
.dentry
, user
, group
);
715 mnt_drop_write(nd
.path
.mnt
);
722 asmlinkage
long sys_lchown(const char __user
* filename
, uid_t user
, gid_t group
)
727 error
= user_path_walk_link(filename
, &nd
);
730 error
= mnt_want_write(nd
.path
.mnt
);
733 error
= chown_common(nd
.path
.dentry
, user
, group
);
734 mnt_drop_write(nd
.path
.mnt
);
742 asmlinkage
long sys_fchown(unsigned int fd
, uid_t user
, gid_t group
)
746 struct dentry
* dentry
;
752 error
= mnt_want_write(file
->f_path
.mnt
);
755 dentry
= file
->f_path
.dentry
;
756 audit_inode(NULL
, dentry
);
757 error
= chown_common(dentry
, user
, group
);
758 mnt_drop_write(file
->f_path
.mnt
);
766 * You have to be very careful that these write
767 * counts get cleaned up in error cases and
768 * upon __fput(). This should probably never
769 * be called outside of __dentry_open().
771 static inline int __get_file_write_access(struct inode
*inode
,
772 struct vfsmount
*mnt
)
775 error
= get_write_access(inode
);
779 * Do not take mount writer counts on
780 * special files since no writes to
781 * the mount itself will occur.
783 if (!special_file(inode
->i_mode
)) {
785 * Balanced in __fput()
787 error
= mnt_want_write(mnt
);
789 put_write_access(inode
);
794 static struct file
*__dentry_open(struct dentry
*dentry
, struct vfsmount
*mnt
,
795 int flags
, struct file
*f
,
796 int (*open
)(struct inode
*, struct file
*))
802 f
->f_mode
= ((flags
+1) & O_ACCMODE
) | FMODE_LSEEK
|
803 FMODE_PREAD
| FMODE_PWRITE
;
804 inode
= dentry
->d_inode
;
805 if (f
->f_mode
& FMODE_WRITE
) {
806 error
= __get_file_write_access(inode
, mnt
);
809 if (!special_file(inode
->i_mode
))
813 f
->f_mapping
= inode
->i_mapping
;
814 f
->f_path
.dentry
= dentry
;
817 f
->f_op
= fops_get(inode
->i_fop
);
818 file_move(f
, &inode
->i_sb
->s_files
);
820 error
= security_dentry_open(f
);
824 if (!open
&& f
->f_op
)
825 open
= f
->f_op
->open
;
827 error
= open(inode
, f
);
832 f
->f_flags
&= ~(O_CREAT
| O_EXCL
| O_NOCTTY
| O_TRUNC
);
834 file_ra_state_init(&f
->f_ra
, f
->f_mapping
->host
->i_mapping
);
836 /* NB: we're sure to have correct a_ops only after f_op->open */
837 if (f
->f_flags
& O_DIRECT
) {
838 if (!f
->f_mapping
->a_ops
||
839 ((!f
->f_mapping
->a_ops
->direct_IO
) &&
840 (!f
->f_mapping
->a_ops
->get_xip_mem
))) {
842 f
= ERR_PTR(-EINVAL
);
850 if (f
->f_mode
& FMODE_WRITE
) {
851 put_write_access(inode
);
852 if (!special_file(inode
->i_mode
)) {
854 * We don't consider this a real
855 * mnt_want/drop_write() pair
856 * because it all happenend right
857 * here, so just reset the state.
864 f
->f_path
.dentry
= NULL
;
865 f
->f_path
.mnt
= NULL
;
870 return ERR_PTR(error
);
874 * lookup_instantiate_filp - instantiates the open intent filp
875 * @nd: pointer to nameidata
876 * @dentry: pointer to dentry
877 * @open: open callback
879 * Helper for filesystems that want to use lookup open intents and pass back
880 * a fully instantiated struct file to the caller.
881 * This function is meant to be called from within a filesystem's
883 * Beware of calling it for non-regular files! Those ->open methods might block
884 * (e.g. in fifo_open), leaving you with parent locked (and in case of fifo,
885 * leading to a deadlock, as nobody can open that fifo anymore, because
886 * another process to open fifo will block on locked parent when doing lookup).
887 * Note that in case of error, nd->intent.open.file is destroyed, but the
888 * path information remains valid.
889 * If the open callback is set to NULL, then the standard f_op->open()
890 * filesystem callback is substituted.
892 struct file
*lookup_instantiate_filp(struct nameidata
*nd
, struct dentry
*dentry
,
893 int (*open
)(struct inode
*, struct file
*))
895 if (IS_ERR(nd
->intent
.open
.file
))
899 nd
->intent
.open
.file
= __dentry_open(dget(dentry
), mntget(nd
->path
.mnt
),
900 nd
->intent
.open
.flags
- 1,
901 nd
->intent
.open
.file
,
904 return nd
->intent
.open
.file
;
906 release_open_intent(nd
);
907 nd
->intent
.open
.file
= (struct file
*)dentry
;
910 EXPORT_SYMBOL_GPL(lookup_instantiate_filp
);
913 * nameidata_to_filp - convert a nameidata to an open filp.
914 * @nd: pointer to nameidata
917 * Note that this function destroys the original nameidata
919 struct file
*nameidata_to_filp(struct nameidata
*nd
, int flags
)
923 /* Pick up the filp from the open intent */
924 filp
= nd
->intent
.open
.file
;
925 /* Has the filesystem initialised the file for us? */
926 if (filp
->f_path
.dentry
== NULL
)
927 filp
= __dentry_open(nd
->path
.dentry
, nd
->path
.mnt
, flags
, filp
,
935 * dentry_open() will have done dput(dentry) and mntput(mnt) if it returns an
938 struct file
*dentry_open(struct dentry
*dentry
, struct vfsmount
*mnt
, int flags
)
944 * We must always pass in a valid mount pointer. Historically
945 * callers got away with not passing it, but we must enforce this at
946 * the earliest possible point now to avoid strange problems deep in the
950 printk(KERN_WARNING
"%s called with NULL vfsmount\n", __func__
);
952 return ERR_PTR(-EINVAL
);
956 f
= get_empty_filp();
960 return ERR_PTR(error
);
963 return __dentry_open(dentry
, mnt
, flags
, f
, NULL
);
965 EXPORT_SYMBOL(dentry_open
);
968 * Find an empty file descriptor entry, and mark it busy.
970 int get_unused_fd_flags(int flags
)
972 struct files_struct
* files
= current
->files
;
977 spin_lock(&files
->file_lock
);
980 fdt
= files_fdtable(files
);
981 fd
= find_next_zero_bit(fdt
->open_fds
->fds_bits
, fdt
->max_fds
,
985 * N.B. For clone tasks sharing a files structure, this test
986 * will limit the total number of files that can be opened.
988 if (fd
>= current
->signal
->rlim
[RLIMIT_NOFILE
].rlim_cur
)
991 /* Do we need to expand the fd array or fd set? */
992 error
= expand_files(files
, fd
);
998 * If we needed to expand the fs array we
999 * might have blocked - try again.
1005 FD_SET(fd
, fdt
->open_fds
);
1006 if (flags
& O_CLOEXEC
)
1007 FD_SET(fd
, fdt
->close_on_exec
);
1009 FD_CLR(fd
, fdt
->close_on_exec
);
1010 files
->next_fd
= fd
+ 1;
1013 if (fdt
->fd
[fd
] != NULL
) {
1014 printk(KERN_WARNING
"get_unused_fd: slot %d not NULL!\n", fd
);
1021 spin_unlock(&files
->file_lock
);
1025 int get_unused_fd(void)
1027 return get_unused_fd_flags(0);
1030 EXPORT_SYMBOL(get_unused_fd
);
1032 static void __put_unused_fd(struct files_struct
*files
, unsigned int fd
)
1034 struct fdtable
*fdt
= files_fdtable(files
);
1035 __FD_CLR(fd
, fdt
->open_fds
);
1036 if (fd
< files
->next_fd
)
1037 files
->next_fd
= fd
;
1040 void put_unused_fd(unsigned int fd
)
1042 struct files_struct
*files
= current
->files
;
1043 spin_lock(&files
->file_lock
);
1044 __put_unused_fd(files
, fd
);
1045 spin_unlock(&files
->file_lock
);
1048 EXPORT_SYMBOL(put_unused_fd
);
1051 * Install a file pointer in the fd array.
1053 * The VFS is full of places where we drop the files lock between
1054 * setting the open_fds bitmap and installing the file in the file
1055 * array. At any such point, we are vulnerable to a dup2() race
1056 * installing a file in the array before us. We need to detect this and
1057 * fput() the struct file we are about to overwrite in this case.
1059 * It should never happen - if we allow dup2() do it, _really_ bad things
1063 void fd_install(unsigned int fd
, struct file
*file
)
1065 struct files_struct
*files
= current
->files
;
1066 struct fdtable
*fdt
;
1067 spin_lock(&files
->file_lock
);
1068 fdt
= files_fdtable(files
);
1069 BUG_ON(fdt
->fd
[fd
] != NULL
);
1070 rcu_assign_pointer(fdt
->fd
[fd
], file
);
1071 spin_unlock(&files
->file_lock
);
1074 EXPORT_SYMBOL(fd_install
);
1076 long do_sys_open(int dfd
, const char __user
*filename
, int flags
, int mode
)
1078 char *tmp
= getname(filename
);
1079 int fd
= PTR_ERR(tmp
);
1082 fd
= get_unused_fd_flags(flags
);
1084 struct file
*f
= do_filp_open(dfd
, tmp
, flags
, mode
);
1089 fsnotify_open(f
->f_path
.dentry
);
1098 asmlinkage
long sys_open(const char __user
*filename
, int flags
, int mode
)
1102 if (force_o_largefile())
1103 flags
|= O_LARGEFILE
;
1105 ret
= do_sys_open(AT_FDCWD
, filename
, flags
, mode
);
1106 /* avoid REGPARM breakage on x86: */
1107 asmlinkage_protect(3, ret
, filename
, flags
, mode
);
1111 asmlinkage
long sys_openat(int dfd
, const char __user
*filename
, int flags
,
1116 if (force_o_largefile())
1117 flags
|= O_LARGEFILE
;
1119 ret
= do_sys_open(dfd
, filename
, flags
, mode
);
1120 /* avoid REGPARM breakage on x86: */
1121 asmlinkage_protect(4, ret
, dfd
, filename
, flags
, mode
);
1128 * For backward compatibility? Maybe this should be moved
1129 * into arch/i386 instead?
1131 asmlinkage
long sys_creat(const char __user
* pathname
, int mode
)
1133 return sys_open(pathname
, O_CREAT
| O_WRONLY
| O_TRUNC
, mode
);
1139 * "id" is the POSIX thread ID. We use the
1140 * files pointer for this..
1142 int filp_close(struct file
*filp
, fl_owner_t id
)
1146 if (!file_count(filp
)) {
1147 printk(KERN_ERR
"VFS: Close: file count is 0\n");
1151 if (filp
->f_op
&& filp
->f_op
->flush
)
1152 retval
= filp
->f_op
->flush(filp
, id
);
1154 dnotify_flush(filp
, id
);
1155 locks_remove_posix(filp
, id
);
1160 EXPORT_SYMBOL(filp_close
);
1163 * Careful here! We test whether the file pointer is NULL before
1164 * releasing the fd. This ensures that one clone task can't release
1165 * an fd while another clone is opening it.
1167 asmlinkage
long sys_close(unsigned int fd
)
1170 struct files_struct
*files
= current
->files
;
1171 struct fdtable
*fdt
;
1174 spin_lock(&files
->file_lock
);
1175 fdt
= files_fdtable(files
);
1176 if (fd
>= fdt
->max_fds
)
1181 rcu_assign_pointer(fdt
->fd
[fd
], NULL
);
1182 FD_CLR(fd
, fdt
->close_on_exec
);
1183 __put_unused_fd(files
, fd
);
1184 spin_unlock(&files
->file_lock
);
1185 retval
= filp_close(filp
, files
);
1187 /* can't restart close syscall because file table entry was cleared */
1188 if (unlikely(retval
== -ERESTARTSYS
||
1189 retval
== -ERESTARTNOINTR
||
1190 retval
== -ERESTARTNOHAND
||
1191 retval
== -ERESTART_RESTARTBLOCK
))
1197 spin_unlock(&files
->file_lock
);
1201 EXPORT_SYMBOL(sys_close
);
1204 * This routine simulates a hangup on the tty, to arrange that users
1205 * are given clean terminals at login time.
1207 asmlinkage
long sys_vhangup(void)
1209 if (capable(CAP_SYS_TTY_CONFIG
)) {
1210 /* XXX: this needs locking */
1211 tty_vhangup(current
->signal
->tty
);
1218 * Called when an inode is about to be open.
1219 * We use this to disallow opening large files on 32bit systems if
1220 * the caller didn't specify O_LARGEFILE. On 64bit systems we force
1221 * on this flag in sys_open.
1223 int generic_file_open(struct inode
* inode
, struct file
* filp
)
1225 if (!(filp
->f_flags
& O_LARGEFILE
) && i_size_read(inode
) > MAX_NON_LFS
)
1230 EXPORT_SYMBOL(generic_file_open
);
1233 * This is used by subsystems that don't want seekable
1236 int nonseekable_open(struct inode
*inode
, struct file
*filp
)
1238 filp
->f_mode
&= ~(FMODE_LSEEK
| FMODE_PREAD
| FMODE_PWRITE
);
1242 EXPORT_SYMBOL(nonseekable_open
);