4 * Copyright (C) 1991, 1992 Linus Torvalds
7 #include <linux/string.h>
9 #include <linux/file.h>
10 #include <linux/fdtable.h>
11 #include <linux/fsnotify.h>
12 #include <linux/module.h>
13 #include <linux/tty.h>
14 #include <linux/namei.h>
15 #include <linux/backing-dev.h>
16 #include <linux/capability.h>
17 #include <linux/securebits.h>
18 #include <linux/security.h>
19 #include <linux/mount.h>
20 #include <linux/fcntl.h>
21 #include <linux/slab.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>
30 #include <linux/fs_struct.h>
31 #include <linux/ima.h>
32 #include <linux/dnotify.h>
33 #include <linux/compat.h>
37 int do_truncate(struct dentry *dentry, loff_t length, unsigned int time_attrs,
41 struct iattr newattrs;
43 /* Not pretty: "inode->i_size" shouldn't really be signed. But it is. */
47 newattrs.ia_size = length;
48 newattrs.ia_valid = ATTR_SIZE | time_attrs;
50 newattrs.ia_file = filp;
51 newattrs.ia_valid |= ATTR_FILE;
54 /* Remove suid/sgid on truncate too */
55 ret = should_remove_suid(dentry);
57 newattrs.ia_valid |= ret | ATTR_FORCE;
59 mutex_lock(&dentry->d_inode->i_mutex);
60 ret = notify_change(dentry, &newattrs);
61 mutex_unlock(&dentry->d_inode->i_mutex);
65 long vfs_truncate(struct path *path, loff_t length)
70 inode = path->dentry->d_inode;
72 /* For directories it's -EISDIR, for other non-regulars - -EINVAL */
73 if (S_ISDIR(inode->i_mode))
75 if (!S_ISREG(inode->i_mode))
78 error = mnt_want_write(path->mnt);
82 error = inode_permission(inode, MAY_WRITE);
84 goto mnt_drop_write_and_out;
88 goto mnt_drop_write_and_out;
90 error = get_write_access(inode);
92 goto mnt_drop_write_and_out;
95 * Make sure that there are no leases. get_write_access() protects
96 * against the truncate racing with a lease-granting setlease().
98 error = break_lease(inode, O_WRONLY);
100 goto put_write_and_out;
102 error = locks_verify_truncate(inode, NULL, length);
104 error = security_path_truncate(path);
106 error = do_truncate(path->dentry, length, 0, NULL);
109 put_write_access(inode);
110 mnt_drop_write_and_out:
111 mnt_drop_write(path->mnt);
115 EXPORT_SYMBOL_GPL(vfs_truncate);
117 static long do_sys_truncate(const char __user *pathname, loff_t length)
119 unsigned int lookup_flags = LOOKUP_FOLLOW;
123 if (length < 0) /* sorry, but loff_t says... */
127 error = user_path_at(AT_FDCWD, pathname, lookup_flags, &path);
129 error = vfs_truncate(&path, length);
132 if (retry_estale(error, lookup_flags)) {
133 lookup_flags |= LOOKUP_REVAL;
139 SYSCALL_DEFINE2(truncate, const char __user *, path, long, length)
141 return do_sys_truncate(path, length);
145 COMPAT_SYSCALL_DEFINE2(truncate, const char __user *, path, compat_off_t, length)
147 return do_sys_truncate(path, length);
151 static long do_sys_ftruncate(unsigned int fd, loff_t length, int small)
154 struct dentry *dentry;
166 /* explicitly opened as large or we are on 64-bit box */
167 if (f.file->f_flags & O_LARGEFILE)
170 dentry = f.file->f_path.dentry;
171 inode = dentry->d_inode;
173 if (!S_ISREG(inode->i_mode) || !(f.file->f_mode & FMODE_WRITE))
177 /* Cannot ftruncate over 2^31 bytes without large file support */
178 if (small && length > MAX_NON_LFS)
182 if (IS_APPEND(inode))
185 sb_start_write(inode->i_sb);
186 error = locks_verify_truncate(inode, f.file, length);
188 error = security_path_truncate(&f.file->f_path);
190 error = do_truncate(dentry, length, ATTR_MTIME|ATTR_CTIME, f.file);
191 sb_end_write(inode->i_sb);
198 SYSCALL_DEFINE2(ftruncate, unsigned int, fd, unsigned long, length)
200 long ret = do_sys_ftruncate(fd, length, 1);
201 /* avoid REGPARM breakage on x86: */
202 asmlinkage_protect(2, ret, fd, length);
207 COMPAT_SYSCALL_DEFINE2(ftruncate, unsigned int, fd, compat_ulong_t, length)
209 return do_sys_ftruncate(fd, length, 1);
213 /* LFS versions of truncate are only needed on 32 bit machines */
214 #if BITS_PER_LONG == 32
215 SYSCALL_DEFINE(truncate64)(const char __user * path, loff_t length)
217 return do_sys_truncate(path, length);
219 #ifdef CONFIG_HAVE_SYSCALL_WRAPPERS
220 asmlinkage long SyS_truncate64(long path, loff_t length)
222 return SYSC_truncate64((const char __user *) path, length);
224 SYSCALL_ALIAS(sys_truncate64, SyS_truncate64);
227 SYSCALL_DEFINE(ftruncate64)(unsigned int fd, loff_t length)
229 long ret = do_sys_ftruncate(fd, length, 0);
230 /* avoid REGPARM breakage on x86: */
231 asmlinkage_protect(2, ret, fd, length);
234 #ifdef CONFIG_HAVE_SYSCALL_WRAPPERS
235 asmlinkage long SyS_ftruncate64(long fd, loff_t length)
237 return SYSC_ftruncate64((unsigned int) fd, length);
239 SYSCALL_ALIAS(sys_ftruncate64, SyS_ftruncate64);
241 #endif /* BITS_PER_LONG == 32 */
244 int do_fallocate(struct file *file, int mode, loff_t offset, loff_t len)
246 struct inode *inode = file_inode(file);
249 if (offset < 0 || len <= 0)
252 /* Return error if mode is not supported */
253 if (mode & ~(FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE))
256 /* Punch hole must have keep size set */
257 if ((mode & FALLOC_FL_PUNCH_HOLE) &&
258 !(mode & FALLOC_FL_KEEP_SIZE))
261 if (!(file->f_mode & FMODE_WRITE))
264 /* It's not possible punch hole on append only file */
265 if (mode & FALLOC_FL_PUNCH_HOLE && IS_APPEND(inode))
268 if (IS_IMMUTABLE(inode))
272 * Revalidate the write permissions, in case security policy has
273 * changed since the files were opened.
275 ret = security_file_permission(file, MAY_WRITE);
279 if (S_ISFIFO(inode->i_mode))
283 * Let individual file system decide if it supports preallocation
284 * for directories or not.
286 if (!S_ISREG(inode->i_mode) && !S_ISDIR(inode->i_mode))
289 /* Check for wrap through zero too */
290 if (((offset + len) > inode->i_sb->s_maxbytes) || ((offset + len) < 0))
293 if (!file->f_op->fallocate)
296 sb_start_write(inode->i_sb);
297 ret = file->f_op->fallocate(file, mode, offset, len);
298 sb_end_write(inode->i_sb);
302 SYSCALL_DEFINE(fallocate)(int fd, int mode, loff_t offset, loff_t len)
304 struct fd f = fdget(fd);
308 error = do_fallocate(f.file, mode, offset, len);
314 #ifdef CONFIG_HAVE_SYSCALL_WRAPPERS
315 asmlinkage long SyS_fallocate(long fd, long mode, loff_t offset, loff_t len)
317 return SYSC_fallocate((int)fd, (int)mode, offset, len);
319 SYSCALL_ALIAS(sys_fallocate, SyS_fallocate);
323 * access() needs to use the real uid/gid, not the effective uid/gid.
324 * We do this by temporarily clearing all FS-related capabilities and
325 * switching the fsuid/fsgid around to the real ones.
327 SYSCALL_DEFINE3(faccessat, int, dfd, const char __user *, filename, int, mode)
329 const struct cred *old_cred;
330 struct cred *override_cred;
334 unsigned int lookup_flags = LOOKUP_FOLLOW;
336 if (mode & ~S_IRWXO) /* where's F_OK, X_OK, W_OK, R_OK? */
339 override_cred = prepare_creds();
343 override_cred->fsuid = override_cred->uid;
344 override_cred->fsgid = override_cred->gid;
346 if (!issecure(SECURE_NO_SETUID_FIXUP)) {
347 /* Clear the capabilities if we switch to a non-root user */
348 kuid_t root_uid = make_kuid(override_cred->user_ns, 0);
349 if (!uid_eq(override_cred->uid, root_uid))
350 cap_clear(override_cred->cap_effective);
352 override_cred->cap_effective =
353 override_cred->cap_permitted;
356 old_cred = override_creds(override_cred);
358 res = user_path_at(dfd, filename, lookup_flags, &path);
362 inode = path.dentry->d_inode;
364 if ((mode & MAY_EXEC) && S_ISREG(inode->i_mode)) {
366 * MAY_EXEC on regular files is denied if the fs is mounted
367 * with the "noexec" flag.
370 if (path.mnt->mnt_flags & MNT_NOEXEC)
371 goto out_path_release;
374 res = inode_permission(inode, mode | MAY_ACCESS);
375 /* SuS v2 requires we report a read only fs too */
376 if (res || !(mode & S_IWOTH) || special_file(inode->i_mode))
377 goto out_path_release;
379 * This is a rare case where using __mnt_is_readonly()
380 * is OK without a mnt_want/drop_write() pair. Since
381 * no actual write to the fs is performed here, we do
382 * not need to telegraph to that to anyone.
384 * By doing this, we accept that this access is
385 * inherently racy and know that the fs may change
386 * state before we even see this result.
388 if (__mnt_is_readonly(path.mnt))
393 if (retry_estale(res, lookup_flags)) {
394 lookup_flags |= LOOKUP_REVAL;
398 revert_creds(old_cred);
399 put_cred(override_cred);
403 SYSCALL_DEFINE2(access, const char __user *, filename, int, mode)
405 return sys_faccessat(AT_FDCWD, filename, mode);
408 SYSCALL_DEFINE1(chdir, const char __user *, filename)
412 unsigned int lookup_flags = LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
414 error = user_path_at(AT_FDCWD, filename, lookup_flags, &path);
418 error = inode_permission(path.dentry->d_inode, MAY_EXEC | MAY_CHDIR);
422 set_fs_pwd(current->fs, &path);
426 if (retry_estale(error, lookup_flags)) {
427 lookup_flags |= LOOKUP_REVAL;
434 SYSCALL_DEFINE1(fchdir, unsigned int, fd)
436 struct fd f = fdget_raw(fd);
444 inode = file_inode(f.file);
447 if (!S_ISDIR(inode->i_mode))
450 error = inode_permission(inode, MAY_EXEC | MAY_CHDIR);
452 set_fs_pwd(current->fs, &f.file->f_path);
459 SYSCALL_DEFINE1(chroot, const char __user *, filename)
463 unsigned int lookup_flags = LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
465 error = user_path_at(AT_FDCWD, filename, lookup_flags, &path);
469 error = inode_permission(path.dentry->d_inode, MAY_EXEC | MAY_CHDIR);
474 if (!nsown_capable(CAP_SYS_CHROOT))
476 error = security_path_chroot(&path);
480 set_fs_root(current->fs, &path);
484 if (retry_estale(error, lookup_flags)) {
485 lookup_flags |= LOOKUP_REVAL;
492 static int chmod_common(struct path *path, umode_t mode)
494 struct inode *inode = path->dentry->d_inode;
495 struct iattr newattrs;
498 error = mnt_want_write(path->mnt);
501 mutex_lock(&inode->i_mutex);
502 error = security_path_chmod(path, mode);
505 newattrs.ia_mode = (mode & S_IALLUGO) | (inode->i_mode & ~S_IALLUGO);
506 newattrs.ia_valid = ATTR_MODE | ATTR_CTIME;
507 error = notify_change(path->dentry, &newattrs);
509 mutex_unlock(&inode->i_mutex);
510 mnt_drop_write(path->mnt);
514 SYSCALL_DEFINE2(fchmod, unsigned int, fd, umode_t, mode)
521 audit_inode(NULL, file->f_path.dentry, 0);
522 err = chmod_common(&file->f_path, mode);
528 SYSCALL_DEFINE3(fchmodat, int, dfd, const char __user *, filename, umode_t, mode)
532 unsigned int lookup_flags = LOOKUP_FOLLOW;
534 error = user_path_at(dfd, filename, lookup_flags, &path);
536 error = chmod_common(&path, mode);
538 if (retry_estale(error, lookup_flags)) {
539 lookup_flags |= LOOKUP_REVAL;
546 SYSCALL_DEFINE2(chmod, const char __user *, filename, umode_t, mode)
548 return sys_fchmodat(AT_FDCWD, filename, mode);
551 static int chown_common(struct path *path, uid_t user, gid_t group)
553 struct inode *inode = path->dentry->d_inode;
555 struct iattr newattrs;
559 uid = make_kuid(current_user_ns(), user);
560 gid = make_kgid(current_user_ns(), group);
562 newattrs.ia_valid = ATTR_CTIME;
563 if (user != (uid_t) -1) {
566 newattrs.ia_valid |= ATTR_UID;
567 newattrs.ia_uid = uid;
569 if (group != (gid_t) -1) {
572 newattrs.ia_valid |= ATTR_GID;
573 newattrs.ia_gid = gid;
575 if (!S_ISDIR(inode->i_mode))
577 ATTR_KILL_SUID | ATTR_KILL_SGID | ATTR_KILL_PRIV;
578 mutex_lock(&inode->i_mutex);
579 error = security_path_chown(path, uid, gid);
581 error = notify_change(path->dentry, &newattrs);
582 mutex_unlock(&inode->i_mutex);
587 SYSCALL_DEFINE5(fchownat, int, dfd, const char __user *, filename, uid_t, user,
588 gid_t, group, int, flag)
594 if ((flag & ~(AT_SYMLINK_NOFOLLOW | AT_EMPTY_PATH)) != 0)
597 lookup_flags = (flag & AT_SYMLINK_NOFOLLOW) ? 0 : LOOKUP_FOLLOW;
598 if (flag & AT_EMPTY_PATH)
599 lookup_flags |= LOOKUP_EMPTY;
601 error = user_path_at(dfd, filename, lookup_flags, &path);
604 error = mnt_want_write(path.mnt);
607 error = chown_common(&path, user, group);
608 mnt_drop_write(path.mnt);
611 if (retry_estale(error, lookup_flags)) {
612 lookup_flags |= LOOKUP_REVAL;
619 SYSCALL_DEFINE3(chown, const char __user *, filename, uid_t, user, gid_t, group)
621 return sys_fchownat(AT_FDCWD, filename, user, group, 0);
624 SYSCALL_DEFINE3(lchown, const char __user *, filename, uid_t, user, gid_t, group)
626 return sys_fchownat(AT_FDCWD, filename, user, group,
627 AT_SYMLINK_NOFOLLOW);
630 SYSCALL_DEFINE3(fchown, unsigned int, fd, uid_t, user, gid_t, group)
632 struct fd f = fdget(fd);
638 error = mnt_want_write_file(f.file);
641 audit_inode(NULL, f.file->f_path.dentry, 0);
642 error = chown_common(&f.file->f_path, user, group);
643 mnt_drop_write_file(f.file);
651 * You have to be very careful that these write
652 * counts get cleaned up in error cases and
653 * upon __fput(). This should probably never
654 * be called outside of __dentry_open().
656 static inline int __get_file_write_access(struct inode *inode,
657 struct vfsmount *mnt)
660 error = get_write_access(inode);
664 * Do not take mount writer counts on
665 * special files since no writes to
666 * the mount itself will occur.
668 if (!special_file(inode->i_mode)) {
670 * Balanced in __fput()
672 error = __mnt_want_write(mnt);
674 put_write_access(inode);
679 int open_check_o_direct(struct file *f)
681 /* NB: we're sure to have correct a_ops only after f_op->open */
682 if (f->f_flags & O_DIRECT) {
683 if (!f->f_mapping->a_ops ||
684 ((!f->f_mapping->a_ops->direct_IO) &&
685 (!f->f_mapping->a_ops->get_xip_mem))) {
692 static int do_dentry_open(struct file *f,
693 int (*open)(struct inode *, struct file *),
694 const struct cred *cred)
696 static const struct file_operations empty_fops = {};
700 f->f_mode = OPEN_FMODE(f->f_flags) | FMODE_LSEEK |
701 FMODE_PREAD | FMODE_PWRITE;
703 if (unlikely(f->f_flags & O_PATH))
704 f->f_mode = FMODE_PATH;
706 path_get(&f->f_path);
707 inode = f->f_inode = f->f_path.dentry->d_inode;
708 if (f->f_mode & FMODE_WRITE) {
709 error = __get_file_write_access(inode, f->f_path.mnt);
712 if (!special_file(inode->i_mode))
716 f->f_mapping = inode->i_mapping;
717 file_sb_list_add(f, inode->i_sb);
719 if (unlikely(f->f_mode & FMODE_PATH)) {
720 f->f_op = &empty_fops;
724 f->f_op = fops_get(inode->i_fop);
726 error = security_file_open(f, cred);
730 error = break_lease(inode, f->f_flags);
734 if (!open && f->f_op)
735 open = f->f_op->open;
737 error = open(inode, f);
741 if ((f->f_mode & (FMODE_READ | FMODE_WRITE)) == FMODE_READ)
742 i_readcount_inc(inode);
744 f->f_flags &= ~(O_CREAT | O_EXCL | O_NOCTTY | O_TRUNC);
746 file_ra_state_init(&f->f_ra, f->f_mapping->host->i_mapping);
753 if (f->f_mode & FMODE_WRITE) {
754 put_write_access(inode);
755 if (!special_file(inode->i_mode)) {
757 * We don't consider this a real
758 * mnt_want/drop_write() pair
759 * because it all happenend right
760 * here, so just reset the state.
763 __mnt_drop_write(f->f_path.mnt);
767 path_put(&f->f_path);
768 f->f_path.mnt = NULL;
769 f->f_path.dentry = NULL;
775 * finish_open - finish opening a file
776 * @od: opaque open data
777 * @dentry: pointer to dentry
778 * @open: open callback
780 * This can be used to finish opening a file passed to i_op->atomic_open().
782 * If the open callback is set to NULL, then the standard f_op->open()
783 * filesystem callback is substituted.
785 int finish_open(struct file *file, struct dentry *dentry,
786 int (*open)(struct inode *, struct file *),
790 BUG_ON(*opened & FILE_OPENED); /* once it's opened, it's opened */
792 file->f_path.dentry = dentry;
793 error = do_dentry_open(file, open, current_cred());
795 *opened |= FILE_OPENED;
799 EXPORT_SYMBOL(finish_open);
802 * finish_no_open - finish ->atomic_open() without opening the file
804 * @od: opaque open data
805 * @dentry: dentry or NULL (as returned from ->lookup())
807 * This can be used to set the result of a successful lookup in ->atomic_open().
808 * The filesystem's atomic_open() method shall return NULL after calling this.
810 int finish_no_open(struct file *file, struct dentry *dentry)
812 file->f_path.dentry = dentry;
815 EXPORT_SYMBOL(finish_no_open);
817 struct file *dentry_open(const struct path *path, int flags,
818 const struct cred *cred)
823 validate_creds(cred);
825 /* We must always pass in a valid mount pointer. */
828 f = get_empty_filp();
832 error = do_dentry_open(f, NULL, cred);
834 /* from now on we need fput() to dispose of f */
835 error = open_check_o_direct(f);
847 EXPORT_SYMBOL(dentry_open);
849 static inline int build_open_flags(int flags, umode_t mode, struct open_flags *op)
851 int lookup_flags = 0;
855 op->mode = (mode & S_IALLUGO) | S_IFREG;
859 /* Must never be set by userspace */
860 flags &= ~FMODE_NONOTIFY & ~O_CLOEXEC;
863 * O_SYNC is implemented as __O_SYNC|O_DSYNC. As many places only
864 * check for O_DSYNC if the need any syncing at all we enforce it's
865 * always set instead of having to deal with possibly weird behaviour
866 * for malicious applications setting only __O_SYNC.
868 if (flags & __O_SYNC)
872 * If we have O_PATH in the open flag. Then we
873 * cannot have anything other than the below set of flags
875 if (flags & O_PATH) {
876 flags &= O_DIRECTORY | O_NOFOLLOW | O_PATH;
879 acc_mode = MAY_OPEN | ACC_MODE(flags);
882 op->open_flag = flags;
884 /* O_TRUNC implies we need access checks for write permissions */
886 acc_mode |= MAY_WRITE;
888 /* Allow the LSM permission hook to distinguish append
889 access from general write access. */
890 if (flags & O_APPEND)
891 acc_mode |= MAY_APPEND;
893 op->acc_mode = acc_mode;
895 op->intent = flags & O_PATH ? 0 : LOOKUP_OPEN;
897 if (flags & O_CREAT) {
898 op->intent |= LOOKUP_CREATE;
900 op->intent |= LOOKUP_EXCL;
903 if (flags & O_DIRECTORY)
904 lookup_flags |= LOOKUP_DIRECTORY;
905 if (!(flags & O_NOFOLLOW))
906 lookup_flags |= LOOKUP_FOLLOW;
911 * file_open_name - open file and return file pointer
913 * @name: struct filename containing path to open
914 * @flags: open flags as per the open(2) second argument
915 * @mode: mode for the new file if O_CREAT is set, else ignored
917 * This is the helper to open a file from kernelspace if you really
918 * have to. But in generally you should not do this, so please move
919 * along, nothing to see here..
921 struct file *file_open_name(struct filename *name, int flags, umode_t mode)
923 struct open_flags op;
924 int lookup = build_open_flags(flags, mode, &op);
925 return do_filp_open(AT_FDCWD, name, &op, lookup);
929 * filp_open - open file and return file pointer
931 * @filename: path to open
932 * @flags: open flags as per the open(2) second argument
933 * @mode: mode for the new file if O_CREAT is set, else ignored
935 * This is the helper to open a file from kernelspace if you really
936 * have to. But in generally you should not do this, so please move
937 * along, nothing to see here..
939 struct file *filp_open(const char *filename, int flags, umode_t mode)
941 struct filename name = {.name = filename};
942 return file_open_name(&name, flags, mode);
944 EXPORT_SYMBOL(filp_open);
946 struct file *file_open_root(struct dentry *dentry, struct vfsmount *mnt,
947 const char *filename, int flags)
949 struct open_flags op;
950 int lookup = build_open_flags(flags, 0, &op);
952 return ERR_PTR(-EINVAL);
953 if (!filename && (flags & O_DIRECTORY))
954 if (!dentry->d_inode->i_op->lookup)
955 return ERR_PTR(-ENOTDIR);
956 return do_file_open_root(dentry, mnt, filename, &op, lookup);
958 EXPORT_SYMBOL(file_open_root);
960 long do_sys_open(int dfd, const char __user *filename, int flags, umode_t mode)
962 struct open_flags op;
963 int lookup = build_open_flags(flags, mode, &op);
964 struct filename *tmp = getname(filename);
965 int fd = PTR_ERR(tmp);
968 fd = get_unused_fd_flags(flags);
970 struct file *f = do_filp_open(dfd, tmp, &op, lookup);
984 SYSCALL_DEFINE3(open, const char __user *, filename, int, flags, umode_t, mode)
988 if (force_o_largefile())
989 flags |= O_LARGEFILE;
991 ret = do_sys_open(AT_FDCWD, filename, flags, mode);
992 /* avoid REGPARM breakage on x86: */
993 asmlinkage_protect(3, ret, filename, flags, mode);
997 SYSCALL_DEFINE4(openat, int, dfd, const char __user *, filename, int, flags,
1002 if (force_o_largefile())
1003 flags |= O_LARGEFILE;
1005 ret = do_sys_open(dfd, filename, flags, mode);
1006 /* avoid REGPARM breakage on x86: */
1007 asmlinkage_protect(4, ret, dfd, filename, flags, mode);
1014 * For backward compatibility? Maybe this should be moved
1015 * into arch/i386 instead?
1017 SYSCALL_DEFINE2(creat, const char __user *, pathname, umode_t, mode)
1019 return sys_open(pathname, O_CREAT | O_WRONLY | O_TRUNC, mode);
1025 * "id" is the POSIX thread ID. We use the
1026 * files pointer for this..
1028 int filp_close(struct file *filp, fl_owner_t id)
1032 if (!file_count(filp)) {
1033 printk(KERN_ERR "VFS: Close: file count is 0\n");
1037 if (filp->f_op && filp->f_op->flush)
1038 retval = filp->f_op->flush(filp, id);
1040 if (likely(!(filp->f_mode & FMODE_PATH))) {
1041 dnotify_flush(filp, id);
1042 locks_remove_posix(filp, id);
1048 EXPORT_SYMBOL(filp_close);
1051 * Careful here! We test whether the file pointer is NULL before
1052 * releasing the fd. This ensures that one clone task can't release
1053 * an fd while another clone is opening it.
1055 SYSCALL_DEFINE1(close, unsigned int, fd)
1057 int retval = __close_fd(current->files, fd);
1059 /* can't restart close syscall because file table entry was cleared */
1060 if (unlikely(retval == -ERESTARTSYS ||
1061 retval == -ERESTARTNOINTR ||
1062 retval == -ERESTARTNOHAND ||
1063 retval == -ERESTART_RESTARTBLOCK))
1068 EXPORT_SYMBOL(sys_close);
1071 * This routine simulates a hangup on the tty, to arrange that users
1072 * are given clean terminals at login time.
1074 SYSCALL_DEFINE0(vhangup)
1076 if (capable(CAP_SYS_TTY_CONFIG)) {
1084 * Called when an inode is about to be open.
1085 * We use this to disallow opening large files on 32bit systems if
1086 * the caller didn't specify O_LARGEFILE. On 64bit systems we force
1087 * on this flag in sys_open.
1089 int generic_file_open(struct inode * inode, struct file * filp)
1091 if (!(filp->f_flags & O_LARGEFILE) && i_size_read(inode) > MAX_NON_LFS)
1096 EXPORT_SYMBOL(generic_file_open);
1099 * This is used by subsystems that don't want seekable
1100 * file descriptors. The function is not supposed to ever fail, the only
1101 * reason it returns an 'int' and not 'void' is so that it can be plugged
1102 * directly into file_operations structure.
1104 int nonseekable_open(struct inode *inode, struct file *filp)
1106 filp->f_mode &= ~(FMODE_LSEEK | FMODE_PREAD | FMODE_PWRITE);
1110 EXPORT_SYMBOL(nonseekable_open);