blob: 0d1fa3dc0efb53f0f42051d4dde9ac4a4503c876 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/open.c
3 *
4 * Copyright (C) 1991, 1992 Linus Torvalds
5 */
6
7#include <linux/string.h>
8#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/file.h>
Al Viro9f3acc32008-04-24 07:44:08 -040010#include <linux/fdtable.h>
Robert Love0eeca282005-07-12 17:06:03 -040011#include <linux/fsnotify.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/tty.h>
14#include <linux/namei.h>
15#include <linux/backing-dev.h>
Randy Dunlap16f7e0f2006-01-11 12:17:46 -080016#include <linux/capability.h>
Andrew G. Morgan086f7312008-07-04 09:59:58 -070017#include <linux/securebits.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/security.h>
19#include <linux/mount.h>
Ulrich Drepper5590ff02006-01-18 17:43:53 -080020#include <linux/fcntl.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090021#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <asm/uaccess.h>
23#include <linux/fs.h>
Yoav Zachef3daed2005-06-23 00:09:58 -070024#include <linux/personality.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/pagemap.h>
26#include <linux/syscalls.h>
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -070027#include <linux/rcupdate.h>
Amy Griffis73241cc2005-11-03 16:00:25 +000028#include <linux/audit.h>
Amit Arora97ac7352007-07-17 21:42:44 -040029#include <linux/falloc.h>
Al Viro5ad4e532009-03-29 19:50:06 -040030#include <linux/fs_struct.h>
Al Virob65a9cf2009-12-16 06:27:40 -050031#include <linux/ima.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
Eric Parise81e3f42009-12-04 15:47:36 -050033#include "internal.h"
34
NeilBrown4a301312006-01-08 01:02:39 -080035int do_truncate(struct dentry *dentry, loff_t length, unsigned int time_attrs,
36 struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070037{
Amerigo Wang939a9422009-08-20 19:29:03 -070038 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 struct iattr newattrs;
40
41 /* Not pretty: "inode->i_size" shouldn't really be signed. But it is. */
42 if (length < 0)
43 return -EINVAL;
44
45 newattrs.ia_size = length;
NeilBrown4a301312006-01-08 01:02:39 -080046 newattrs.ia_valid = ATTR_SIZE | time_attrs;
Miklos Szeredicc4e69d2005-11-07 00:59:49 -080047 if (filp) {
48 newattrs.ia_file = filp;
49 newattrs.ia_valid |= ATTR_FILE;
50 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Linus Torvalds7b82dc02007-05-08 20:10:00 -070052 /* Remove suid/sgid on truncate too */
Amerigo Wang939a9422009-08-20 19:29:03 -070053 ret = should_remove_suid(dentry);
54 if (ret)
55 newattrs.ia_valid |= ret | ATTR_FORCE;
Linus Torvalds7b82dc02007-05-08 20:10:00 -070056
Jes Sorensen1b1dcc12006-01-09 15:59:24 -080057 mutex_lock(&dentry->d_inode->i_mutex);
Amerigo Wang939a9422009-08-20 19:29:03 -070058 ret = notify_change(dentry, &newattrs);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -080059 mutex_unlock(&dentry->d_inode->i_mutex);
Amerigo Wang939a9422009-08-20 19:29:03 -070060 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070061}
62
Al Viro2d8f3032008-07-22 09:59:21 -040063static long do_sys_truncate(const char __user *pathname, loff_t length)
Linus Torvalds1da177e2005-04-16 15:20:36 -070064{
Al Viro2d8f3032008-07-22 09:59:21 -040065 struct path path;
66 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 int error;
68
69 error = -EINVAL;
70 if (length < 0) /* sorry, but loff_t says... */
71 goto out;
72
Al Viro2d8f3032008-07-22 09:59:21 -040073 error = user_path(pathname, &path);
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 if (error)
75 goto out;
Al Viro2d8f3032008-07-22 09:59:21 -040076 inode = path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
78 /* For directories it's -EISDIR, for other non-regulars - -EINVAL */
79 error = -EISDIR;
80 if (S_ISDIR(inode->i_mode))
81 goto dput_and_out;
82
83 error = -EINVAL;
84 if (!S_ISREG(inode->i_mode))
85 goto dput_and_out;
86
Al Viro2d8f3032008-07-22 09:59:21 -040087 error = mnt_want_write(path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 if (error)
89 goto dput_and_out;
90
Al Viro256984a2008-07-22 08:09:30 -040091 error = inode_permission(inode, MAY_WRITE);
Dave Hansen9ac9b842008-02-15 14:37:52 -080092 if (error)
93 goto mnt_drop_write_and_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
95 error = -EPERM;
Miklos Szeredic82e42d2008-06-24 16:50:12 +020096 if (IS_APPEND(inode))
Dave Hansen9ac9b842008-02-15 14:37:52 -080097 goto mnt_drop_write_and_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 error = get_write_access(inode);
100 if (error)
Dave Hansen9ac9b842008-02-15 14:37:52 -0800101 goto mnt_drop_write_and_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
david m. richter97003822007-07-31 00:39:12 -0700103 /*
104 * Make sure that there are no leases. get_write_access() protects
105 * against the truncate racing with a lease-granting setlease().
106 */
Al Viro8737c932009-12-24 06:47:55 -0500107 error = break_lease(inode, O_WRONLY);
david m. richter97003822007-07-31 00:39:12 -0700108 if (error)
109 goto put_write_and_out;
110
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 error = locks_verify_truncate(inode, NULL, length);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +0900112 if (!error)
Tetsuo Handaea0d3ab2010-06-02 13:24:43 +0900113 error = security_path_truncate(&path);
Christoph Hellwig907f4552010-03-03 09:05:06 -0500114 if (!error)
Al Viro2d8f3032008-07-22 09:59:21 -0400115 error = do_truncate(path.dentry, length, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
david m. richter97003822007-07-31 00:39:12 -0700117put_write_and_out:
118 put_write_access(inode);
Dave Hansen9ac9b842008-02-15 14:37:52 -0800119mnt_drop_write_and_out:
Al Viro2d8f3032008-07-22 09:59:21 -0400120 mnt_drop_write(path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121dput_and_out:
Al Viro2d8f3032008-07-22 09:59:21 -0400122 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123out:
124 return error;
125}
126
Heiko Carstens4fd8da82009-09-23 17:49:55 +0200127SYSCALL_DEFINE2(truncate, const char __user *, path, long, length)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128{
Heiko Carstens4fd8da82009-09-23 17:49:55 +0200129 return do_sys_truncate(path, length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130}
131
Matt Mackallb01ec0e2006-01-08 01:05:20 -0800132static long do_sys_ftruncate(unsigned int fd, loff_t length, int small)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133{
134 struct inode * inode;
135 struct dentry *dentry;
136 struct file * file;
137 int error;
138
139 error = -EINVAL;
140 if (length < 0)
141 goto out;
142 error = -EBADF;
143 file = fget(fd);
144 if (!file)
145 goto out;
146
147 /* explicitly opened as large or we are on 64-bit box */
148 if (file->f_flags & O_LARGEFILE)
149 small = 0;
150
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800151 dentry = file->f_path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 inode = dentry->d_inode;
153 error = -EINVAL;
154 if (!S_ISREG(inode->i_mode) || !(file->f_mode & FMODE_WRITE))
155 goto out_putf;
156
157 error = -EINVAL;
158 /* Cannot ftruncate over 2^31 bytes without large file support */
159 if (small && length > MAX_NON_LFS)
160 goto out_putf;
161
162 error = -EPERM;
163 if (IS_APPEND(inode))
164 goto out_putf;
165
166 error = locks_verify_truncate(inode, file, length);
167 if (!error)
Tetsuo Handaea0d3ab2010-06-02 13:24:43 +0900168 error = security_path_truncate(&file->f_path);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +0900169 if (!error)
Peter Staubach6e656be2006-06-25 05:48:36 -0700170 error = do_truncate(dentry, length, ATTR_MTIME|ATTR_CTIME, file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171out_putf:
172 fput(file);
173out:
174 return error;
175}
176
Heiko Carstensbdc480e2009-01-14 14:14:12 +0100177SYSCALL_DEFINE2(ftruncate, unsigned int, fd, unsigned long, length)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178{
Linus Torvalds0a489cb2006-04-18 13:02:48 -0700179 long ret = do_sys_ftruncate(fd, length, 1);
Linus Torvalds385910f2006-04-18 13:22:59 -0700180 /* avoid REGPARM breakage on x86: */
Roland McGrath54a01512008-04-10 15:37:38 -0700181 asmlinkage_protect(2, ret, fd, length);
Linus Torvalds0a489cb2006-04-18 13:02:48 -0700182 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183}
184
185/* LFS versions of truncate are only needed on 32 bit machines */
186#if BITS_PER_LONG == 32
Heiko Carstens6673e0c2009-01-14 14:14:02 +0100187SYSCALL_DEFINE(truncate64)(const char __user * path, loff_t length)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188{
189 return do_sys_truncate(path, length);
190}
Heiko Carstens6673e0c2009-01-14 14:14:02 +0100191#ifdef CONFIG_HAVE_SYSCALL_WRAPPERS
192asmlinkage long SyS_truncate64(long path, loff_t length)
193{
194 return SYSC_truncate64((const char __user *) path, length);
195}
196SYSCALL_ALIAS(sys_truncate64, SyS_truncate64);
197#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
Heiko Carstens6673e0c2009-01-14 14:14:02 +0100199SYSCALL_DEFINE(ftruncate64)(unsigned int fd, loff_t length)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200{
Linus Torvalds0a489cb2006-04-18 13:02:48 -0700201 long ret = do_sys_ftruncate(fd, length, 0);
Linus Torvalds385910f2006-04-18 13:22:59 -0700202 /* avoid REGPARM breakage on x86: */
Roland McGrath54a01512008-04-10 15:37:38 -0700203 asmlinkage_protect(2, ret, fd, length);
Linus Torvalds0a489cb2006-04-18 13:02:48 -0700204 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205}
Heiko Carstens6673e0c2009-01-14 14:14:02 +0100206#ifdef CONFIG_HAVE_SYSCALL_WRAPPERS
207asmlinkage long SyS_ftruncate64(long fd, loff_t length)
208{
209 return SYSC_ftruncate64((unsigned int) fd, length);
210}
211SYSCALL_ALIAS(sys_ftruncate64, SyS_ftruncate64);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212#endif
Heiko Carstens6673e0c2009-01-14 14:14:02 +0100213#endif /* BITS_PER_LONG == 32 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
Ankit Jain3e63cbb2009-06-19 14:28:07 -0400215
216int do_fallocate(struct file *file, int mode, loff_t offset, loff_t len)
Amit Arora97ac7352007-07-17 21:42:44 -0400217{
Ankit Jain3e63cbb2009-06-19 14:28:07 -0400218 struct inode *inode = file->f_path.dentry->d_inode;
219 long ret;
Amit Arora97ac7352007-07-17 21:42:44 -0400220
221 if (offset < 0 || len <= 0)
Ankit Jain3e63cbb2009-06-19 14:28:07 -0400222 return -EINVAL;
Amit Arora97ac7352007-07-17 21:42:44 -0400223
224 /* Return error if mode is not supported */
Amit Arora97ac7352007-07-17 21:42:44 -0400225 if (mode && !(mode & FALLOC_FL_KEEP_SIZE))
Ankit Jain3e63cbb2009-06-19 14:28:07 -0400226 return -EOPNOTSUPP;
Amit Arora97ac7352007-07-17 21:42:44 -0400227
Amit Arora97ac7352007-07-17 21:42:44 -0400228 if (!(file->f_mode & FMODE_WRITE))
Ankit Jain3e63cbb2009-06-19 14:28:07 -0400229 return -EBADF;
Amit Arora97ac7352007-07-17 21:42:44 -0400230 /*
231 * Revalidate the write permissions, in case security policy has
232 * changed since the files were opened.
233 */
234 ret = security_file_permission(file, MAY_WRITE);
235 if (ret)
Ankit Jain3e63cbb2009-06-19 14:28:07 -0400236 return ret;
Amit Arora97ac7352007-07-17 21:42:44 -0400237
Amit Arora97ac7352007-07-17 21:42:44 -0400238 if (S_ISFIFO(inode->i_mode))
Ankit Jain3e63cbb2009-06-19 14:28:07 -0400239 return -ESPIPE;
Amit Arora97ac7352007-07-17 21:42:44 -0400240
Amit Arora97ac7352007-07-17 21:42:44 -0400241 /*
242 * Let individual file system decide if it supports preallocation
243 * for directories or not.
244 */
245 if (!S_ISREG(inode->i_mode) && !S_ISDIR(inode->i_mode))
Ankit Jain3e63cbb2009-06-19 14:28:07 -0400246 return -ENODEV;
Amit Arora97ac7352007-07-17 21:42:44 -0400247
Amit Arora97ac7352007-07-17 21:42:44 -0400248 /* Check for wrap through zero too */
249 if (((offset + len) > inode->i_sb->s_maxbytes) || ((offset + len) < 0))
Ankit Jain3e63cbb2009-06-19 14:28:07 -0400250 return -EFBIG;
Amit Arora97ac7352007-07-17 21:42:44 -0400251
Ankit Jain3e63cbb2009-06-19 14:28:07 -0400252 if (!inode->i_op->fallocate)
253 return -EOPNOTSUPP;
Amit Arora97ac7352007-07-17 21:42:44 -0400254
Ankit Jain3e63cbb2009-06-19 14:28:07 -0400255 return inode->i_op->fallocate(inode, mode, offset, len);
Amit Arora97ac7352007-07-17 21:42:44 -0400256}
Ankit Jain3e63cbb2009-06-19 14:28:07 -0400257
258SYSCALL_DEFINE(fallocate)(int fd, int mode, loff_t offset, loff_t len)
259{
260 struct file *file;
261 int error = -EBADF;
262
263 file = fget(fd);
264 if (file) {
265 error = do_fallocate(file, mode, offset, len);
266 fput(file);
267 }
268
269 return error;
270}
271
Heiko Carstens6673e0c2009-01-14 14:14:02 +0100272#ifdef CONFIG_HAVE_SYSCALL_WRAPPERS
273asmlinkage long SyS_fallocate(long fd, long mode, loff_t offset, loff_t len)
274{
275 return SYSC_fallocate((int)fd, (int)mode, offset, len);
276}
277SYSCALL_ALIAS(sys_fallocate, SyS_fallocate);
278#endif
Amit Arora97ac7352007-07-17 21:42:44 -0400279
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280/*
281 * access() needs to use the real uid/gid, not the effective uid/gid.
282 * We do this by temporarily clearing all FS-related capabilities and
283 * switching the fsuid/fsgid around to the real ones.
284 */
Heiko Carstens6559eed82009-01-14 14:14:32 +0100285SYSCALL_DEFINE3(faccessat, int, dfd, const char __user *, filename, int, mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286{
David Howellsd84f4f92008-11-14 10:39:23 +1100287 const struct cred *old_cred;
288 struct cred *override_cred;
Al Viro2d8f3032008-07-22 09:59:21 -0400289 struct path path;
Al Viro256984a2008-07-22 08:09:30 -0400290 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 int res;
292
293 if (mode & ~S_IRWXO) /* where's F_OK, X_OK, W_OK, R_OK? */
294 return -EINVAL;
295
David Howellsd84f4f92008-11-14 10:39:23 +1100296 override_cred = prepare_creds();
297 if (!override_cred)
298 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
David Howellsd84f4f92008-11-14 10:39:23 +1100300 override_cred->fsuid = override_cred->uid;
301 override_cred->fsgid = override_cred->gid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302
Andrew G. Morgan086f7312008-07-04 09:59:58 -0700303 if (!issecure(SECURE_NO_SETUID_FIXUP)) {
David Howells1cdcbec2008-11-14 10:39:14 +1100304 /* Clear the capabilities if we switch to a non-root user */
David Howellsd84f4f92008-11-14 10:39:23 +1100305 if (override_cred->uid)
306 cap_clear(override_cred->cap_effective);
Andrew G. Morgan086f7312008-07-04 09:59:58 -0700307 else
David Howellsd84f4f92008-11-14 10:39:23 +1100308 override_cred->cap_effective =
309 override_cred->cap_permitted;
Andrew G. Morgan086f7312008-07-04 09:59:58 -0700310 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
David Howellsd84f4f92008-11-14 10:39:23 +1100312 old_cred = override_creds(override_cred);
313
Al Viro2d8f3032008-07-22 09:59:21 -0400314 res = user_path_at(dfd, filename, LOOKUP_FOLLOW, &path);
Dave Hansen6902d922006-09-30 23:29:01 -0700315 if (res)
316 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
Al Viro2d8f3032008-07-22 09:59:21 -0400318 inode = path.dentry->d_inode;
Al Viro256984a2008-07-22 08:09:30 -0400319
320 if ((mode & MAY_EXEC) && S_ISREG(inode->i_mode)) {
Al Viro30524472008-07-22 00:02:33 -0400321 /*
322 * MAY_EXEC on regular files is denied if the fs is mounted
323 * with the "noexec" flag.
324 */
325 res = -EACCES;
Al Viro2d8f3032008-07-22 09:59:21 -0400326 if (path.mnt->mnt_flags & MNT_NOEXEC)
Al Viro30524472008-07-22 00:02:33 -0400327 goto out_path_release;
328 }
329
Al Viro256984a2008-07-22 08:09:30 -0400330 res = inode_permission(inode, mode | MAY_ACCESS);
Dave Hansen6902d922006-09-30 23:29:01 -0700331 /* SuS v2 requires we report a read only fs too */
Al Viro256984a2008-07-22 08:09:30 -0400332 if (res || !(mode & S_IWOTH) || special_file(inode->i_mode))
Dave Hansen6902d922006-09-30 23:29:01 -0700333 goto out_path_release;
Dave Hansen2f676cb2008-02-15 14:37:55 -0800334 /*
335 * This is a rare case where using __mnt_is_readonly()
336 * is OK without a mnt_want/drop_write() pair. Since
337 * no actual write to the fs is performed here, we do
338 * not need to telegraph to that to anyone.
339 *
340 * By doing this, we accept that this access is
341 * inherently racy and know that the fs may change
342 * state before we even see this result.
343 */
Al Viro2d8f3032008-07-22 09:59:21 -0400344 if (__mnt_is_readonly(path.mnt))
Dave Hansen6902d922006-09-30 23:29:01 -0700345 res = -EROFS;
346
347out_path_release:
Al Viro2d8f3032008-07-22 09:59:21 -0400348 path_put(&path);
Dave Hansen6902d922006-09-30 23:29:01 -0700349out:
David Howellsd84f4f92008-11-14 10:39:23 +1100350 revert_creds(old_cred);
351 put_cred(override_cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 return res;
353}
354
Heiko Carstensca013e92009-01-14 14:14:19 +0100355SYSCALL_DEFINE2(access, const char __user *, filename, int, mode)
Ulrich Drepper5590ff02006-01-18 17:43:53 -0800356{
357 return sys_faccessat(AT_FDCWD, filename, mode);
358}
359
Heiko Carstens3cdad422009-01-14 14:14:22 +0100360SYSCALL_DEFINE1(chdir, const char __user *, filename)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361{
Al Viro2d8f3032008-07-22 09:59:21 -0400362 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 int error;
364
Al Viro2d8f3032008-07-22 09:59:21 -0400365 error = user_path_dir(filename, &path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 if (error)
367 goto out;
368
Eric Paris9cfcac82010-07-23 11:43:51 -0400369 error = inode_permission(path.dentry->d_inode, MAY_EXEC | MAY_CHDIR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 if (error)
371 goto dput_and_out;
372
Al Viro2d8f3032008-07-22 09:59:21 -0400373 set_fs_pwd(current->fs, &path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374
375dput_and_out:
Al Viro2d8f3032008-07-22 09:59:21 -0400376 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377out:
378 return error;
379}
380
Heiko Carstens3cdad422009-01-14 14:14:22 +0100381SYSCALL_DEFINE1(fchdir, unsigned int, fd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382{
383 struct file *file;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 int error;
386
387 error = -EBADF;
388 file = fget(fd);
389 if (!file)
390 goto out;
391
Jan Blunckac748a02008-02-14 19:34:39 -0800392 inode = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393
394 error = -ENOTDIR;
395 if (!S_ISDIR(inode->i_mode))
396 goto out_putf;
397
Eric Paris9cfcac82010-07-23 11:43:51 -0400398 error = inode_permission(inode, MAY_EXEC | MAY_CHDIR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 if (!error)
Jan Blunckac748a02008-02-14 19:34:39 -0800400 set_fs_pwd(current->fs, &file->f_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401out_putf:
402 fput(file);
403out:
404 return error;
405}
406
Heiko Carstens3480b252009-01-14 14:14:16 +0100407SYSCALL_DEFINE1(chroot, const char __user *, filename)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408{
Al Viro2d8f3032008-07-22 09:59:21 -0400409 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 int error;
411
Al Viro2d8f3032008-07-22 09:59:21 -0400412 error = user_path_dir(filename, &path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 if (error)
414 goto out;
415
Eric Paris9cfcac82010-07-23 11:43:51 -0400416 error = inode_permission(path.dentry->d_inode, MAY_EXEC | MAY_CHDIR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 if (error)
418 goto dput_and_out;
419
420 error = -EPERM;
421 if (!capable(CAP_SYS_CHROOT))
422 goto dput_and_out;
Tetsuo Handa8b8efb42009-10-04 21:49:48 +0900423 error = security_path_chroot(&path);
424 if (error)
425 goto dput_and_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426
Al Viro2d8f3032008-07-22 09:59:21 -0400427 set_fs_root(current->fs, &path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 error = 0;
429dput_and_out:
Al Viro2d8f3032008-07-22 09:59:21 -0400430 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431out:
432 return error;
433}
434
Heiko Carstensa26eab22009-01-14 14:14:17 +0100435SYSCALL_DEFINE2(fchmod, unsigned int, fd, mode_t, mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436{
437 struct inode * inode;
438 struct dentry * dentry;
439 struct file * file;
440 int err = -EBADF;
441 struct iattr newattrs;
442
443 file = fget(fd);
444 if (!file)
445 goto out;
446
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800447 dentry = file->f_path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 inode = dentry->d_inode;
449
Al Viro5a190ae2007-06-07 12:19:32 -0400450 audit_inode(NULL, dentry);
Amy Griffis73241cc2005-11-03 16:00:25 +0000451
npiggin@suse.de96029c42009-04-26 20:25:55 +1000452 err = mnt_want_write_file(file);
Dave Hansen2af482a2008-02-15 14:37:50 -0800453 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 goto out_putf;
Tetsuo Handafe542cf2009-11-22 11:49:55 +0900455 mutex_lock(&inode->i_mutex);
Tetsuo Handa89eda062009-10-04 21:49:47 +0900456 err = security_path_chmod(dentry, file->f_vfsmnt, mode);
457 if (err)
Tetsuo Handafe542cf2009-11-22 11:49:55 +0900458 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 if (mode == (mode_t) -1)
460 mode = inode->i_mode;
461 newattrs.ia_mode = (mode & S_IALLUGO) | (inode->i_mode & ~S_IALLUGO);
462 newattrs.ia_valid = ATTR_MODE | ATTR_CTIME;
463 err = notify_change(dentry, &newattrs);
Tetsuo Handafe542cf2009-11-22 11:49:55 +0900464out_unlock:
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800465 mutex_unlock(&inode->i_mutex);
Dave Hansen2af482a2008-02-15 14:37:50 -0800466 mnt_drop_write(file->f_path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467out_putf:
468 fput(file);
469out:
470 return err;
471}
472
Heiko Carstens6559eed82009-01-14 14:14:32 +0100473SYSCALL_DEFINE3(fchmodat, int, dfd, const char __user *, filename, mode_t, mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474{
Al Viro2d8f3032008-07-22 09:59:21 -0400475 struct path path;
476 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 int error;
478 struct iattr newattrs;
479
Al Viro2d8f3032008-07-22 09:59:21 -0400480 error = user_path_at(dfd, filename, LOOKUP_FOLLOW, &path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 if (error)
482 goto out;
Al Viro2d8f3032008-07-22 09:59:21 -0400483 inode = path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484
Al Viro2d8f3032008-07-22 09:59:21 -0400485 error = mnt_want_write(path.mnt);
Dave Hansen2af482a2008-02-15 14:37:50 -0800486 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 goto dput_and_out;
Tetsuo Handafe542cf2009-11-22 11:49:55 +0900488 mutex_lock(&inode->i_mutex);
Tetsuo Handa89eda062009-10-04 21:49:47 +0900489 error = security_path_chmod(path.dentry, path.mnt, mode);
490 if (error)
Tetsuo Handafe542cf2009-11-22 11:49:55 +0900491 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 if (mode == (mode_t) -1)
493 mode = inode->i_mode;
494 newattrs.ia_mode = (mode & S_IALLUGO) | (inode->i_mode & ~S_IALLUGO);
495 newattrs.ia_valid = ATTR_MODE | ATTR_CTIME;
Al Viro2d8f3032008-07-22 09:59:21 -0400496 error = notify_change(path.dentry, &newattrs);
Tetsuo Handafe542cf2009-11-22 11:49:55 +0900497out_unlock:
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800498 mutex_unlock(&inode->i_mutex);
Al Viro2d8f3032008-07-22 09:59:21 -0400499 mnt_drop_write(path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500dput_and_out:
Al Viro2d8f3032008-07-22 09:59:21 -0400501 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502out:
503 return error;
504}
505
Heiko Carstensa26eab22009-01-14 14:14:17 +0100506SYSCALL_DEFINE2(chmod, const char __user *, filename, mode_t, mode)
Ulrich Drepper5590ff02006-01-18 17:43:53 -0800507{
508 return sys_fchmodat(AT_FDCWD, filename, mode);
509}
510
Tetsuo Handafe542cf2009-11-22 11:49:55 +0900511static int chown_common(struct path *path, uid_t user, gid_t group)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512{
Tetsuo Handafe542cf2009-11-22 11:49:55 +0900513 struct inode *inode = path->dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 int error;
515 struct iattr newattrs;
516
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 newattrs.ia_valid = ATTR_CTIME;
518 if (user != (uid_t) -1) {
519 newattrs.ia_valid |= ATTR_UID;
520 newattrs.ia_uid = user;
521 }
522 if (group != (gid_t) -1) {
523 newattrs.ia_valid |= ATTR_GID;
524 newattrs.ia_gid = group;
525 }
526 if (!S_ISDIR(inode->i_mode))
Serge E. Hallynb5376772007-10-16 23:31:36 -0700527 newattrs.ia_valid |=
528 ATTR_KILL_SUID | ATTR_KILL_SGID | ATTR_KILL_PRIV;
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800529 mutex_lock(&inode->i_mutex);
Tetsuo Handafe542cf2009-11-22 11:49:55 +0900530 error = security_path_chown(path, user, group);
531 if (!error)
532 error = notify_change(path->dentry, &newattrs);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800533 mutex_unlock(&inode->i_mutex);
Miklos Szeredibeb29e02008-07-01 15:01:29 +0200534
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 return error;
536}
537
Heiko Carstensca013e92009-01-14 14:14:19 +0100538SYSCALL_DEFINE3(chown, const char __user *, filename, uid_t, user, gid_t, group)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539{
Al Viro2d8f3032008-07-22 09:59:21 -0400540 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 int error;
542
Al Viro2d8f3032008-07-22 09:59:21 -0400543 error = user_path(filename, &path);
Dave Hansen6902d922006-09-30 23:29:01 -0700544 if (error)
545 goto out;
Al Viro2d8f3032008-07-22 09:59:21 -0400546 error = mnt_want_write(path.mnt);
Dave Hansen2af482a2008-02-15 14:37:50 -0800547 if (error)
548 goto out_release;
Tetsuo Handafe542cf2009-11-22 11:49:55 +0900549 error = chown_common(&path, user, group);
Al Viro2d8f3032008-07-22 09:59:21 -0400550 mnt_drop_write(path.mnt);
Dave Hansen2af482a2008-02-15 14:37:50 -0800551out_release:
Al Viro2d8f3032008-07-22 09:59:21 -0400552 path_put(&path);
Dave Hansen6902d922006-09-30 23:29:01 -0700553out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 return error;
555}
556
Heiko Carstens6559eed82009-01-14 14:14:32 +0100557SYSCALL_DEFINE5(fchownat, int, dfd, const char __user *, filename, uid_t, user,
558 gid_t, group, int, flag)
Ulrich Drepper5590ff02006-01-18 17:43:53 -0800559{
Al Viro2d8f3032008-07-22 09:59:21 -0400560 struct path path;
Ulrich Drepper5590ff02006-01-18 17:43:53 -0800561 int error = -EINVAL;
562 int follow;
563
564 if ((flag & ~AT_SYMLINK_NOFOLLOW) != 0)
565 goto out;
566
567 follow = (flag & AT_SYMLINK_NOFOLLOW) ? 0 : LOOKUP_FOLLOW;
Al Viro2d8f3032008-07-22 09:59:21 -0400568 error = user_path_at(dfd, filename, follow, &path);
Dave Hansen6902d922006-09-30 23:29:01 -0700569 if (error)
570 goto out;
Al Viro2d8f3032008-07-22 09:59:21 -0400571 error = mnt_want_write(path.mnt);
Dave Hansen2af482a2008-02-15 14:37:50 -0800572 if (error)
573 goto out_release;
Tetsuo Handafe542cf2009-11-22 11:49:55 +0900574 error = chown_common(&path, user, group);
Al Viro2d8f3032008-07-22 09:59:21 -0400575 mnt_drop_write(path.mnt);
Dave Hansen2af482a2008-02-15 14:37:50 -0800576out_release:
Al Viro2d8f3032008-07-22 09:59:21 -0400577 path_put(&path);
Ulrich Drepper5590ff02006-01-18 17:43:53 -0800578out:
579 return error;
580}
581
Heiko Carstensca013e92009-01-14 14:14:19 +0100582SYSCALL_DEFINE3(lchown, const char __user *, filename, uid_t, user, gid_t, group)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583{
Al Viro2d8f3032008-07-22 09:59:21 -0400584 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 int error;
586
Al Viro2d8f3032008-07-22 09:59:21 -0400587 error = user_lpath(filename, &path);
Dave Hansen6902d922006-09-30 23:29:01 -0700588 if (error)
589 goto out;
Al Viro2d8f3032008-07-22 09:59:21 -0400590 error = mnt_want_write(path.mnt);
Dave Hansen2af482a2008-02-15 14:37:50 -0800591 if (error)
592 goto out_release;
Tetsuo Handafe542cf2009-11-22 11:49:55 +0900593 error = chown_common(&path, user, group);
Al Viro2d8f3032008-07-22 09:59:21 -0400594 mnt_drop_write(path.mnt);
Dave Hansen2af482a2008-02-15 14:37:50 -0800595out_release:
Al Viro2d8f3032008-07-22 09:59:21 -0400596 path_put(&path);
Dave Hansen6902d922006-09-30 23:29:01 -0700597out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 return error;
599}
600
Heiko Carstensca013e92009-01-14 14:14:19 +0100601SYSCALL_DEFINE3(fchown, unsigned int, fd, uid_t, user, gid_t, group)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602{
603 struct file * file;
604 int error = -EBADF;
Dave Hansen6902d922006-09-30 23:29:01 -0700605 struct dentry * dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606
607 file = fget(fd);
Dave Hansen6902d922006-09-30 23:29:01 -0700608 if (!file)
609 goto out;
610
npiggin@suse.de96029c42009-04-26 20:25:55 +1000611 error = mnt_want_write_file(file);
Dave Hansen2af482a2008-02-15 14:37:50 -0800612 if (error)
613 goto out_fput;
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800614 dentry = file->f_path.dentry;
Al Viro5a190ae2007-06-07 12:19:32 -0400615 audit_inode(NULL, dentry);
Tetsuo Handafe542cf2009-11-22 11:49:55 +0900616 error = chown_common(&file->f_path, user, group);
Dave Hansen2af482a2008-02-15 14:37:50 -0800617 mnt_drop_write(file->f_path.mnt);
618out_fput:
Dave Hansen6902d922006-09-30 23:29:01 -0700619 fput(file);
620out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 return error;
622}
623
Dave Hansen4a3fd212008-02-15 14:37:48 -0800624/*
625 * You have to be very careful that these write
626 * counts get cleaned up in error cases and
627 * upon __fput(). This should probably never
628 * be called outside of __dentry_open().
629 */
630static inline int __get_file_write_access(struct inode *inode,
631 struct vfsmount *mnt)
632{
633 int error;
634 error = get_write_access(inode);
635 if (error)
636 return error;
637 /*
638 * Do not take mount writer counts on
639 * special files since no writes to
640 * the mount itself will occur.
641 */
642 if (!special_file(inode->i_mode)) {
643 /*
644 * Balanced in __fput()
645 */
646 error = mnt_want_write(mnt);
647 if (error)
648 put_write_access(inode);
649 }
650 return error;
651}
652
Peter Staubacha1a5b3d2005-09-13 01:25:12 -0700653static struct file *__dentry_open(struct dentry *dentry, struct vfsmount *mnt,
Al Viro482928d2009-12-19 10:10:39 -0500654 struct file *f,
David Howells745ca242008-11-14 10:39:22 +1100655 int (*open)(struct inode *, struct file *),
656 const struct cred *cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 struct inode *inode;
659 int error;
660
Al Viro53009902009-12-19 10:15:07 -0500661 f->f_mode = OPEN_FMODE(f->f_flags) | FMODE_LSEEK |
Peter Staubacha1a5b3d2005-09-13 01:25:12 -0700662 FMODE_PREAD | FMODE_PWRITE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 inode = dentry->d_inode;
664 if (f->f_mode & FMODE_WRITE) {
Dave Hansen4a3fd212008-02-15 14:37:48 -0800665 error = __get_file_write_access(inode, mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 if (error)
667 goto cleanup_file;
Dave Hansenad775f52008-02-15 14:38:01 -0800668 if (!special_file(inode->i_mode))
669 file_take_write(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 }
671
672 f->f_mapping = inode->i_mapping;
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800673 f->f_path.dentry = dentry;
674 f->f_path.mnt = mnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 f->f_pos = 0;
676 f->f_op = fops_get(inode->i_fop);
677 file_move(f, &inode->i_sb->s_files);
678
David Howells745ca242008-11-14 10:39:22 +1100679 error = security_dentry_open(f, cred);
Yuichi Nakamura788e7dd2007-09-14 09:27:07 +0900680 if (error)
681 goto cleanup_all;
682
Trond Myklebust834f2a42005-10-18 14:20:16 -0700683 if (!open && f->f_op)
684 open = f->f_op->open;
685 if (open) {
686 error = open(inode, f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 if (error)
688 goto cleanup_all;
689 }
Al Virob65a9cf2009-12-16 06:27:40 -0500690 ima_counts_get(f);
Trond Myklebust834f2a42005-10-18 14:20:16 -0700691
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 f->f_flags &= ~(O_CREAT | O_EXCL | O_NOCTTY | O_TRUNC);
693
694 file_ra_state_init(&f->f_ra, f->f_mapping->host->i_mapping);
695
696 /* NB: we're sure to have correct a_ops only after f_op->open */
697 if (f->f_flags & O_DIRECT) {
Carsten Otteceffc072005-06-23 22:05:25 -0700698 if (!f->f_mapping->a_ops ||
699 ((!f->f_mapping->a_ops->direct_IO) &&
Nick Piggin70688e42008-04-28 02:13:02 -0700700 (!f->f_mapping->a_ops->get_xip_mem))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 fput(f);
702 f = ERR_PTR(-EINVAL);
703 }
704 }
705
706 return f;
707
708cleanup_all:
709 fops_put(f->f_op);
Dave Hansen4a3fd212008-02-15 14:37:48 -0800710 if (f->f_mode & FMODE_WRITE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 put_write_access(inode);
Dave Hansenad775f52008-02-15 14:38:01 -0800712 if (!special_file(inode->i_mode)) {
713 /*
714 * We don't consider this a real
715 * mnt_want/drop_write() pair
716 * because it all happenend right
717 * here, so just reset the state.
718 */
719 file_reset_write(f);
Dave Hansen4a3fd212008-02-15 14:37:48 -0800720 mnt_drop_write(mnt);
Dave Hansenad775f52008-02-15 14:38:01 -0800721 }
Dave Hansen4a3fd212008-02-15 14:37:48 -0800722 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 file_kill(f);
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800724 f->f_path.dentry = NULL;
725 f->f_path.mnt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726cleanup_file:
727 put_filp(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 dput(dentry);
729 mntput(mnt);
730 return ERR_PTR(error);
731}
732
Trond Myklebust834f2a42005-10-18 14:20:16 -0700733/**
734 * lookup_instantiate_filp - instantiates the open intent filp
735 * @nd: pointer to nameidata
736 * @dentry: pointer to dentry
737 * @open: open callback
738 *
739 * Helper for filesystems that want to use lookup open intents and pass back
740 * a fully instantiated struct file to the caller.
741 * This function is meant to be called from within a filesystem's
742 * lookup method.
Oleg Drokin9a56c212006-03-25 03:07:02 -0800743 * Beware of calling it for non-regular files! Those ->open methods might block
744 * (e.g. in fifo_open), leaving you with parent locked (and in case of fifo,
745 * leading to a deadlock, as nobody can open that fifo anymore, because
746 * another process to open fifo will block on locked parent when doing lookup).
Trond Myklebust834f2a42005-10-18 14:20:16 -0700747 * Note that in case of error, nd->intent.open.file is destroyed, but the
748 * path information remains valid.
749 * If the open callback is set to NULL, then the standard f_op->open()
750 * filesystem callback is substituted.
751 */
752struct file *lookup_instantiate_filp(struct nameidata *nd, struct dentry *dentry,
753 int (*open)(struct inode *, struct file *))
754{
David Howells745ca242008-11-14 10:39:22 +1100755 const struct cred *cred = current_cred();
756
Trond Myklebust834f2a42005-10-18 14:20:16 -0700757 if (IS_ERR(nd->intent.open.file))
758 goto out;
759 if (IS_ERR(dentry))
760 goto out_err;
Jan Blunck4ac91372008-02-14 19:34:32 -0800761 nd->intent.open.file = __dentry_open(dget(dentry), mntget(nd->path.mnt),
Trond Myklebust834f2a42005-10-18 14:20:16 -0700762 nd->intent.open.file,
David Howells745ca242008-11-14 10:39:22 +1100763 open, cred);
Trond Myklebust834f2a42005-10-18 14:20:16 -0700764out:
765 return nd->intent.open.file;
766out_err:
767 release_open_intent(nd);
768 nd->intent.open.file = (struct file *)dentry;
769 goto out;
770}
771EXPORT_SYMBOL_GPL(lookup_instantiate_filp);
772
773/**
774 * nameidata_to_filp - convert a nameidata to an open filp.
775 * @nd: pointer to nameidata
776 * @flags: open flags
777 *
778 * Note that this function destroys the original nameidata
779 */
Al Viro482928d2009-12-19 10:10:39 -0500780struct file *nameidata_to_filp(struct nameidata *nd)
Trond Myklebust834f2a42005-10-18 14:20:16 -0700781{
David Howells745ca242008-11-14 10:39:22 +1100782 const struct cred *cred = current_cred();
Trond Myklebust834f2a42005-10-18 14:20:16 -0700783 struct file *filp;
784
785 /* Pick up the filp from the open intent */
786 filp = nd->intent.open.file;
787 /* Has the filesystem initialised the file for us? */
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800788 if (filp->f_path.dentry == NULL)
Al Viro482928d2009-12-19 10:10:39 -0500789 filp = __dentry_open(nd->path.dentry, nd->path.mnt, filp,
David Howells745ca242008-11-14 10:39:22 +1100790 NULL, cred);
Trond Myklebust834f2a42005-10-18 14:20:16 -0700791 else
Jan Blunck1d957f92008-02-14 19:34:35 -0800792 path_put(&nd->path);
Trond Myklebust834f2a42005-10-18 14:20:16 -0700793 return filp;
794}
795
Peter Staubach6fdcc212005-11-07 00:59:42 -0800796/*
797 * dentry_open() will have done dput(dentry) and mntput(mnt) if it returns an
798 * error.
799 */
David Howells745ca242008-11-14 10:39:22 +1100800struct file *dentry_open(struct dentry *dentry, struct vfsmount *mnt, int flags,
801 const struct cred *cred)
Peter Staubacha1a5b3d2005-09-13 01:25:12 -0700802{
803 int error;
804 struct file *f;
805
David Howellse0e81732009-09-02 09:13:40 +0100806 validate_creds(cred);
807
Christoph Hellwig322ee5b2008-02-15 14:37:24 -0800808 /*
809 * We must always pass in a valid mount pointer. Historically
810 * callers got away with not passing it, but we must enforce this at
811 * the earliest possible point now to avoid strange problems deep in the
812 * filesystem stack.
813 */
814 if (!mnt) {
815 printk(KERN_WARNING "%s called with NULL vfsmount\n", __func__);
816 dump_stack();
817 return ERR_PTR(-EINVAL);
818 }
819
Peter Staubacha1a5b3d2005-09-13 01:25:12 -0700820 error = -ENFILE;
821 f = get_empty_filp();
Peter Staubach6fdcc212005-11-07 00:59:42 -0800822 if (f == NULL) {
823 dput(dentry);
824 mntput(mnt);
Peter Staubacha1a5b3d2005-09-13 01:25:12 -0700825 return ERR_PTR(error);
Peter Staubach6fdcc212005-11-07 00:59:42 -0800826 }
Peter Staubacha1a5b3d2005-09-13 01:25:12 -0700827
Al Viro482928d2009-12-19 10:10:39 -0500828 f->f_flags = flags;
829 return __dentry_open(dentry, mnt, f, NULL, cred);
Peter Staubacha1a5b3d2005-09-13 01:25:12 -0700830}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831EXPORT_SYMBOL(dentry_open);
832
Matt Mackallb01ec0e2006-01-08 01:05:20 -0800833static void __put_unused_fd(struct files_struct *files, unsigned int fd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834{
Dipankar Sarmabadf1662005-09-09 13:04:10 -0700835 struct fdtable *fdt = files_fdtable(files);
836 __FD_CLR(fd, fdt->open_fds);
Eric Dumazet0c9e63f2006-03-23 03:00:12 -0800837 if (fd < files->next_fd)
838 files->next_fd = fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839}
840
Harvey Harrisonfc9b52c2008-02-08 04:19:52 -0800841void put_unused_fd(unsigned int fd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842{
843 struct files_struct *files = current->files;
844 spin_lock(&files->file_lock);
845 __put_unused_fd(files, fd);
846 spin_unlock(&files->file_lock);
847}
848
849EXPORT_SYMBOL(put_unused_fd);
850
851/*
Ulrich Drepper5590ff02006-01-18 17:43:53 -0800852 * Install a file pointer in the fd array.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 *
854 * The VFS is full of places where we drop the files lock between
855 * setting the open_fds bitmap and installing the file in the file
856 * array. At any such point, we are vulnerable to a dup2() race
857 * installing a file in the array before us. We need to detect this and
858 * fput() the struct file we are about to overwrite in this case.
859 *
860 * It should never happen - if we allow dup2() do it, _really_ bad things
861 * will follow.
862 */
863
Harvey Harrisonfc9b52c2008-02-08 04:19:52 -0800864void fd_install(unsigned int fd, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865{
866 struct files_struct *files = current->files;
Dipankar Sarmabadf1662005-09-09 13:04:10 -0700867 struct fdtable *fdt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 spin_lock(&files->file_lock);
Dipankar Sarmabadf1662005-09-09 13:04:10 -0700869 fdt = files_fdtable(files);
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700870 BUG_ON(fdt->fd[fd] != NULL);
871 rcu_assign_pointer(fdt->fd[fd], file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 spin_unlock(&files->file_lock);
873}
874
875EXPORT_SYMBOL(fd_install);
876
Ulrich Drepper5590ff02006-01-18 17:43:53 -0800877long do_sys_open(int dfd, const char __user *filename, int flags, int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878{
Miklos Szeredie922efc2005-09-06 15:18:25 -0700879 char *tmp = getname(filename);
880 int fd = PTR_ERR(tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 if (!IS_ERR(tmp)) {
Ulrich Drepperf23513e2007-07-15 23:40:32 -0700883 fd = get_unused_fd_flags(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 if (fd >= 0) {
Al Viro6e8341a2009-04-06 11:16:22 -0400885 struct file *f = do_filp_open(dfd, tmp, flags, mode, 0);
Telemaque Ndizihiwefed2fc12005-06-23 00:10:33 -0700886 if (IS_ERR(f)) {
887 put_unused_fd(fd);
888 fd = PTR_ERR(f);
889 } else {
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800890 fsnotify_open(f->f_path.dentry);
Telemaque Ndizihiwefed2fc12005-06-23 00:10:33 -0700891 fd_install(fd, f);
892 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 putname(tmp);
895 }
896 return fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897}
Miklos Szeredie922efc2005-09-06 15:18:25 -0700898
Heiko Carstensca013e92009-01-14 14:14:19 +0100899SYSCALL_DEFINE3(open, const char __user *, filename, int, flags, int, mode)
Miklos Szeredie922efc2005-09-06 15:18:25 -0700900{
Linus Torvalds385910f2006-04-18 13:22:59 -0700901 long ret;
902
Miklos Szeredie922efc2005-09-06 15:18:25 -0700903 if (force_o_largefile())
904 flags |= O_LARGEFILE;
905
Linus Torvalds385910f2006-04-18 13:22:59 -0700906 ret = do_sys_open(AT_FDCWD, filename, flags, mode);
907 /* avoid REGPARM breakage on x86: */
Roland McGrath54a01512008-04-10 15:37:38 -0700908 asmlinkage_protect(3, ret, filename, flags, mode);
Linus Torvalds385910f2006-04-18 13:22:59 -0700909 return ret;
Miklos Szeredie922efc2005-09-06 15:18:25 -0700910}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911
Heiko Carstens6559eed82009-01-14 14:14:32 +0100912SYSCALL_DEFINE4(openat, int, dfd, const char __user *, filename, int, flags,
913 int, mode)
Ulrich Drepper5590ff02006-01-18 17:43:53 -0800914{
Linus Torvalds385910f2006-04-18 13:22:59 -0700915 long ret;
916
Ulrich Drepper5590ff02006-01-18 17:43:53 -0800917 if (force_o_largefile())
918 flags |= O_LARGEFILE;
919
Linus Torvalds385910f2006-04-18 13:22:59 -0700920 ret = do_sys_open(dfd, filename, flags, mode);
921 /* avoid REGPARM breakage on x86: */
Roland McGrath54a01512008-04-10 15:37:38 -0700922 asmlinkage_protect(4, ret, dfd, filename, flags, mode);
Linus Torvalds385910f2006-04-18 13:22:59 -0700923 return ret;
Ulrich Drepper5590ff02006-01-18 17:43:53 -0800924}
Ulrich Drepper5590ff02006-01-18 17:43:53 -0800925
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926#ifndef __alpha__
927
928/*
929 * For backward compatibility? Maybe this should be moved
930 * into arch/i386 instead?
931 */
Heiko Carstens002c8972009-01-14 14:14:18 +0100932SYSCALL_DEFINE2(creat, const char __user *, pathname, int, mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933{
934 return sys_open(pathname, O_CREAT | O_WRONLY | O_TRUNC, mode);
935}
936
937#endif
938
939/*
940 * "id" is the POSIX thread ID. We use the
941 * files pointer for this..
942 */
943int filp_close(struct file *filp, fl_owner_t id)
944{
Christoph Lameter45778ca2005-06-23 00:10:17 -0700945 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946
947 if (!file_count(filp)) {
948 printk(KERN_ERR "VFS: Close: file count is 0\n");
Christoph Lameter45778ca2005-06-23 00:10:17 -0700949 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 }
951
Christoph Lameter45778ca2005-06-23 00:10:17 -0700952 if (filp->f_op && filp->f_op->flush)
Miklos Szeredi75e1fcc2006-06-23 02:05:12 -0700953 retval = filp->f_op->flush(filp, id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954
955 dnotify_flush(filp, id);
956 locks_remove_posix(filp, id);
957 fput(filp);
958 return retval;
959}
960
961EXPORT_SYMBOL(filp_close);
962
963/*
964 * Careful here! We test whether the file pointer is NULL before
965 * releasing the fd. This ensures that one clone task can't release
966 * an fd while another clone is opening it.
967 */
Heiko Carstensca013e92009-01-14 14:14:19 +0100968SYSCALL_DEFINE1(close, unsigned int, fd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969{
970 struct file * filp;
971 struct files_struct *files = current->files;
Dipankar Sarmabadf1662005-09-09 13:04:10 -0700972 struct fdtable *fdt;
Ernie Petridesee731f42006-09-29 02:00:13 -0700973 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974
975 spin_lock(&files->file_lock);
Dipankar Sarmabadf1662005-09-09 13:04:10 -0700976 fdt = files_fdtable(files);
977 if (fd >= fdt->max_fds)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 goto out_unlock;
Dipankar Sarmabadf1662005-09-09 13:04:10 -0700979 filp = fdt->fd[fd];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 if (!filp)
981 goto out_unlock;
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -0700982 rcu_assign_pointer(fdt->fd[fd], NULL);
Dipankar Sarmabadf1662005-09-09 13:04:10 -0700983 FD_CLR(fd, fdt->close_on_exec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 __put_unused_fd(files, fd);
985 spin_unlock(&files->file_lock);
Ernie Petridesee731f42006-09-29 02:00:13 -0700986 retval = filp_close(filp, files);
987
988 /* can't restart close syscall because file table entry was cleared */
989 if (unlikely(retval == -ERESTARTSYS ||
990 retval == -ERESTARTNOINTR ||
991 retval == -ERESTARTNOHAND ||
992 retval == -ERESTART_RESTARTBLOCK))
993 retval = -EINTR;
994
995 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996
997out_unlock:
998 spin_unlock(&files->file_lock);
999 return -EBADF;
1000}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001EXPORT_SYMBOL(sys_close);
1002
1003/*
1004 * This routine simulates a hangup on the tty, to arrange that users
1005 * are given clean terminals at login time.
1006 */
Heiko Carstensca013e92009-01-14 14:14:19 +01001007SYSCALL_DEFINE0(vhangup)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008{
1009 if (capable(CAP_SYS_TTY_CONFIG)) {
Alan Cox2cb59982008-10-13 10:40:30 +01001010 tty_vhangup_self();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 return 0;
1012 }
1013 return -EPERM;
1014}
1015
1016/*
1017 * Called when an inode is about to be open.
1018 * We use this to disallow opening large files on 32bit systems if
1019 * the caller didn't specify O_LARGEFILE. On 64bit systems we force
1020 * on this flag in sys_open.
1021 */
1022int generic_file_open(struct inode * inode, struct file * filp)
1023{
1024 if (!(filp->f_flags & O_LARGEFILE) && i_size_read(inode) > MAX_NON_LFS)
Alan Coxa9c62a12007-10-16 23:30:22 -07001025 return -EOVERFLOW;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 return 0;
1027}
1028
1029EXPORT_SYMBOL(generic_file_open);
1030
1031/*
1032 * This is used by subsystems that don't want seekable
1033 * file descriptors
1034 */
1035int nonseekable_open(struct inode *inode, struct file *filp)
1036{
1037 filp->f_mode &= ~(FMODE_LSEEK | FMODE_PREAD | FMODE_PWRITE);
1038 return 0;
1039}
1040
1041EXPORT_SYMBOL(nonseekable_open);