blob: a99ad09c3197a1f60e4332f86520183cffa50bbd [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/quotaops.h>
Robert Love0eeca282005-07-12 17:06:03 -040012#include <linux/fsnotify.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/module.h>
14#include <linux/slab.h>
15#include <linux/tty.h>
16#include <linux/namei.h>
17#include <linux/backing-dev.h>
Randy Dunlap16f7e0f2006-01-11 12:17:46 -080018#include <linux/capability.h>
Andrew G. Morgan086f7312008-07-04 09:59:58 -070019#include <linux/securebits.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/security.h>
21#include <linux/mount.h>
22#include <linux/vfs.h>
Ulrich Drepper5590ff02006-01-18 17:43:53 -080023#include <linux/fcntl.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <asm/uaccess.h>
25#include <linux/fs.h>
Yoav Zachef3daed2005-06-23 00:09:58 -070026#include <linux/personality.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/pagemap.h>
28#include <linux/syscalls.h>
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -070029#include <linux/rcupdate.h>
Amy Griffis73241cc2005-11-03 16:00:25 +000030#include <linux/audit.h>
Amit Arora97ac7352007-07-17 21:42:44 -040031#include <linux/falloc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
David Howells726c3342006-06-23 02:02:58 -070033int vfs_statfs(struct dentry *dentry, struct kstatfs *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070034{
35 int retval = -ENODEV;
36
David Howells726c3342006-06-23 02:02:58 -070037 if (dentry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 retval = -ENOSYS;
David Howells726c3342006-06-23 02:02:58 -070039 if (dentry->d_sb->s_op->statfs) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070040 memset(buf, 0, sizeof(*buf));
David Howells726c3342006-06-23 02:02:58 -070041 retval = security_sb_statfs(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -070042 if (retval)
43 return retval;
David Howells726c3342006-06-23 02:02:58 -070044 retval = dentry->d_sb->s_op->statfs(dentry, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 if (retval == 0 && buf->f_frsize == 0)
46 buf->f_frsize = buf->f_bsize;
47 }
48 }
49 return retval;
50}
51
52EXPORT_SYMBOL(vfs_statfs);
53
David Howells726c3342006-06-23 02:02:58 -070054static int vfs_statfs_native(struct dentry *dentry, struct statfs *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070055{
56 struct kstatfs st;
57 int retval;
58
David Howells726c3342006-06-23 02:02:58 -070059 retval = vfs_statfs(dentry, &st);
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 if (retval)
61 return retval;
62
63 if (sizeof(*buf) == sizeof(st))
64 memcpy(buf, &st, sizeof(st));
65 else {
66 if (sizeof buf->f_blocks == 4) {
67 if ((st.f_blocks | st.f_bfree | st.f_bavail) &
68 0xffffffff00000000ULL)
69 return -EOVERFLOW;
70 /*
71 * f_files and f_ffree may be -1; it's okay to stuff
72 * that into 32 bits
73 */
74 if (st.f_files != -1 &&
75 (st.f_files & 0xffffffff00000000ULL))
76 return -EOVERFLOW;
77 if (st.f_ffree != -1 &&
78 (st.f_ffree & 0xffffffff00000000ULL))
79 return -EOVERFLOW;
80 }
81
82 buf->f_type = st.f_type;
83 buf->f_bsize = st.f_bsize;
84 buf->f_blocks = st.f_blocks;
85 buf->f_bfree = st.f_bfree;
86 buf->f_bavail = st.f_bavail;
87 buf->f_files = st.f_files;
88 buf->f_ffree = st.f_ffree;
89 buf->f_fsid = st.f_fsid;
90 buf->f_namelen = st.f_namelen;
91 buf->f_frsize = st.f_frsize;
92 memset(buf->f_spare, 0, sizeof(buf->f_spare));
93 }
94 return 0;
95}
96
David Howells726c3342006-06-23 02:02:58 -070097static int vfs_statfs64(struct dentry *dentry, struct statfs64 *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070098{
99 struct kstatfs st;
100 int retval;
101
David Howells726c3342006-06-23 02:02:58 -0700102 retval = vfs_statfs(dentry, &st);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 if (retval)
104 return retval;
105
106 if (sizeof(*buf) == sizeof(st))
107 memcpy(buf, &st, sizeof(st));
108 else {
109 buf->f_type = st.f_type;
110 buf->f_bsize = st.f_bsize;
111 buf->f_blocks = st.f_blocks;
112 buf->f_bfree = st.f_bfree;
113 buf->f_bavail = st.f_bavail;
114 buf->f_files = st.f_files;
115 buf->f_ffree = st.f_ffree;
116 buf->f_fsid = st.f_fsid;
117 buf->f_namelen = st.f_namelen;
118 buf->f_frsize = st.f_frsize;
119 memset(buf->f_spare, 0, sizeof(buf->f_spare));
120 }
121 return 0;
122}
123
124asmlinkage long sys_statfs(const char __user * path, struct statfs __user * buf)
125{
126 struct nameidata nd;
127 int error;
128
129 error = user_path_walk(path, &nd);
130 if (!error) {
131 struct statfs tmp;
Jan Blunck4ac91372008-02-14 19:34:32 -0800132 error = vfs_statfs_native(nd.path.dentry, &tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 if (!error && copy_to_user(buf, &tmp, sizeof(tmp)))
134 error = -EFAULT;
Jan Blunck1d957f92008-02-14 19:34:35 -0800135 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 }
137 return error;
138}
139
140
141asmlinkage long sys_statfs64(const char __user *path, size_t sz, struct statfs64 __user *buf)
142{
143 struct nameidata nd;
144 long error;
145
146 if (sz != sizeof(*buf))
147 return -EINVAL;
148 error = user_path_walk(path, &nd);
149 if (!error) {
150 struct statfs64 tmp;
Jan Blunck4ac91372008-02-14 19:34:32 -0800151 error = vfs_statfs64(nd.path.dentry, &tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 if (!error && copy_to_user(buf, &tmp, sizeof(tmp)))
153 error = -EFAULT;
Jan Blunck1d957f92008-02-14 19:34:35 -0800154 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 }
156 return error;
157}
158
159
160asmlinkage long sys_fstatfs(unsigned int fd, struct statfs __user * buf)
161{
162 struct file * file;
163 struct statfs tmp;
164 int error;
165
166 error = -EBADF;
167 file = fget(fd);
168 if (!file)
169 goto out;
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800170 error = vfs_statfs_native(file->f_path.dentry, &tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 if (!error && copy_to_user(buf, &tmp, sizeof(tmp)))
172 error = -EFAULT;
173 fput(file);
174out:
175 return error;
176}
177
178asmlinkage long sys_fstatfs64(unsigned int fd, size_t sz, struct statfs64 __user *buf)
179{
180 struct file * file;
181 struct statfs64 tmp;
182 int error;
183
184 if (sz != sizeof(*buf))
185 return -EINVAL;
186
187 error = -EBADF;
188 file = fget(fd);
189 if (!file)
190 goto out;
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800191 error = vfs_statfs64(file->f_path.dentry, &tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 if (!error && copy_to_user(buf, &tmp, sizeof(tmp)))
193 error = -EFAULT;
194 fput(file);
195out:
196 return error;
197}
198
NeilBrown4a301312006-01-08 01:02:39 -0800199int do_truncate(struct dentry *dentry, loff_t length, unsigned int time_attrs,
200 struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201{
202 int err;
203 struct iattr newattrs;
204
205 /* Not pretty: "inode->i_size" shouldn't really be signed. But it is. */
206 if (length < 0)
207 return -EINVAL;
208
209 newattrs.ia_size = length;
NeilBrown4a301312006-01-08 01:02:39 -0800210 newattrs.ia_valid = ATTR_SIZE | time_attrs;
Miklos Szeredicc4e69d2005-11-07 00:59:49 -0800211 if (filp) {
212 newattrs.ia_file = filp;
213 newattrs.ia_valid |= ATTR_FILE;
214 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
Linus Torvalds7b82dc02007-05-08 20:10:00 -0700216 /* Remove suid/sgid on truncate too */
217 newattrs.ia_valid |= should_remove_suid(dentry);
218
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800219 mutex_lock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 err = notify_change(dentry, &newattrs);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800221 mutex_unlock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 return err;
223}
224
Matt Mackallb01ec0e2006-01-08 01:05:20 -0800225static long do_sys_truncate(const char __user * path, loff_t length)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226{
227 struct nameidata nd;
228 struct inode * inode;
229 int error;
230
231 error = -EINVAL;
232 if (length < 0) /* sorry, but loff_t says... */
233 goto out;
234
235 error = user_path_walk(path, &nd);
236 if (error)
237 goto out;
Jan Blunck4ac91372008-02-14 19:34:32 -0800238 inode = nd.path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
240 /* For directories it's -EISDIR, for other non-regulars - -EINVAL */
241 error = -EISDIR;
242 if (S_ISDIR(inode->i_mode))
243 goto dput_and_out;
244
245 error = -EINVAL;
246 if (!S_ISREG(inode->i_mode))
247 goto dput_and_out;
248
Dave Hansen9ac9b842008-02-15 14:37:52 -0800249 error = mnt_want_write(nd.path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 if (error)
251 goto dput_and_out;
252
Dave Hansen9ac9b842008-02-15 14:37:52 -0800253 error = vfs_permission(&nd, MAY_WRITE);
254 if (error)
255 goto mnt_drop_write_and_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
257 error = -EPERM;
258 if (IS_IMMUTABLE(inode) || IS_APPEND(inode))
Dave Hansen9ac9b842008-02-15 14:37:52 -0800259 goto mnt_drop_write_and_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 error = get_write_access(inode);
262 if (error)
Dave Hansen9ac9b842008-02-15 14:37:52 -0800263 goto mnt_drop_write_and_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264
david m. richter97003822007-07-31 00:39:12 -0700265 /*
266 * Make sure that there are no leases. get_write_access() protects
267 * against the truncate racing with a lease-granting setlease().
268 */
269 error = break_lease(inode, FMODE_WRITE);
270 if (error)
271 goto put_write_and_out;
272
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 error = locks_verify_truncate(inode, NULL, length);
274 if (!error) {
275 DQUOT_INIT(inode);
Jan Blunck4ac91372008-02-14 19:34:32 -0800276 error = do_truncate(nd.path.dentry, length, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
david m. richter97003822007-07-31 00:39:12 -0700279put_write_and_out:
280 put_write_access(inode);
Dave Hansen9ac9b842008-02-15 14:37:52 -0800281mnt_drop_write_and_out:
282 mnt_drop_write(nd.path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283dput_and_out:
Jan Blunck1d957f92008-02-14 19:34:35 -0800284 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285out:
286 return error;
287}
288
289asmlinkage long sys_truncate(const char __user * path, unsigned long length)
290{
291 /* on 32-bit boxen it will cut the range 2^31--2^32-1 off */
292 return do_sys_truncate(path, (long)length);
293}
294
Matt Mackallb01ec0e2006-01-08 01:05:20 -0800295static long do_sys_ftruncate(unsigned int fd, loff_t length, int small)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296{
297 struct inode * inode;
298 struct dentry *dentry;
299 struct file * file;
300 int error;
301
302 error = -EINVAL;
303 if (length < 0)
304 goto out;
305 error = -EBADF;
306 file = fget(fd);
307 if (!file)
308 goto out;
309
310 /* explicitly opened as large or we are on 64-bit box */
311 if (file->f_flags & O_LARGEFILE)
312 small = 0;
313
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800314 dentry = file->f_path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 inode = dentry->d_inode;
316 error = -EINVAL;
317 if (!S_ISREG(inode->i_mode) || !(file->f_mode & FMODE_WRITE))
318 goto out_putf;
319
320 error = -EINVAL;
321 /* Cannot ftruncate over 2^31 bytes without large file support */
322 if (small && length > MAX_NON_LFS)
323 goto out_putf;
324
325 error = -EPERM;
326 if (IS_APPEND(inode))
327 goto out_putf;
328
329 error = locks_verify_truncate(inode, file, length);
330 if (!error)
Peter Staubach6e656be2006-06-25 05:48:36 -0700331 error = do_truncate(dentry, length, ATTR_MTIME|ATTR_CTIME, file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332out_putf:
333 fput(file);
334out:
335 return error;
336}
337
338asmlinkage long sys_ftruncate(unsigned int fd, unsigned long length)
339{
Linus Torvalds0a489cb2006-04-18 13:02:48 -0700340 long ret = do_sys_ftruncate(fd, length, 1);
Linus Torvalds385910f2006-04-18 13:22:59 -0700341 /* avoid REGPARM breakage on x86: */
Roland McGrath54a01512008-04-10 15:37:38 -0700342 asmlinkage_protect(2, ret, fd, length);
Linus Torvalds0a489cb2006-04-18 13:02:48 -0700343 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344}
345
346/* LFS versions of truncate are only needed on 32 bit machines */
347#if BITS_PER_LONG == 32
348asmlinkage long sys_truncate64(const char __user * path, loff_t length)
349{
350 return do_sys_truncate(path, length);
351}
352
353asmlinkage long sys_ftruncate64(unsigned int fd, loff_t length)
354{
Linus Torvalds0a489cb2006-04-18 13:02:48 -0700355 long ret = do_sys_ftruncate(fd, length, 0);
Linus Torvalds385910f2006-04-18 13:22:59 -0700356 /* avoid REGPARM breakage on x86: */
Roland McGrath54a01512008-04-10 15:37:38 -0700357 asmlinkage_protect(2, ret, fd, length);
Linus Torvalds0a489cb2006-04-18 13:02:48 -0700358 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359}
360#endif
361
Amit Arora97ac7352007-07-17 21:42:44 -0400362asmlinkage long sys_fallocate(int fd, int mode, loff_t offset, loff_t len)
363{
364 struct file *file;
365 struct inode *inode;
366 long ret = -EINVAL;
367
368 if (offset < 0 || len <= 0)
369 goto out;
370
371 /* Return error if mode is not supported */
372 ret = -EOPNOTSUPP;
373 if (mode && !(mode & FALLOC_FL_KEEP_SIZE))
374 goto out;
375
376 ret = -EBADF;
377 file = fget(fd);
378 if (!file)
379 goto out;
380 if (!(file->f_mode & FMODE_WRITE))
381 goto out_fput;
382 /*
383 * Revalidate the write permissions, in case security policy has
384 * changed since the files were opened.
385 */
386 ret = security_file_permission(file, MAY_WRITE);
387 if (ret)
388 goto out_fput;
389
390 inode = file->f_path.dentry->d_inode;
391
392 ret = -ESPIPE;
393 if (S_ISFIFO(inode->i_mode))
394 goto out_fput;
395
396 ret = -ENODEV;
397 /*
398 * Let individual file system decide if it supports preallocation
399 * for directories or not.
400 */
401 if (!S_ISREG(inode->i_mode) && !S_ISDIR(inode->i_mode))
402 goto out_fput;
403
404 ret = -EFBIG;
405 /* Check for wrap through zero too */
406 if (((offset + len) > inode->i_sb->s_maxbytes) || ((offset + len) < 0))
407 goto out_fput;
408
409 if (inode->i_op && inode->i_op->fallocate)
410 ret = inode->i_op->fallocate(inode, mode, offset, len);
411 else
Ulrich Drepper0d786d42007-07-23 18:43:46 -0700412 ret = -EOPNOTSUPP;
Amit Arora97ac7352007-07-17 21:42:44 -0400413
414out_fput:
415 fput(file);
416out:
417 return ret;
418}
419
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420/*
421 * access() needs to use the real uid/gid, not the effective uid/gid.
422 * We do this by temporarily clearing all FS-related capabilities and
423 * switching the fsuid/fsgid around to the real ones.
424 */
Ulrich Drepper5590ff02006-01-18 17:43:53 -0800425asmlinkage long sys_faccessat(int dfd, const char __user *filename, int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426{
427 struct nameidata nd;
428 int old_fsuid, old_fsgid;
Andrew G. Morgan086f7312008-07-04 09:59:58 -0700429 kernel_cap_t uninitialized_var(old_cap); /* !SECURE_NO_SETUID_FIXUP */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 int res;
431
432 if (mode & ~S_IRWXO) /* where's F_OK, X_OK, W_OK, R_OK? */
433 return -EINVAL;
434
435 old_fsuid = current->fsuid;
436 old_fsgid = current->fsgid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
438 current->fsuid = current->uid;
439 current->fsgid = current->gid;
440
Andrew G. Morgan086f7312008-07-04 09:59:58 -0700441 if (!issecure(SECURE_NO_SETUID_FIXUP)) {
442 /*
443 * Clear the capabilities if we switch to a non-root user
444 */
445#ifndef CONFIG_SECURITY_FILE_CAPABILITIES
446 /*
447 * FIXME: There is a race here against sys_capset. The
448 * capabilities can change yet we will restore the old
449 * value below. We should hold task_capabilities_lock,
450 * but we cannot because user_path_walk can sleep.
451 */
452#endif /* ndef CONFIG_SECURITY_FILE_CAPABILITIES */
453 if (current->uid)
454 old_cap = cap_set_effective(__cap_empty_set);
455 else
456 old_cap = cap_set_effective(current->cap_permitted);
457 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458
Ulrich Drepper5590ff02006-01-18 17:43:53 -0800459 res = __user_walk_fd(dfd, filename, LOOKUP_FOLLOW|LOOKUP_ACCESS, &nd);
Dave Hansen6902d922006-09-30 23:29:01 -0700460 if (res)
461 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462
Dave Hansen6902d922006-09-30 23:29:01 -0700463 res = vfs_permission(&nd, mode);
464 /* SuS v2 requires we report a read only fs too */
465 if(res || !(mode & S_IWOTH) ||
Jan Blunck4ac91372008-02-14 19:34:32 -0800466 special_file(nd.path.dentry->d_inode->i_mode))
Dave Hansen6902d922006-09-30 23:29:01 -0700467 goto out_path_release;
Dave Hansen2f676cb2008-02-15 14:37:55 -0800468 /*
469 * This is a rare case where using __mnt_is_readonly()
470 * is OK without a mnt_want/drop_write() pair. Since
471 * no actual write to the fs is performed here, we do
472 * not need to telegraph to that to anyone.
473 *
474 * By doing this, we accept that this access is
475 * inherently racy and know that the fs may change
476 * state before we even see this result.
477 */
478 if (__mnt_is_readonly(nd.path.mnt))
Dave Hansen6902d922006-09-30 23:29:01 -0700479 res = -EROFS;
480
481out_path_release:
Jan Blunck1d957f92008-02-14 19:34:35 -0800482 path_put(&nd.path);
Dave Hansen6902d922006-09-30 23:29:01 -0700483out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 current->fsuid = old_fsuid;
485 current->fsgid = old_fsgid;
Andrew G. Morgan086f7312008-07-04 09:59:58 -0700486
487 if (!issecure(SECURE_NO_SETUID_FIXUP))
488 cap_set_effective(old_cap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489
490 return res;
491}
492
Ulrich Drepper5590ff02006-01-18 17:43:53 -0800493asmlinkage long sys_access(const char __user *filename, int mode)
494{
495 return sys_faccessat(AT_FDCWD, filename, mode);
496}
497
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498asmlinkage long sys_chdir(const char __user * filename)
499{
500 struct nameidata nd;
501 int error;
502
Miklos Szeredi650a8982006-09-29 01:59:35 -0700503 error = __user_walk(filename,
504 LOOKUP_FOLLOW|LOOKUP_DIRECTORY|LOOKUP_CHDIR, &nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 if (error)
506 goto out;
507
Christoph Hellwige4543ed2005-11-08 21:35:04 -0800508 error = vfs_permission(&nd, MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 if (error)
510 goto dput_and_out;
511
Jan Blunckac748a02008-02-14 19:34:39 -0800512 set_fs_pwd(current->fs, &nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513
514dput_and_out:
Jan Blunck1d957f92008-02-14 19:34:35 -0800515 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516out:
517 return error;
518}
519
520asmlinkage long sys_fchdir(unsigned int fd)
521{
522 struct file *file;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 int error;
525
526 error = -EBADF;
527 file = fget(fd);
528 if (!file)
529 goto out;
530
Jan Blunckac748a02008-02-14 19:34:39 -0800531 inode = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532
533 error = -ENOTDIR;
534 if (!S_ISDIR(inode->i_mode))
535 goto out_putf;
536
Christoph Hellwig8c744fb2005-11-08 21:35:04 -0800537 error = file_permission(file, MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 if (!error)
Jan Blunckac748a02008-02-14 19:34:39 -0800539 set_fs_pwd(current->fs, &file->f_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540out_putf:
541 fput(file);
542out:
543 return error;
544}
545
546asmlinkage long sys_chroot(const char __user * filename)
547{
548 struct nameidata nd;
549 int error;
550
551 error = __user_walk(filename, LOOKUP_FOLLOW | LOOKUP_DIRECTORY | LOOKUP_NOALT, &nd);
552 if (error)
553 goto out;
554
Christoph Hellwige4543ed2005-11-08 21:35:04 -0800555 error = vfs_permission(&nd, MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 if (error)
557 goto dput_and_out;
558
559 error = -EPERM;
560 if (!capable(CAP_SYS_CHROOT))
561 goto dput_and_out;
562
Jan Blunckac748a02008-02-14 19:34:39 -0800563 set_fs_root(current->fs, &nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 set_fs_altroot();
565 error = 0;
566dput_and_out:
Jan Blunck1d957f92008-02-14 19:34:35 -0800567 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568out:
569 return error;
570}
571
572asmlinkage long sys_fchmod(unsigned int fd, mode_t mode)
573{
574 struct inode * inode;
575 struct dentry * dentry;
576 struct file * file;
577 int err = -EBADF;
578 struct iattr newattrs;
579
580 file = fget(fd);
581 if (!file)
582 goto out;
583
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800584 dentry = file->f_path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 inode = dentry->d_inode;
586
Al Viro5a190ae2007-06-07 12:19:32 -0400587 audit_inode(NULL, dentry);
Amy Griffis73241cc2005-11-03 16:00:25 +0000588
Dave Hansen2af482a2008-02-15 14:37:50 -0800589 err = mnt_want_write(file->f_path.mnt);
590 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 goto out_putf;
592 err = -EPERM;
593 if (IS_IMMUTABLE(inode) || IS_APPEND(inode))
Dave Hansen2af482a2008-02-15 14:37:50 -0800594 goto out_drop_write;
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800595 mutex_lock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 if (mode == (mode_t) -1)
597 mode = inode->i_mode;
598 newattrs.ia_mode = (mode & S_IALLUGO) | (inode->i_mode & ~S_IALLUGO);
599 newattrs.ia_valid = ATTR_MODE | ATTR_CTIME;
600 err = notify_change(dentry, &newattrs);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800601 mutex_unlock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602
Dave Hansen2af482a2008-02-15 14:37:50 -0800603out_drop_write:
604 mnt_drop_write(file->f_path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605out_putf:
606 fput(file);
607out:
608 return err;
609}
610
Ulrich Drepper5590ff02006-01-18 17:43:53 -0800611asmlinkage long sys_fchmodat(int dfd, const char __user *filename,
612 mode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613{
614 struct nameidata nd;
615 struct inode * inode;
616 int error;
617 struct iattr newattrs;
618
Ulrich Drepper5590ff02006-01-18 17:43:53 -0800619 error = __user_walk_fd(dfd, filename, LOOKUP_FOLLOW, &nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 if (error)
621 goto out;
Jan Blunck4ac91372008-02-14 19:34:32 -0800622 inode = nd.path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623
Dave Hansen2af482a2008-02-15 14:37:50 -0800624 error = mnt_want_write(nd.path.mnt);
625 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 goto dput_and_out;
627
628 error = -EPERM;
629 if (IS_IMMUTABLE(inode) || IS_APPEND(inode))
Dave Hansen2af482a2008-02-15 14:37:50 -0800630 goto out_drop_write;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800632 mutex_lock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 if (mode == (mode_t) -1)
634 mode = inode->i_mode;
635 newattrs.ia_mode = (mode & S_IALLUGO) | (inode->i_mode & ~S_IALLUGO);
636 newattrs.ia_valid = ATTR_MODE | ATTR_CTIME;
Jan Blunck4ac91372008-02-14 19:34:32 -0800637 error = notify_change(nd.path.dentry, &newattrs);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800638 mutex_unlock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639
Dave Hansen2af482a2008-02-15 14:37:50 -0800640out_drop_write:
641 mnt_drop_write(nd.path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642dput_and_out:
Jan Blunck1d957f92008-02-14 19:34:35 -0800643 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644out:
645 return error;
646}
647
Ulrich Drepper5590ff02006-01-18 17:43:53 -0800648asmlinkage long sys_chmod(const char __user *filename, mode_t mode)
649{
650 return sys_fchmodat(AT_FDCWD, filename, mode);
651}
652
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653static int chown_common(struct dentry * dentry, uid_t user, gid_t group)
654{
655 struct inode * inode;
656 int error;
657 struct iattr newattrs;
658
659 error = -ENOENT;
660 if (!(inode = dentry->d_inode)) {
661 printk(KERN_ERR "chown_common: NULL inode\n");
662 goto out;
663 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 error = -EPERM;
665 if (IS_IMMUTABLE(inode) || IS_APPEND(inode))
666 goto out;
667 newattrs.ia_valid = ATTR_CTIME;
668 if (user != (uid_t) -1) {
669 newattrs.ia_valid |= ATTR_UID;
670 newattrs.ia_uid = user;
671 }
672 if (group != (gid_t) -1) {
673 newattrs.ia_valid |= ATTR_GID;
674 newattrs.ia_gid = group;
675 }
676 if (!S_ISDIR(inode->i_mode))
Serge E. Hallynb5376772007-10-16 23:31:36 -0700677 newattrs.ia_valid |=
678 ATTR_KILL_SUID | ATTR_KILL_SGID | ATTR_KILL_PRIV;
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800679 mutex_lock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 error = notify_change(dentry, &newattrs);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800681 mutex_unlock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682out:
683 return error;
684}
685
686asmlinkage long sys_chown(const char __user * filename, uid_t user, gid_t group)
687{
688 struct nameidata nd;
689 int error;
690
691 error = user_path_walk(filename, &nd);
Dave Hansen6902d922006-09-30 23:29:01 -0700692 if (error)
693 goto out;
Dave Hansen2af482a2008-02-15 14:37:50 -0800694 error = mnt_want_write(nd.path.mnt);
695 if (error)
696 goto out_release;
Jan Blunck4ac91372008-02-14 19:34:32 -0800697 error = chown_common(nd.path.dentry, user, group);
Dave Hansen2af482a2008-02-15 14:37:50 -0800698 mnt_drop_write(nd.path.mnt);
699out_release:
Jan Blunck1d957f92008-02-14 19:34:35 -0800700 path_put(&nd.path);
Dave Hansen6902d922006-09-30 23:29:01 -0700701out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 return error;
703}
704
Ulrich Drepper5590ff02006-01-18 17:43:53 -0800705asmlinkage long sys_fchownat(int dfd, const char __user *filename, uid_t user,
706 gid_t group, int flag)
707{
708 struct nameidata nd;
709 int error = -EINVAL;
710 int follow;
711
712 if ((flag & ~AT_SYMLINK_NOFOLLOW) != 0)
713 goto out;
714
715 follow = (flag & AT_SYMLINK_NOFOLLOW) ? 0 : LOOKUP_FOLLOW;
716 error = __user_walk_fd(dfd, filename, follow, &nd);
Dave Hansen6902d922006-09-30 23:29:01 -0700717 if (error)
718 goto out;
Dave Hansen2af482a2008-02-15 14:37:50 -0800719 error = mnt_want_write(nd.path.mnt);
720 if (error)
721 goto out_release;
Jan Blunck4ac91372008-02-14 19:34:32 -0800722 error = chown_common(nd.path.dentry, user, group);
Dave Hansen2af482a2008-02-15 14:37:50 -0800723 mnt_drop_write(nd.path.mnt);
724out_release:
Jan Blunck1d957f92008-02-14 19:34:35 -0800725 path_put(&nd.path);
Ulrich Drepper5590ff02006-01-18 17:43:53 -0800726out:
727 return error;
728}
729
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730asmlinkage long sys_lchown(const char __user * filename, uid_t user, gid_t group)
731{
732 struct nameidata nd;
733 int error;
734
735 error = user_path_walk_link(filename, &nd);
Dave Hansen6902d922006-09-30 23:29:01 -0700736 if (error)
737 goto out;
Dave Hansen2af482a2008-02-15 14:37:50 -0800738 error = mnt_want_write(nd.path.mnt);
739 if (error)
740 goto out_release;
Jan Blunck4ac91372008-02-14 19:34:32 -0800741 error = chown_common(nd.path.dentry, user, group);
Dave Hansen2af482a2008-02-15 14:37:50 -0800742 mnt_drop_write(nd.path.mnt);
743out_release:
Jan Blunck1d957f92008-02-14 19:34:35 -0800744 path_put(&nd.path);
Dave Hansen6902d922006-09-30 23:29:01 -0700745out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 return error;
747}
748
749
750asmlinkage long sys_fchown(unsigned int fd, uid_t user, gid_t group)
751{
752 struct file * file;
753 int error = -EBADF;
Dave Hansen6902d922006-09-30 23:29:01 -0700754 struct dentry * dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755
756 file = fget(fd);
Dave Hansen6902d922006-09-30 23:29:01 -0700757 if (!file)
758 goto out;
759
Dave Hansen2af482a2008-02-15 14:37:50 -0800760 error = mnt_want_write(file->f_path.mnt);
761 if (error)
762 goto out_fput;
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800763 dentry = file->f_path.dentry;
Al Viro5a190ae2007-06-07 12:19:32 -0400764 audit_inode(NULL, dentry);
Dave Hansen6902d922006-09-30 23:29:01 -0700765 error = chown_common(dentry, user, group);
Dave Hansen2af482a2008-02-15 14:37:50 -0800766 mnt_drop_write(file->f_path.mnt);
767out_fput:
Dave Hansen6902d922006-09-30 23:29:01 -0700768 fput(file);
769out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 return error;
771}
772
Dave Hansen4a3fd212008-02-15 14:37:48 -0800773/*
774 * You have to be very careful that these write
775 * counts get cleaned up in error cases and
776 * upon __fput(). This should probably never
777 * be called outside of __dentry_open().
778 */
779static inline int __get_file_write_access(struct inode *inode,
780 struct vfsmount *mnt)
781{
782 int error;
783 error = get_write_access(inode);
784 if (error)
785 return error;
786 /*
787 * Do not take mount writer counts on
788 * special files since no writes to
789 * the mount itself will occur.
790 */
791 if (!special_file(inode->i_mode)) {
792 /*
793 * Balanced in __fput()
794 */
795 error = mnt_want_write(mnt);
796 if (error)
797 put_write_access(inode);
798 }
799 return error;
800}
801
Peter Staubacha1a5b3d2005-09-13 01:25:12 -0700802static struct file *__dentry_open(struct dentry *dentry, struct vfsmount *mnt,
Trond Myklebust834f2a42005-10-18 14:20:16 -0700803 int flags, struct file *f,
804 int (*open)(struct inode *, struct file *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 struct inode *inode;
807 int error;
808
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 f->f_flags = flags;
Peter Staubacha1a5b3d2005-09-13 01:25:12 -0700810 f->f_mode = ((flags+1) & O_ACCMODE) | FMODE_LSEEK |
811 FMODE_PREAD | FMODE_PWRITE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 inode = dentry->d_inode;
813 if (f->f_mode & FMODE_WRITE) {
Dave Hansen4a3fd212008-02-15 14:37:48 -0800814 error = __get_file_write_access(inode, mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 if (error)
816 goto cleanup_file;
Dave Hansenad775f52008-02-15 14:38:01 -0800817 if (!special_file(inode->i_mode))
818 file_take_write(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 }
820
821 f->f_mapping = inode->i_mapping;
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800822 f->f_path.dentry = dentry;
823 f->f_path.mnt = mnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 f->f_pos = 0;
825 f->f_op = fops_get(inode->i_fop);
826 file_move(f, &inode->i_sb->s_files);
827
Yuichi Nakamura788e7dd2007-09-14 09:27:07 +0900828 error = security_dentry_open(f);
829 if (error)
830 goto cleanup_all;
831
Trond Myklebust834f2a42005-10-18 14:20:16 -0700832 if (!open && f->f_op)
833 open = f->f_op->open;
834 if (open) {
835 error = open(inode, f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 if (error)
837 goto cleanup_all;
838 }
Trond Myklebust834f2a42005-10-18 14:20:16 -0700839
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 f->f_flags &= ~(O_CREAT | O_EXCL | O_NOCTTY | O_TRUNC);
841
842 file_ra_state_init(&f->f_ra, f->f_mapping->host->i_mapping);
843
844 /* NB: we're sure to have correct a_ops only after f_op->open */
845 if (f->f_flags & O_DIRECT) {
Carsten Otteceffc072005-06-23 22:05:25 -0700846 if (!f->f_mapping->a_ops ||
847 ((!f->f_mapping->a_ops->direct_IO) &&
Nick Piggin70688e42008-04-28 02:13:02 -0700848 (!f->f_mapping->a_ops->get_xip_mem))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 fput(f);
850 f = ERR_PTR(-EINVAL);
851 }
852 }
853
854 return f;
855
856cleanup_all:
857 fops_put(f->f_op);
Dave Hansen4a3fd212008-02-15 14:37:48 -0800858 if (f->f_mode & FMODE_WRITE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 put_write_access(inode);
Dave Hansenad775f52008-02-15 14:38:01 -0800860 if (!special_file(inode->i_mode)) {
861 /*
862 * We don't consider this a real
863 * mnt_want/drop_write() pair
864 * because it all happenend right
865 * here, so just reset the state.
866 */
867 file_reset_write(f);
Dave Hansen4a3fd212008-02-15 14:37:48 -0800868 mnt_drop_write(mnt);
Dave Hansenad775f52008-02-15 14:38:01 -0800869 }
Dave Hansen4a3fd212008-02-15 14:37:48 -0800870 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 file_kill(f);
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800872 f->f_path.dentry = NULL;
873 f->f_path.mnt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874cleanup_file:
875 put_filp(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 dput(dentry);
877 mntput(mnt);
878 return ERR_PTR(error);
879}
880
Trond Myklebust834f2a42005-10-18 14:20:16 -0700881/**
882 * lookup_instantiate_filp - instantiates the open intent filp
883 * @nd: pointer to nameidata
884 * @dentry: pointer to dentry
885 * @open: open callback
886 *
887 * Helper for filesystems that want to use lookup open intents and pass back
888 * a fully instantiated struct file to the caller.
889 * This function is meant to be called from within a filesystem's
890 * lookup method.
Oleg Drokin9a56c212006-03-25 03:07:02 -0800891 * Beware of calling it for non-regular files! Those ->open methods might block
892 * (e.g. in fifo_open), leaving you with parent locked (and in case of fifo,
893 * leading to a deadlock, as nobody can open that fifo anymore, because
894 * another process to open fifo will block on locked parent when doing lookup).
Trond Myklebust834f2a42005-10-18 14:20:16 -0700895 * Note that in case of error, nd->intent.open.file is destroyed, but the
896 * path information remains valid.
897 * If the open callback is set to NULL, then the standard f_op->open()
898 * filesystem callback is substituted.
899 */
900struct file *lookup_instantiate_filp(struct nameidata *nd, struct dentry *dentry,
901 int (*open)(struct inode *, struct file *))
902{
903 if (IS_ERR(nd->intent.open.file))
904 goto out;
905 if (IS_ERR(dentry))
906 goto out_err;
Jan Blunck4ac91372008-02-14 19:34:32 -0800907 nd->intent.open.file = __dentry_open(dget(dentry), mntget(nd->path.mnt),
Trond Myklebust834f2a42005-10-18 14:20:16 -0700908 nd->intent.open.flags - 1,
909 nd->intent.open.file,
910 open);
911out:
912 return nd->intent.open.file;
913out_err:
914 release_open_intent(nd);
915 nd->intent.open.file = (struct file *)dentry;
916 goto out;
917}
918EXPORT_SYMBOL_GPL(lookup_instantiate_filp);
919
920/**
921 * nameidata_to_filp - convert a nameidata to an open filp.
922 * @nd: pointer to nameidata
923 * @flags: open flags
924 *
925 * Note that this function destroys the original nameidata
926 */
927struct file *nameidata_to_filp(struct nameidata *nd, int flags)
928{
929 struct file *filp;
930
931 /* Pick up the filp from the open intent */
932 filp = nd->intent.open.file;
933 /* Has the filesystem initialised the file for us? */
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800934 if (filp->f_path.dentry == NULL)
Jan Blunck4ac91372008-02-14 19:34:32 -0800935 filp = __dentry_open(nd->path.dentry, nd->path.mnt, flags, filp,
936 NULL);
Trond Myklebust834f2a42005-10-18 14:20:16 -0700937 else
Jan Blunck1d957f92008-02-14 19:34:35 -0800938 path_put(&nd->path);
Trond Myklebust834f2a42005-10-18 14:20:16 -0700939 return filp;
940}
941
Peter Staubach6fdcc212005-11-07 00:59:42 -0800942/*
943 * dentry_open() will have done dput(dentry) and mntput(mnt) if it returns an
944 * error.
945 */
Peter Staubacha1a5b3d2005-09-13 01:25:12 -0700946struct file *dentry_open(struct dentry *dentry, struct vfsmount *mnt, int flags)
947{
948 int error;
949 struct file *f;
950
Christoph Hellwig322ee5b2008-02-15 14:37:24 -0800951 /*
952 * We must always pass in a valid mount pointer. Historically
953 * callers got away with not passing it, but we must enforce this at
954 * the earliest possible point now to avoid strange problems deep in the
955 * filesystem stack.
956 */
957 if (!mnt) {
958 printk(KERN_WARNING "%s called with NULL vfsmount\n", __func__);
959 dump_stack();
960 return ERR_PTR(-EINVAL);
961 }
962
Peter Staubacha1a5b3d2005-09-13 01:25:12 -0700963 error = -ENFILE;
964 f = get_empty_filp();
Peter Staubach6fdcc212005-11-07 00:59:42 -0800965 if (f == NULL) {
966 dput(dentry);
967 mntput(mnt);
Peter Staubacha1a5b3d2005-09-13 01:25:12 -0700968 return ERR_PTR(error);
Peter Staubach6fdcc212005-11-07 00:59:42 -0800969 }
Peter Staubacha1a5b3d2005-09-13 01:25:12 -0700970
Trond Myklebust834f2a42005-10-18 14:20:16 -0700971 return __dentry_open(dentry, mnt, flags, f, NULL);
Peter Staubacha1a5b3d2005-09-13 01:25:12 -0700972}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973EXPORT_SYMBOL(dentry_open);
974
975/*
976 * Find an empty file descriptor entry, and mark it busy.
977 */
Ulrich Drepper4a195422007-07-15 23:40:34 -0700978int get_unused_fd_flags(int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979{
980 struct files_struct * files = current->files;
981 int fd, error;
Dipankar Sarmabadf1662005-09-09 13:04:10 -0700982 struct fdtable *fdt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983
984 error = -EMFILE;
985 spin_lock(&files->file_lock);
986
987repeat:
Dipankar Sarmabadf1662005-09-09 13:04:10 -0700988 fdt = files_fdtable(files);
Vadim Lobanovbbea9f62006-12-10 02:21:12 -0800989 fd = find_next_zero_bit(fdt->open_fds->fds_bits, fdt->max_fds,
Eric Dumazet0c9e63f2006-03-23 03:00:12 -0800990 files->next_fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991
992 /*
993 * N.B. For clone tasks sharing a files structure, this test
994 * will limit the total number of files that can be opened.
995 */
996 if (fd >= current->signal->rlim[RLIMIT_NOFILE].rlim_cur)
997 goto out;
998
999 /* Do we need to expand the fd array or fd set? */
1000 error = expand_files(files, fd);
1001 if (error < 0)
1002 goto out;
1003
1004 if (error) {
1005 /*
1006 * If we needed to expand the fs array we
1007 * might have blocked - try again.
1008 */
1009 error = -EMFILE;
1010 goto repeat;
1011 }
1012
Dipankar Sarmabadf1662005-09-09 13:04:10 -07001013 FD_SET(fd, fdt->open_fds);
Ulrich Drepperf23513e2007-07-15 23:40:32 -07001014 if (flags & O_CLOEXEC)
1015 FD_SET(fd, fdt->close_on_exec);
1016 else
1017 FD_CLR(fd, fdt->close_on_exec);
Eric Dumazet0c9e63f2006-03-23 03:00:12 -08001018 files->next_fd = fd + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019#if 1
1020 /* Sanity check */
Dipankar Sarmabadf1662005-09-09 13:04:10 -07001021 if (fdt->fd[fd] != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 printk(KERN_WARNING "get_unused_fd: slot %d not NULL!\n", fd);
Dipankar Sarmabadf1662005-09-09 13:04:10 -07001023 fdt->fd[fd] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 }
1025#endif
1026 error = fd;
1027
1028out:
1029 spin_unlock(&files->file_lock);
1030 return error;
1031}
1032
Ulrich Drepperf23513e2007-07-15 23:40:32 -07001033int get_unused_fd(void)
1034{
1035 return get_unused_fd_flags(0);
1036}
1037
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038EXPORT_SYMBOL(get_unused_fd);
1039
Matt Mackallb01ec0e2006-01-08 01:05:20 -08001040static void __put_unused_fd(struct files_struct *files, unsigned int fd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041{
Dipankar Sarmabadf1662005-09-09 13:04:10 -07001042 struct fdtable *fdt = files_fdtable(files);
1043 __FD_CLR(fd, fdt->open_fds);
Eric Dumazet0c9e63f2006-03-23 03:00:12 -08001044 if (fd < files->next_fd)
1045 files->next_fd = fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046}
1047
Harvey Harrisonfc9b52c2008-02-08 04:19:52 -08001048void put_unused_fd(unsigned int fd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049{
1050 struct files_struct *files = current->files;
1051 spin_lock(&files->file_lock);
1052 __put_unused_fd(files, fd);
1053 spin_unlock(&files->file_lock);
1054}
1055
1056EXPORT_SYMBOL(put_unused_fd);
1057
1058/*
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001059 * Install a file pointer in the fd array.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 *
1061 * The VFS is full of places where we drop the files lock between
1062 * setting the open_fds bitmap and installing the file in the file
1063 * array. At any such point, we are vulnerable to a dup2() race
1064 * installing a file in the array before us. We need to detect this and
1065 * fput() the struct file we are about to overwrite in this case.
1066 *
1067 * It should never happen - if we allow dup2() do it, _really_ bad things
1068 * will follow.
1069 */
1070
Harvey Harrisonfc9b52c2008-02-08 04:19:52 -08001071void fd_install(unsigned int fd, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072{
1073 struct files_struct *files = current->files;
Dipankar Sarmabadf1662005-09-09 13:04:10 -07001074 struct fdtable *fdt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 spin_lock(&files->file_lock);
Dipankar Sarmabadf1662005-09-09 13:04:10 -07001076 fdt = files_fdtable(files);
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -07001077 BUG_ON(fdt->fd[fd] != NULL);
1078 rcu_assign_pointer(fdt->fd[fd], file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 spin_unlock(&files->file_lock);
1080}
1081
1082EXPORT_SYMBOL(fd_install);
1083
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001084long do_sys_open(int dfd, const char __user *filename, int flags, int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085{
Miklos Szeredie922efc2005-09-06 15:18:25 -07001086 char *tmp = getname(filename);
1087 int fd = PTR_ERR(tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 if (!IS_ERR(tmp)) {
Ulrich Drepperf23513e2007-07-15 23:40:32 -07001090 fd = get_unused_fd_flags(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 if (fd >= 0) {
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001092 struct file *f = do_filp_open(dfd, tmp, flags, mode);
Telemaque Ndizihiwefed2fc12005-06-23 00:10:33 -07001093 if (IS_ERR(f)) {
1094 put_unused_fd(fd);
1095 fd = PTR_ERR(f);
1096 } else {
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -08001097 fsnotify_open(f->f_path.dentry);
Telemaque Ndizihiwefed2fc12005-06-23 00:10:33 -07001098 fd_install(fd, f);
1099 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 putname(tmp);
1102 }
1103 return fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104}
Miklos Szeredie922efc2005-09-06 15:18:25 -07001105
1106asmlinkage long sys_open(const char __user *filename, int flags, int mode)
1107{
Linus Torvalds385910f2006-04-18 13:22:59 -07001108 long ret;
1109
Miklos Szeredie922efc2005-09-06 15:18:25 -07001110 if (force_o_largefile())
1111 flags |= O_LARGEFILE;
1112
Linus Torvalds385910f2006-04-18 13:22:59 -07001113 ret = do_sys_open(AT_FDCWD, filename, flags, mode);
1114 /* avoid REGPARM breakage on x86: */
Roland McGrath54a01512008-04-10 15:37:38 -07001115 asmlinkage_protect(3, ret, filename, flags, mode);
Linus Torvalds385910f2006-04-18 13:22:59 -07001116 return ret;
Miklos Szeredie922efc2005-09-06 15:18:25 -07001117}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001119asmlinkage long sys_openat(int dfd, const char __user *filename, int flags,
1120 int mode)
1121{
Linus Torvalds385910f2006-04-18 13:22:59 -07001122 long ret;
1123
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001124 if (force_o_largefile())
1125 flags |= O_LARGEFILE;
1126
Linus Torvalds385910f2006-04-18 13:22:59 -07001127 ret = do_sys_open(dfd, filename, flags, mode);
1128 /* avoid REGPARM breakage on x86: */
Roland McGrath54a01512008-04-10 15:37:38 -07001129 asmlinkage_protect(4, ret, dfd, filename, flags, mode);
Linus Torvalds385910f2006-04-18 13:22:59 -07001130 return ret;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001131}
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001132
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133#ifndef __alpha__
1134
1135/*
1136 * For backward compatibility? Maybe this should be moved
1137 * into arch/i386 instead?
1138 */
1139asmlinkage long sys_creat(const char __user * pathname, int mode)
1140{
1141 return sys_open(pathname, O_CREAT | O_WRONLY | O_TRUNC, mode);
1142}
1143
1144#endif
1145
1146/*
1147 * "id" is the POSIX thread ID. We use the
1148 * files pointer for this..
1149 */
1150int filp_close(struct file *filp, fl_owner_t id)
1151{
Christoph Lameter45778ca2005-06-23 00:10:17 -07001152 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153
1154 if (!file_count(filp)) {
1155 printk(KERN_ERR "VFS: Close: file count is 0\n");
Christoph Lameter45778ca2005-06-23 00:10:17 -07001156 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 }
1158
Christoph Lameter45778ca2005-06-23 00:10:17 -07001159 if (filp->f_op && filp->f_op->flush)
Miklos Szeredi75e1fcc2006-06-23 02:05:12 -07001160 retval = filp->f_op->flush(filp, id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161
1162 dnotify_flush(filp, id);
1163 locks_remove_posix(filp, id);
1164 fput(filp);
1165 return retval;
1166}
1167
1168EXPORT_SYMBOL(filp_close);
1169
1170/*
1171 * Careful here! We test whether the file pointer is NULL before
1172 * releasing the fd. This ensures that one clone task can't release
1173 * an fd while another clone is opening it.
1174 */
1175asmlinkage long sys_close(unsigned int fd)
1176{
1177 struct file * filp;
1178 struct files_struct *files = current->files;
Dipankar Sarmabadf1662005-09-09 13:04:10 -07001179 struct fdtable *fdt;
Ernie Petridesee731f42006-09-29 02:00:13 -07001180 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181
1182 spin_lock(&files->file_lock);
Dipankar Sarmabadf1662005-09-09 13:04:10 -07001183 fdt = files_fdtable(files);
1184 if (fd >= fdt->max_fds)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 goto out_unlock;
Dipankar Sarmabadf1662005-09-09 13:04:10 -07001186 filp = fdt->fd[fd];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 if (!filp)
1188 goto out_unlock;
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -07001189 rcu_assign_pointer(fdt->fd[fd], NULL);
Dipankar Sarmabadf1662005-09-09 13:04:10 -07001190 FD_CLR(fd, fdt->close_on_exec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 __put_unused_fd(files, fd);
1192 spin_unlock(&files->file_lock);
Ernie Petridesee731f42006-09-29 02:00:13 -07001193 retval = filp_close(filp, files);
1194
1195 /* can't restart close syscall because file table entry was cleared */
1196 if (unlikely(retval == -ERESTARTSYS ||
1197 retval == -ERESTARTNOINTR ||
1198 retval == -ERESTARTNOHAND ||
1199 retval == -ERESTART_RESTARTBLOCK))
1200 retval = -EINTR;
1201
1202 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203
1204out_unlock:
1205 spin_unlock(&files->file_lock);
1206 return -EBADF;
1207}
1208
1209EXPORT_SYMBOL(sys_close);
1210
1211/*
1212 * This routine simulates a hangup on the tty, to arrange that users
1213 * are given clean terminals at login time.
1214 */
1215asmlinkage long sys_vhangup(void)
1216{
1217 if (capable(CAP_SYS_TTY_CONFIG)) {
Peter Zijlstra24ec8392006-12-08 02:36:04 -08001218 /* XXX: this needs locking */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 tty_vhangup(current->signal->tty);
1220 return 0;
1221 }
1222 return -EPERM;
1223}
1224
1225/*
1226 * Called when an inode is about to be open.
1227 * We use this to disallow opening large files on 32bit systems if
1228 * the caller didn't specify O_LARGEFILE. On 64bit systems we force
1229 * on this flag in sys_open.
1230 */
1231int generic_file_open(struct inode * inode, struct file * filp)
1232{
1233 if (!(filp->f_flags & O_LARGEFILE) && i_size_read(inode) > MAX_NON_LFS)
Alan Coxa9c62a12007-10-16 23:30:22 -07001234 return -EOVERFLOW;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 return 0;
1236}
1237
1238EXPORT_SYMBOL(generic_file_open);
1239
1240/*
1241 * This is used by subsystems that don't want seekable
1242 * file descriptors
1243 */
1244int nonseekable_open(struct inode *inode, struct file *filp)
1245{
1246 filp->f_mode &= ~(FMODE_LSEEK | FMODE_PREAD | FMODE_PWRITE);
1247 return 0;
1248}
1249
1250EXPORT_SYMBOL(nonseekable_open);