blob: e2df8fd1eb0b329e51eb887f968da9404a5652db [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <linux/quotaops.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>
13#include <linux/slab.h>
14#include <linux/tty.h>
15#include <linux/namei.h>
16#include <linux/backing-dev.h>
Randy Dunlap16f7e0f2006-01-11 12:17:46 -080017#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/security.h>
19#include <linux/mount.h>
20#include <linux/vfs.h>
Ulrich Drepper5590ff02006-01-18 17:43:53 -080021#include <linux/fcntl.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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
David Howells726c3342006-06-23 02:02:58 -070031int vfs_statfs(struct dentry *dentry, struct kstatfs *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070032{
33 int retval = -ENODEV;
34
David Howells726c3342006-06-23 02:02:58 -070035 if (dentry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 retval = -ENOSYS;
David Howells726c3342006-06-23 02:02:58 -070037 if (dentry->d_sb->s_op->statfs) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 memset(buf, 0, sizeof(*buf));
David Howells726c3342006-06-23 02:02:58 -070039 retval = security_sb_statfs(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -070040 if (retval)
41 return retval;
David Howells726c3342006-06-23 02:02:58 -070042 retval = dentry->d_sb->s_op->statfs(dentry, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 if (retval == 0 && buf->f_frsize == 0)
44 buf->f_frsize = buf->f_bsize;
45 }
46 }
47 return retval;
48}
49
50EXPORT_SYMBOL(vfs_statfs);
51
David Howells726c3342006-06-23 02:02:58 -070052static int vfs_statfs_native(struct dentry *dentry, struct statfs *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070053{
54 struct kstatfs st;
55 int retval;
56
David Howells726c3342006-06-23 02:02:58 -070057 retval = vfs_statfs(dentry, &st);
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 if (retval)
59 return retval;
60
61 if (sizeof(*buf) == sizeof(st))
62 memcpy(buf, &st, sizeof(st));
63 else {
64 if (sizeof buf->f_blocks == 4) {
65 if ((st.f_blocks | st.f_bfree | st.f_bavail) &
66 0xffffffff00000000ULL)
67 return -EOVERFLOW;
68 /*
69 * f_files and f_ffree may be -1; it's okay to stuff
70 * that into 32 bits
71 */
72 if (st.f_files != -1 &&
73 (st.f_files & 0xffffffff00000000ULL))
74 return -EOVERFLOW;
75 if (st.f_ffree != -1 &&
76 (st.f_ffree & 0xffffffff00000000ULL))
77 return -EOVERFLOW;
78 }
79
80 buf->f_type = st.f_type;
81 buf->f_bsize = st.f_bsize;
82 buf->f_blocks = st.f_blocks;
83 buf->f_bfree = st.f_bfree;
84 buf->f_bavail = st.f_bavail;
85 buf->f_files = st.f_files;
86 buf->f_ffree = st.f_ffree;
87 buf->f_fsid = st.f_fsid;
88 buf->f_namelen = st.f_namelen;
89 buf->f_frsize = st.f_frsize;
90 memset(buf->f_spare, 0, sizeof(buf->f_spare));
91 }
92 return 0;
93}
94
David Howells726c3342006-06-23 02:02:58 -070095static int vfs_statfs64(struct dentry *dentry, struct statfs64 *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070096{
97 struct kstatfs st;
98 int retval;
99
David Howells726c3342006-06-23 02:02:58 -0700100 retval = vfs_statfs(dentry, &st);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 if (retval)
102 return retval;
103
104 if (sizeof(*buf) == sizeof(st))
105 memcpy(buf, &st, sizeof(st));
106 else {
107 buf->f_type = st.f_type;
108 buf->f_bsize = st.f_bsize;
109 buf->f_blocks = st.f_blocks;
110 buf->f_bfree = st.f_bfree;
111 buf->f_bavail = st.f_bavail;
112 buf->f_files = st.f_files;
113 buf->f_ffree = st.f_ffree;
114 buf->f_fsid = st.f_fsid;
115 buf->f_namelen = st.f_namelen;
116 buf->f_frsize = st.f_frsize;
117 memset(buf->f_spare, 0, sizeof(buf->f_spare));
118 }
119 return 0;
120}
121
122asmlinkage long sys_statfs(const char __user * path, struct statfs __user * buf)
123{
124 struct nameidata nd;
125 int error;
126
127 error = user_path_walk(path, &nd);
128 if (!error) {
129 struct statfs tmp;
Jan Blunck4ac91372008-02-14 19:34:32 -0800130 error = vfs_statfs_native(nd.path.dentry, &tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 if (!error && copy_to_user(buf, &tmp, sizeof(tmp)))
132 error = -EFAULT;
Jan Blunck1d957f92008-02-14 19:34:35 -0800133 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 }
135 return error;
136}
137
138
139asmlinkage long sys_statfs64(const char __user *path, size_t sz, struct statfs64 __user *buf)
140{
141 struct nameidata nd;
142 long error;
143
144 if (sz != sizeof(*buf))
145 return -EINVAL;
146 error = user_path_walk(path, &nd);
147 if (!error) {
148 struct statfs64 tmp;
Jan Blunck4ac91372008-02-14 19:34:32 -0800149 error = vfs_statfs64(nd.path.dentry, &tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 if (!error && copy_to_user(buf, &tmp, sizeof(tmp)))
151 error = -EFAULT;
Jan Blunck1d957f92008-02-14 19:34:35 -0800152 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 }
154 return error;
155}
156
157
158asmlinkage long sys_fstatfs(unsigned int fd, struct statfs __user * buf)
159{
160 struct file * file;
161 struct statfs tmp;
162 int error;
163
164 error = -EBADF;
165 file = fget(fd);
166 if (!file)
167 goto out;
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800168 error = vfs_statfs_native(file->f_path.dentry, &tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 if (!error && copy_to_user(buf, &tmp, sizeof(tmp)))
170 error = -EFAULT;
171 fput(file);
172out:
173 return error;
174}
175
176asmlinkage long sys_fstatfs64(unsigned int fd, size_t sz, struct statfs64 __user *buf)
177{
178 struct file * file;
179 struct statfs64 tmp;
180 int error;
181
182 if (sz != sizeof(*buf))
183 return -EINVAL;
184
185 error = -EBADF;
186 file = fget(fd);
187 if (!file)
188 goto out;
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800189 error = vfs_statfs64(file->f_path.dentry, &tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 if (!error && copy_to_user(buf, &tmp, sizeof(tmp)))
191 error = -EFAULT;
192 fput(file);
193out:
194 return error;
195}
196
NeilBrown4a301312006-01-08 01:02:39 -0800197int do_truncate(struct dentry *dentry, loff_t length, unsigned int time_attrs,
198 struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199{
200 int err;
201 struct iattr newattrs;
202
203 /* Not pretty: "inode->i_size" shouldn't really be signed. But it is. */
204 if (length < 0)
205 return -EINVAL;
206
207 newattrs.ia_size = length;
NeilBrown4a301312006-01-08 01:02:39 -0800208 newattrs.ia_valid = ATTR_SIZE | time_attrs;
Miklos Szeredicc4e69d2005-11-07 00:59:49 -0800209 if (filp) {
210 newattrs.ia_file = filp;
211 newattrs.ia_valid |= ATTR_FILE;
212 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
Linus Torvalds7b82dc02007-05-08 20:10:00 -0700214 /* Remove suid/sgid on truncate too */
215 newattrs.ia_valid |= should_remove_suid(dentry);
216
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800217 mutex_lock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 err = notify_change(dentry, &newattrs);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800219 mutex_unlock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 return err;
221}
222
Matt Mackallb01ec0e2006-01-08 01:05:20 -0800223static long do_sys_truncate(const char __user * path, loff_t length)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224{
225 struct nameidata nd;
226 struct inode * inode;
227 int error;
228
229 error = -EINVAL;
230 if (length < 0) /* sorry, but loff_t says... */
231 goto out;
232
233 error = user_path_walk(path, &nd);
234 if (error)
235 goto out;
Jan Blunck4ac91372008-02-14 19:34:32 -0800236 inode = nd.path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
238 /* For directories it's -EISDIR, for other non-regulars - -EINVAL */
239 error = -EISDIR;
240 if (S_ISDIR(inode->i_mode))
241 goto dput_and_out;
242
243 error = -EINVAL;
244 if (!S_ISREG(inode->i_mode))
245 goto dput_and_out;
246
Christoph Hellwige4543ed2005-11-08 21:35:04 -0800247 error = vfs_permission(&nd, MAY_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 if (error)
249 goto dput_and_out;
250
251 error = -EROFS;
252 if (IS_RDONLY(inode))
253 goto dput_and_out;
254
255 error = -EPERM;
256 if (IS_IMMUTABLE(inode) || IS_APPEND(inode))
257 goto dput_and_out;
258
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 error = get_write_access(inode);
260 if (error)
261 goto dput_and_out;
262
david m. richter97003822007-07-31 00:39:12 -0700263 /*
264 * Make sure that there are no leases. get_write_access() protects
265 * against the truncate racing with a lease-granting setlease().
266 */
267 error = break_lease(inode, FMODE_WRITE);
268 if (error)
269 goto put_write_and_out;
270
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 error = locks_verify_truncate(inode, NULL, length);
272 if (!error) {
273 DQUOT_INIT(inode);
Jan Blunck4ac91372008-02-14 19:34:32 -0800274 error = do_truncate(nd.path.dentry, length, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
david m. richter97003822007-07-31 00:39:12 -0700277put_write_and_out:
278 put_write_access(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279dput_and_out:
Jan Blunck1d957f92008-02-14 19:34:35 -0800280 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281out:
282 return error;
283}
284
285asmlinkage long sys_truncate(const char __user * path, unsigned long length)
286{
287 /* on 32-bit boxen it will cut the range 2^31--2^32-1 off */
288 return do_sys_truncate(path, (long)length);
289}
290
Matt Mackallb01ec0e2006-01-08 01:05:20 -0800291static long do_sys_ftruncate(unsigned int fd, loff_t length, int small)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292{
293 struct inode * inode;
294 struct dentry *dentry;
295 struct file * file;
296 int error;
297
298 error = -EINVAL;
299 if (length < 0)
300 goto out;
301 error = -EBADF;
302 file = fget(fd);
303 if (!file)
304 goto out;
305
306 /* explicitly opened as large or we are on 64-bit box */
307 if (file->f_flags & O_LARGEFILE)
308 small = 0;
309
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800310 dentry = file->f_path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 inode = dentry->d_inode;
312 error = -EINVAL;
313 if (!S_ISREG(inode->i_mode) || !(file->f_mode & FMODE_WRITE))
314 goto out_putf;
315
316 error = -EINVAL;
317 /* Cannot ftruncate over 2^31 bytes without large file support */
318 if (small && length > MAX_NON_LFS)
319 goto out_putf;
320
321 error = -EPERM;
322 if (IS_APPEND(inode))
323 goto out_putf;
324
325 error = locks_verify_truncate(inode, file, length);
326 if (!error)
Peter Staubach6e656be2006-06-25 05:48:36 -0700327 error = do_truncate(dentry, length, ATTR_MTIME|ATTR_CTIME, file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328out_putf:
329 fput(file);
330out:
331 return error;
332}
333
334asmlinkage long sys_ftruncate(unsigned int fd, unsigned long length)
335{
Linus Torvalds0a489cb2006-04-18 13:02:48 -0700336 long ret = do_sys_ftruncate(fd, length, 1);
Linus Torvalds385910f2006-04-18 13:22:59 -0700337 /* avoid REGPARM breakage on x86: */
Roland McGrath54a01512008-04-10 15:37:38 -0700338 asmlinkage_protect(2, ret, fd, length);
Linus Torvalds0a489cb2006-04-18 13:02:48 -0700339 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340}
341
342/* LFS versions of truncate are only needed on 32 bit machines */
343#if BITS_PER_LONG == 32
344asmlinkage long sys_truncate64(const char __user * path, loff_t length)
345{
346 return do_sys_truncate(path, length);
347}
348
349asmlinkage long sys_ftruncate64(unsigned int fd, loff_t length)
350{
Linus Torvalds0a489cb2006-04-18 13:02:48 -0700351 long ret = do_sys_ftruncate(fd, length, 0);
Linus Torvalds385910f2006-04-18 13:22:59 -0700352 /* avoid REGPARM breakage on x86: */
Roland McGrath54a01512008-04-10 15:37:38 -0700353 asmlinkage_protect(2, ret, fd, length);
Linus Torvalds0a489cb2006-04-18 13:02:48 -0700354 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355}
356#endif
357
Amit Arora97ac7352007-07-17 21:42:44 -0400358asmlinkage long sys_fallocate(int fd, int mode, loff_t offset, loff_t len)
359{
360 struct file *file;
361 struct inode *inode;
362 long ret = -EINVAL;
363
364 if (offset < 0 || len <= 0)
365 goto out;
366
367 /* Return error if mode is not supported */
368 ret = -EOPNOTSUPP;
369 if (mode && !(mode & FALLOC_FL_KEEP_SIZE))
370 goto out;
371
372 ret = -EBADF;
373 file = fget(fd);
374 if (!file)
375 goto out;
376 if (!(file->f_mode & FMODE_WRITE))
377 goto out_fput;
378 /*
379 * Revalidate the write permissions, in case security policy has
380 * changed since the files were opened.
381 */
382 ret = security_file_permission(file, MAY_WRITE);
383 if (ret)
384 goto out_fput;
385
386 inode = file->f_path.dentry->d_inode;
387
388 ret = -ESPIPE;
389 if (S_ISFIFO(inode->i_mode))
390 goto out_fput;
391
392 ret = -ENODEV;
393 /*
394 * Let individual file system decide if it supports preallocation
395 * for directories or not.
396 */
397 if (!S_ISREG(inode->i_mode) && !S_ISDIR(inode->i_mode))
398 goto out_fput;
399
400 ret = -EFBIG;
401 /* Check for wrap through zero too */
402 if (((offset + len) > inode->i_sb->s_maxbytes) || ((offset + len) < 0))
403 goto out_fput;
404
405 if (inode->i_op && inode->i_op->fallocate)
406 ret = inode->i_op->fallocate(inode, mode, offset, len);
407 else
Ulrich Drepper0d786d42007-07-23 18:43:46 -0700408 ret = -EOPNOTSUPP;
Amit Arora97ac7352007-07-17 21:42:44 -0400409
410out_fput:
411 fput(file);
412out:
413 return ret;
414}
415
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416/*
417 * access() needs to use the real uid/gid, not the effective uid/gid.
418 * We do this by temporarily clearing all FS-related capabilities and
419 * switching the fsuid/fsgid around to the real ones.
420 */
Ulrich Drepper5590ff02006-01-18 17:43:53 -0800421asmlinkage long sys_faccessat(int dfd, const char __user *filename, int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422{
423 struct nameidata nd;
424 int old_fsuid, old_fsgid;
425 kernel_cap_t old_cap;
426 int res;
427
428 if (mode & ~S_IRWXO) /* where's F_OK, X_OK, W_OK, R_OK? */
429 return -EINVAL;
430
431 old_fsuid = current->fsuid;
432 old_fsgid = current->fsgid;
433 old_cap = current->cap_effective;
434
435 current->fsuid = current->uid;
436 current->fsgid = current->gid;
437
438 /*
439 * Clear the capabilities if we switch to a non-root user
440 *
441 * FIXME: There is a race here against sys_capset. The
442 * capabilities can change yet we will restore the old
443 * value below. We should hold task_capabilities_lock,
444 * but we cannot because user_path_walk can sleep.
445 */
446 if (current->uid)
447 cap_clear(current->cap_effective);
448 else
449 current->cap_effective = current->cap_permitted;
450
Ulrich Drepper5590ff02006-01-18 17:43:53 -0800451 res = __user_walk_fd(dfd, filename, LOOKUP_FOLLOW|LOOKUP_ACCESS, &nd);
Dave Hansen6902d922006-09-30 23:29:01 -0700452 if (res)
453 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454
Dave Hansen6902d922006-09-30 23:29:01 -0700455 res = vfs_permission(&nd, mode);
456 /* SuS v2 requires we report a read only fs too */
457 if(res || !(mode & S_IWOTH) ||
Jan Blunck4ac91372008-02-14 19:34:32 -0800458 special_file(nd.path.dentry->d_inode->i_mode))
Dave Hansen6902d922006-09-30 23:29:01 -0700459 goto out_path_release;
460
Jan Blunck4ac91372008-02-14 19:34:32 -0800461 if(IS_RDONLY(nd.path.dentry->d_inode))
Dave Hansen6902d922006-09-30 23:29:01 -0700462 res = -EROFS;
463
464out_path_release:
Jan Blunck1d957f92008-02-14 19:34:35 -0800465 path_put(&nd.path);
Dave Hansen6902d922006-09-30 23:29:01 -0700466out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 current->fsuid = old_fsuid;
468 current->fsgid = old_fsgid;
469 current->cap_effective = old_cap;
470
471 return res;
472}
473
Ulrich Drepper5590ff02006-01-18 17:43:53 -0800474asmlinkage long sys_access(const char __user *filename, int mode)
475{
476 return sys_faccessat(AT_FDCWD, filename, mode);
477}
478
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479asmlinkage long sys_chdir(const char __user * filename)
480{
481 struct nameidata nd;
482 int error;
483
Miklos Szeredi650a8982006-09-29 01:59:35 -0700484 error = __user_walk(filename,
485 LOOKUP_FOLLOW|LOOKUP_DIRECTORY|LOOKUP_CHDIR, &nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 if (error)
487 goto out;
488
Christoph Hellwige4543ed2005-11-08 21:35:04 -0800489 error = vfs_permission(&nd, MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 if (error)
491 goto dput_and_out;
492
Jan Blunckac748a02008-02-14 19:34:39 -0800493 set_fs_pwd(current->fs, &nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
495dput_and_out:
Jan Blunck1d957f92008-02-14 19:34:35 -0800496 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497out:
498 return error;
499}
500
501asmlinkage long sys_fchdir(unsigned int fd)
502{
503 struct file *file;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 int error;
506
507 error = -EBADF;
508 file = fget(fd);
509 if (!file)
510 goto out;
511
Jan Blunckac748a02008-02-14 19:34:39 -0800512 inode = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513
514 error = -ENOTDIR;
515 if (!S_ISDIR(inode->i_mode))
516 goto out_putf;
517
Christoph Hellwig8c744fb2005-11-08 21:35:04 -0800518 error = file_permission(file, MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 if (!error)
Jan Blunckac748a02008-02-14 19:34:39 -0800520 set_fs_pwd(current->fs, &file->f_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521out_putf:
522 fput(file);
523out:
524 return error;
525}
526
527asmlinkage long sys_chroot(const char __user * filename)
528{
529 struct nameidata nd;
530 int error;
531
532 error = __user_walk(filename, LOOKUP_FOLLOW | LOOKUP_DIRECTORY | LOOKUP_NOALT, &nd);
533 if (error)
534 goto out;
535
Christoph Hellwige4543ed2005-11-08 21:35:04 -0800536 error = vfs_permission(&nd, MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 if (error)
538 goto dput_and_out;
539
540 error = -EPERM;
541 if (!capable(CAP_SYS_CHROOT))
542 goto dput_and_out;
543
Jan Blunckac748a02008-02-14 19:34:39 -0800544 set_fs_root(current->fs, &nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 set_fs_altroot();
546 error = 0;
547dput_and_out:
Jan Blunck1d957f92008-02-14 19:34:35 -0800548 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549out:
550 return error;
551}
552
553asmlinkage long sys_fchmod(unsigned int fd, mode_t mode)
554{
555 struct inode * inode;
556 struct dentry * dentry;
557 struct file * file;
558 int err = -EBADF;
559 struct iattr newattrs;
560
561 file = fget(fd);
562 if (!file)
563 goto out;
564
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800565 dentry = file->f_path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 inode = dentry->d_inode;
567
Al Viro5a190ae2007-06-07 12:19:32 -0400568 audit_inode(NULL, dentry);
Amy Griffis73241cc2005-11-03 16:00:25 +0000569
Dave Hansen2af482a2008-02-15 14:37:50 -0800570 err = mnt_want_write(file->f_path.mnt);
571 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 goto out_putf;
573 err = -EPERM;
574 if (IS_IMMUTABLE(inode) || IS_APPEND(inode))
Dave Hansen2af482a2008-02-15 14:37:50 -0800575 goto out_drop_write;
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800576 mutex_lock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 if (mode == (mode_t) -1)
578 mode = inode->i_mode;
579 newattrs.ia_mode = (mode & S_IALLUGO) | (inode->i_mode & ~S_IALLUGO);
580 newattrs.ia_valid = ATTR_MODE | ATTR_CTIME;
581 err = notify_change(dentry, &newattrs);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800582 mutex_unlock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
Dave Hansen2af482a2008-02-15 14:37:50 -0800584out_drop_write:
585 mnt_drop_write(file->f_path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586out_putf:
587 fput(file);
588out:
589 return err;
590}
591
Ulrich Drepper5590ff02006-01-18 17:43:53 -0800592asmlinkage long sys_fchmodat(int dfd, const char __user *filename,
593 mode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594{
595 struct nameidata nd;
596 struct inode * inode;
597 int error;
598 struct iattr newattrs;
599
Ulrich Drepper5590ff02006-01-18 17:43:53 -0800600 error = __user_walk_fd(dfd, filename, LOOKUP_FOLLOW, &nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 if (error)
602 goto out;
Jan Blunck4ac91372008-02-14 19:34:32 -0800603 inode = nd.path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604
Dave Hansen2af482a2008-02-15 14:37:50 -0800605 error = mnt_want_write(nd.path.mnt);
606 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 goto dput_and_out;
608
609 error = -EPERM;
610 if (IS_IMMUTABLE(inode) || IS_APPEND(inode))
Dave Hansen2af482a2008-02-15 14:37:50 -0800611 goto out_drop_write;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800613 mutex_lock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 if (mode == (mode_t) -1)
615 mode = inode->i_mode;
616 newattrs.ia_mode = (mode & S_IALLUGO) | (inode->i_mode & ~S_IALLUGO);
617 newattrs.ia_valid = ATTR_MODE | ATTR_CTIME;
Jan Blunck4ac91372008-02-14 19:34:32 -0800618 error = notify_change(nd.path.dentry, &newattrs);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800619 mutex_unlock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620
Dave Hansen2af482a2008-02-15 14:37:50 -0800621out_drop_write:
622 mnt_drop_write(nd.path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623dput_and_out:
Jan Blunck1d957f92008-02-14 19:34:35 -0800624 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625out:
626 return error;
627}
628
Ulrich Drepper5590ff02006-01-18 17:43:53 -0800629asmlinkage long sys_chmod(const char __user *filename, mode_t mode)
630{
631 return sys_fchmodat(AT_FDCWD, filename, mode);
632}
633
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634static int chown_common(struct dentry * dentry, uid_t user, gid_t group)
635{
636 struct inode * inode;
637 int error;
638 struct iattr newattrs;
639
640 error = -ENOENT;
641 if (!(inode = dentry->d_inode)) {
642 printk(KERN_ERR "chown_common: NULL inode\n");
643 goto out;
644 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 error = -EPERM;
646 if (IS_IMMUTABLE(inode) || IS_APPEND(inode))
647 goto out;
648 newattrs.ia_valid = ATTR_CTIME;
649 if (user != (uid_t) -1) {
650 newattrs.ia_valid |= ATTR_UID;
651 newattrs.ia_uid = user;
652 }
653 if (group != (gid_t) -1) {
654 newattrs.ia_valid |= ATTR_GID;
655 newattrs.ia_gid = group;
656 }
657 if (!S_ISDIR(inode->i_mode))
Serge E. Hallynb5376772007-10-16 23:31:36 -0700658 newattrs.ia_valid |=
659 ATTR_KILL_SUID | ATTR_KILL_SGID | ATTR_KILL_PRIV;
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800660 mutex_lock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 error = notify_change(dentry, &newattrs);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800662 mutex_unlock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663out:
664 return error;
665}
666
667asmlinkage long sys_chown(const char __user * filename, uid_t user, gid_t group)
668{
669 struct nameidata nd;
670 int error;
671
672 error = user_path_walk(filename, &nd);
Dave Hansen6902d922006-09-30 23:29:01 -0700673 if (error)
674 goto out;
Dave Hansen2af482a2008-02-15 14:37:50 -0800675 error = mnt_want_write(nd.path.mnt);
676 if (error)
677 goto out_release;
Jan Blunck4ac91372008-02-14 19:34:32 -0800678 error = chown_common(nd.path.dentry, user, group);
Dave Hansen2af482a2008-02-15 14:37:50 -0800679 mnt_drop_write(nd.path.mnt);
680out_release:
Jan Blunck1d957f92008-02-14 19:34:35 -0800681 path_put(&nd.path);
Dave Hansen6902d922006-09-30 23:29:01 -0700682out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 return error;
684}
685
Ulrich Drepper5590ff02006-01-18 17:43:53 -0800686asmlinkage long sys_fchownat(int dfd, const char __user *filename, uid_t user,
687 gid_t group, int flag)
688{
689 struct nameidata nd;
690 int error = -EINVAL;
691 int follow;
692
693 if ((flag & ~AT_SYMLINK_NOFOLLOW) != 0)
694 goto out;
695
696 follow = (flag & AT_SYMLINK_NOFOLLOW) ? 0 : LOOKUP_FOLLOW;
697 error = __user_walk_fd(dfd, filename, follow, &nd);
Dave Hansen6902d922006-09-30 23:29:01 -0700698 if (error)
699 goto out;
Dave Hansen2af482a2008-02-15 14:37:50 -0800700 error = mnt_want_write(nd.path.mnt);
701 if (error)
702 goto out_release;
Jan Blunck4ac91372008-02-14 19:34:32 -0800703 error = chown_common(nd.path.dentry, user, group);
Dave Hansen2af482a2008-02-15 14:37:50 -0800704 mnt_drop_write(nd.path.mnt);
705out_release:
Jan Blunck1d957f92008-02-14 19:34:35 -0800706 path_put(&nd.path);
Ulrich Drepper5590ff02006-01-18 17:43:53 -0800707out:
708 return error;
709}
710
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711asmlinkage long sys_lchown(const char __user * filename, uid_t user, gid_t group)
712{
713 struct nameidata nd;
714 int error;
715
716 error = user_path_walk_link(filename, &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);
Dave Hansen6902d922006-09-30 23:29:01 -0700726out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 return error;
728}
729
730
731asmlinkage long sys_fchown(unsigned int fd, uid_t user, gid_t group)
732{
733 struct file * file;
734 int error = -EBADF;
Dave Hansen6902d922006-09-30 23:29:01 -0700735 struct dentry * dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736
737 file = fget(fd);
Dave Hansen6902d922006-09-30 23:29:01 -0700738 if (!file)
739 goto out;
740
Dave Hansen2af482a2008-02-15 14:37:50 -0800741 error = mnt_want_write(file->f_path.mnt);
742 if (error)
743 goto out_fput;
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800744 dentry = file->f_path.dentry;
Al Viro5a190ae2007-06-07 12:19:32 -0400745 audit_inode(NULL, dentry);
Dave Hansen6902d922006-09-30 23:29:01 -0700746 error = chown_common(dentry, user, group);
Dave Hansen2af482a2008-02-15 14:37:50 -0800747 mnt_drop_write(file->f_path.mnt);
748out_fput:
Dave Hansen6902d922006-09-30 23:29:01 -0700749 fput(file);
750out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 return error;
752}
753
Dave Hansen4a3fd212008-02-15 14:37:48 -0800754/*
755 * You have to be very careful that these write
756 * counts get cleaned up in error cases and
757 * upon __fput(). This should probably never
758 * be called outside of __dentry_open().
759 */
760static inline int __get_file_write_access(struct inode *inode,
761 struct vfsmount *mnt)
762{
763 int error;
764 error = get_write_access(inode);
765 if (error)
766 return error;
767 /*
768 * Do not take mount writer counts on
769 * special files since no writes to
770 * the mount itself will occur.
771 */
772 if (!special_file(inode->i_mode)) {
773 /*
774 * Balanced in __fput()
775 */
776 error = mnt_want_write(mnt);
777 if (error)
778 put_write_access(inode);
779 }
780 return error;
781}
782
Peter Staubacha1a5b3d2005-09-13 01:25:12 -0700783static struct file *__dentry_open(struct dentry *dentry, struct vfsmount *mnt,
Trond Myklebust834f2a42005-10-18 14:20:16 -0700784 int flags, struct file *f,
785 int (*open)(struct inode *, struct file *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 struct inode *inode;
788 int error;
789
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 f->f_flags = flags;
Peter Staubacha1a5b3d2005-09-13 01:25:12 -0700791 f->f_mode = ((flags+1) & O_ACCMODE) | FMODE_LSEEK |
792 FMODE_PREAD | FMODE_PWRITE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 inode = dentry->d_inode;
794 if (f->f_mode & FMODE_WRITE) {
Dave Hansen4a3fd212008-02-15 14:37:48 -0800795 error = __get_file_write_access(inode, mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 if (error)
797 goto cleanup_file;
798 }
799
800 f->f_mapping = inode->i_mapping;
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800801 f->f_path.dentry = dentry;
802 f->f_path.mnt = mnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 f->f_pos = 0;
804 f->f_op = fops_get(inode->i_fop);
805 file_move(f, &inode->i_sb->s_files);
806
Yuichi Nakamura788e7dd2007-09-14 09:27:07 +0900807 error = security_dentry_open(f);
808 if (error)
809 goto cleanup_all;
810
Trond Myklebust834f2a42005-10-18 14:20:16 -0700811 if (!open && f->f_op)
812 open = f->f_op->open;
813 if (open) {
814 error = open(inode, f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 if (error)
816 goto cleanup_all;
817 }
Trond Myklebust834f2a42005-10-18 14:20:16 -0700818
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 f->f_flags &= ~(O_CREAT | O_EXCL | O_NOCTTY | O_TRUNC);
820
821 file_ra_state_init(&f->f_ra, f->f_mapping->host->i_mapping);
822
823 /* NB: we're sure to have correct a_ops only after f_op->open */
824 if (f->f_flags & O_DIRECT) {
Carsten Otteceffc072005-06-23 22:05:25 -0700825 if (!f->f_mapping->a_ops ||
826 ((!f->f_mapping->a_ops->direct_IO) &&
827 (!f->f_mapping->a_ops->get_xip_page))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 fput(f);
829 f = ERR_PTR(-EINVAL);
830 }
831 }
832
833 return f;
834
835cleanup_all:
836 fops_put(f->f_op);
Dave Hansen4a3fd212008-02-15 14:37:48 -0800837 if (f->f_mode & FMODE_WRITE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 put_write_access(inode);
Dave Hansen4a3fd212008-02-15 14:37:48 -0800839 if (!special_file(inode->i_mode))
840 mnt_drop_write(mnt);
841 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 file_kill(f);
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800843 f->f_path.dentry = NULL;
844 f->f_path.mnt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845cleanup_file:
846 put_filp(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 dput(dentry);
848 mntput(mnt);
849 return ERR_PTR(error);
850}
851
Trond Myklebust834f2a42005-10-18 14:20:16 -0700852/**
853 * lookup_instantiate_filp - instantiates the open intent filp
854 * @nd: pointer to nameidata
855 * @dentry: pointer to dentry
856 * @open: open callback
857 *
858 * Helper for filesystems that want to use lookup open intents and pass back
859 * a fully instantiated struct file to the caller.
860 * This function is meant to be called from within a filesystem's
861 * lookup method.
Oleg Drokin9a56c212006-03-25 03:07:02 -0800862 * Beware of calling it for non-regular files! Those ->open methods might block
863 * (e.g. in fifo_open), leaving you with parent locked (and in case of fifo,
864 * leading to a deadlock, as nobody can open that fifo anymore, because
865 * another process to open fifo will block on locked parent when doing lookup).
Trond Myklebust834f2a42005-10-18 14:20:16 -0700866 * Note that in case of error, nd->intent.open.file is destroyed, but the
867 * path information remains valid.
868 * If the open callback is set to NULL, then the standard f_op->open()
869 * filesystem callback is substituted.
870 */
871struct file *lookup_instantiate_filp(struct nameidata *nd, struct dentry *dentry,
872 int (*open)(struct inode *, struct file *))
873{
874 if (IS_ERR(nd->intent.open.file))
875 goto out;
876 if (IS_ERR(dentry))
877 goto out_err;
Jan Blunck4ac91372008-02-14 19:34:32 -0800878 nd->intent.open.file = __dentry_open(dget(dentry), mntget(nd->path.mnt),
Trond Myklebust834f2a42005-10-18 14:20:16 -0700879 nd->intent.open.flags - 1,
880 nd->intent.open.file,
881 open);
882out:
883 return nd->intent.open.file;
884out_err:
885 release_open_intent(nd);
886 nd->intent.open.file = (struct file *)dentry;
887 goto out;
888}
889EXPORT_SYMBOL_GPL(lookup_instantiate_filp);
890
891/**
892 * nameidata_to_filp - convert a nameidata to an open filp.
893 * @nd: pointer to nameidata
894 * @flags: open flags
895 *
896 * Note that this function destroys the original nameidata
897 */
898struct file *nameidata_to_filp(struct nameidata *nd, int flags)
899{
900 struct file *filp;
901
902 /* Pick up the filp from the open intent */
903 filp = nd->intent.open.file;
904 /* Has the filesystem initialised the file for us? */
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800905 if (filp->f_path.dentry == NULL)
Jan Blunck4ac91372008-02-14 19:34:32 -0800906 filp = __dentry_open(nd->path.dentry, nd->path.mnt, flags, filp,
907 NULL);
Trond Myklebust834f2a42005-10-18 14:20:16 -0700908 else
Jan Blunck1d957f92008-02-14 19:34:35 -0800909 path_put(&nd->path);
Trond Myklebust834f2a42005-10-18 14:20:16 -0700910 return filp;
911}
912
Peter Staubach6fdcc212005-11-07 00:59:42 -0800913/*
914 * dentry_open() will have done dput(dentry) and mntput(mnt) if it returns an
915 * error.
916 */
Peter Staubacha1a5b3d2005-09-13 01:25:12 -0700917struct file *dentry_open(struct dentry *dentry, struct vfsmount *mnt, int flags)
918{
919 int error;
920 struct file *f;
921
Christoph Hellwig322ee5b2008-02-15 14:37:24 -0800922 /*
923 * We must always pass in a valid mount pointer. Historically
924 * callers got away with not passing it, but we must enforce this at
925 * the earliest possible point now to avoid strange problems deep in the
926 * filesystem stack.
927 */
928 if (!mnt) {
929 printk(KERN_WARNING "%s called with NULL vfsmount\n", __func__);
930 dump_stack();
931 return ERR_PTR(-EINVAL);
932 }
933
Peter Staubacha1a5b3d2005-09-13 01:25:12 -0700934 error = -ENFILE;
935 f = get_empty_filp();
Peter Staubach6fdcc212005-11-07 00:59:42 -0800936 if (f == NULL) {
937 dput(dentry);
938 mntput(mnt);
Peter Staubacha1a5b3d2005-09-13 01:25:12 -0700939 return ERR_PTR(error);
Peter Staubach6fdcc212005-11-07 00:59:42 -0800940 }
Peter Staubacha1a5b3d2005-09-13 01:25:12 -0700941
Trond Myklebust834f2a42005-10-18 14:20:16 -0700942 return __dentry_open(dentry, mnt, flags, f, NULL);
Peter Staubacha1a5b3d2005-09-13 01:25:12 -0700943}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944EXPORT_SYMBOL(dentry_open);
945
946/*
947 * Find an empty file descriptor entry, and mark it busy.
948 */
Ulrich Drepper4a195422007-07-15 23:40:34 -0700949int get_unused_fd_flags(int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950{
951 struct files_struct * files = current->files;
952 int fd, error;
Dipankar Sarmabadf1662005-09-09 13:04:10 -0700953 struct fdtable *fdt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954
955 error = -EMFILE;
956 spin_lock(&files->file_lock);
957
958repeat:
Dipankar Sarmabadf1662005-09-09 13:04:10 -0700959 fdt = files_fdtable(files);
Vadim Lobanovbbea9f62006-12-10 02:21:12 -0800960 fd = find_next_zero_bit(fdt->open_fds->fds_bits, fdt->max_fds,
Eric Dumazet0c9e63f2006-03-23 03:00:12 -0800961 files->next_fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962
963 /*
964 * N.B. For clone tasks sharing a files structure, this test
965 * will limit the total number of files that can be opened.
966 */
967 if (fd >= current->signal->rlim[RLIMIT_NOFILE].rlim_cur)
968 goto out;
969
970 /* Do we need to expand the fd array or fd set? */
971 error = expand_files(files, fd);
972 if (error < 0)
973 goto out;
974
975 if (error) {
976 /*
977 * If we needed to expand the fs array we
978 * might have blocked - try again.
979 */
980 error = -EMFILE;
981 goto repeat;
982 }
983
Dipankar Sarmabadf1662005-09-09 13:04:10 -0700984 FD_SET(fd, fdt->open_fds);
Ulrich Drepperf23513e2007-07-15 23:40:32 -0700985 if (flags & O_CLOEXEC)
986 FD_SET(fd, fdt->close_on_exec);
987 else
988 FD_CLR(fd, fdt->close_on_exec);
Eric Dumazet0c9e63f2006-03-23 03:00:12 -0800989 files->next_fd = fd + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990#if 1
991 /* Sanity check */
Dipankar Sarmabadf1662005-09-09 13:04:10 -0700992 if (fdt->fd[fd] != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 printk(KERN_WARNING "get_unused_fd: slot %d not NULL!\n", fd);
Dipankar Sarmabadf1662005-09-09 13:04:10 -0700994 fdt->fd[fd] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 }
996#endif
997 error = fd;
998
999out:
1000 spin_unlock(&files->file_lock);
1001 return error;
1002}
1003
Ulrich Drepperf23513e2007-07-15 23:40:32 -07001004int get_unused_fd(void)
1005{
1006 return get_unused_fd_flags(0);
1007}
1008
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009EXPORT_SYMBOL(get_unused_fd);
1010
Matt Mackallb01ec0e2006-01-08 01:05:20 -08001011static void __put_unused_fd(struct files_struct *files, unsigned int fd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012{
Dipankar Sarmabadf1662005-09-09 13:04:10 -07001013 struct fdtable *fdt = files_fdtable(files);
1014 __FD_CLR(fd, fdt->open_fds);
Eric Dumazet0c9e63f2006-03-23 03:00:12 -08001015 if (fd < files->next_fd)
1016 files->next_fd = fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017}
1018
Harvey Harrisonfc9b52c2008-02-08 04:19:52 -08001019void put_unused_fd(unsigned int fd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020{
1021 struct files_struct *files = current->files;
1022 spin_lock(&files->file_lock);
1023 __put_unused_fd(files, fd);
1024 spin_unlock(&files->file_lock);
1025}
1026
1027EXPORT_SYMBOL(put_unused_fd);
1028
1029/*
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001030 * Install a file pointer in the fd array.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 *
1032 * The VFS is full of places where we drop the files lock between
1033 * setting the open_fds bitmap and installing the file in the file
1034 * array. At any such point, we are vulnerable to a dup2() race
1035 * installing a file in the array before us. We need to detect this and
1036 * fput() the struct file we are about to overwrite in this case.
1037 *
1038 * It should never happen - if we allow dup2() do it, _really_ bad things
1039 * will follow.
1040 */
1041
Harvey Harrisonfc9b52c2008-02-08 04:19:52 -08001042void fd_install(unsigned int fd, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043{
1044 struct files_struct *files = current->files;
Dipankar Sarmabadf1662005-09-09 13:04:10 -07001045 struct fdtable *fdt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 spin_lock(&files->file_lock);
Dipankar Sarmabadf1662005-09-09 13:04:10 -07001047 fdt = files_fdtable(files);
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -07001048 BUG_ON(fdt->fd[fd] != NULL);
1049 rcu_assign_pointer(fdt->fd[fd], file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 spin_unlock(&files->file_lock);
1051}
1052
1053EXPORT_SYMBOL(fd_install);
1054
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001055long do_sys_open(int dfd, const char __user *filename, int flags, int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056{
Miklos Szeredie922efc2005-09-06 15:18:25 -07001057 char *tmp = getname(filename);
1058 int fd = PTR_ERR(tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 if (!IS_ERR(tmp)) {
Ulrich Drepperf23513e2007-07-15 23:40:32 -07001061 fd = get_unused_fd_flags(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 if (fd >= 0) {
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001063 struct file *f = do_filp_open(dfd, tmp, flags, mode);
Telemaque Ndizihiwefed2fc12005-06-23 00:10:33 -07001064 if (IS_ERR(f)) {
1065 put_unused_fd(fd);
1066 fd = PTR_ERR(f);
1067 } else {
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -08001068 fsnotify_open(f->f_path.dentry);
Telemaque Ndizihiwefed2fc12005-06-23 00:10:33 -07001069 fd_install(fd, f);
1070 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 putname(tmp);
1073 }
1074 return fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075}
Miklos Szeredie922efc2005-09-06 15:18:25 -07001076
1077asmlinkage long sys_open(const char __user *filename, int flags, int mode)
1078{
Linus Torvalds385910f2006-04-18 13:22:59 -07001079 long ret;
1080
Miklos Szeredie922efc2005-09-06 15:18:25 -07001081 if (force_o_largefile())
1082 flags |= O_LARGEFILE;
1083
Linus Torvalds385910f2006-04-18 13:22:59 -07001084 ret = do_sys_open(AT_FDCWD, filename, flags, mode);
1085 /* avoid REGPARM breakage on x86: */
Roland McGrath54a01512008-04-10 15:37:38 -07001086 asmlinkage_protect(3, ret, filename, flags, mode);
Linus Torvalds385910f2006-04-18 13:22:59 -07001087 return ret;
Miklos Szeredie922efc2005-09-06 15:18:25 -07001088}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001090asmlinkage long sys_openat(int dfd, const char __user *filename, int flags,
1091 int mode)
1092{
Linus Torvalds385910f2006-04-18 13:22:59 -07001093 long ret;
1094
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001095 if (force_o_largefile())
1096 flags |= O_LARGEFILE;
1097
Linus Torvalds385910f2006-04-18 13:22:59 -07001098 ret = do_sys_open(dfd, filename, flags, mode);
1099 /* avoid REGPARM breakage on x86: */
Roland McGrath54a01512008-04-10 15:37:38 -07001100 asmlinkage_protect(4, ret, dfd, filename, flags, mode);
Linus Torvalds385910f2006-04-18 13:22:59 -07001101 return ret;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001102}
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001103
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104#ifndef __alpha__
1105
1106/*
1107 * For backward compatibility? Maybe this should be moved
1108 * into arch/i386 instead?
1109 */
1110asmlinkage long sys_creat(const char __user * pathname, int mode)
1111{
1112 return sys_open(pathname, O_CREAT | O_WRONLY | O_TRUNC, mode);
1113}
1114
1115#endif
1116
1117/*
1118 * "id" is the POSIX thread ID. We use the
1119 * files pointer for this..
1120 */
1121int filp_close(struct file *filp, fl_owner_t id)
1122{
Christoph Lameter45778ca2005-06-23 00:10:17 -07001123 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124
1125 if (!file_count(filp)) {
1126 printk(KERN_ERR "VFS: Close: file count is 0\n");
Christoph Lameter45778ca2005-06-23 00:10:17 -07001127 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 }
1129
Christoph Lameter45778ca2005-06-23 00:10:17 -07001130 if (filp->f_op && filp->f_op->flush)
Miklos Szeredi75e1fcc2006-06-23 02:05:12 -07001131 retval = filp->f_op->flush(filp, id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132
1133 dnotify_flush(filp, id);
1134 locks_remove_posix(filp, id);
1135 fput(filp);
1136 return retval;
1137}
1138
1139EXPORT_SYMBOL(filp_close);
1140
1141/*
1142 * Careful here! We test whether the file pointer is NULL before
1143 * releasing the fd. This ensures that one clone task can't release
1144 * an fd while another clone is opening it.
1145 */
1146asmlinkage long sys_close(unsigned int fd)
1147{
1148 struct file * filp;
1149 struct files_struct *files = current->files;
Dipankar Sarmabadf1662005-09-09 13:04:10 -07001150 struct fdtable *fdt;
Ernie Petridesee731f42006-09-29 02:00:13 -07001151 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152
1153 spin_lock(&files->file_lock);
Dipankar Sarmabadf1662005-09-09 13:04:10 -07001154 fdt = files_fdtable(files);
1155 if (fd >= fdt->max_fds)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 goto out_unlock;
Dipankar Sarmabadf1662005-09-09 13:04:10 -07001157 filp = fdt->fd[fd];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 if (!filp)
1159 goto out_unlock;
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -07001160 rcu_assign_pointer(fdt->fd[fd], NULL);
Dipankar Sarmabadf1662005-09-09 13:04:10 -07001161 FD_CLR(fd, fdt->close_on_exec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 __put_unused_fd(files, fd);
1163 spin_unlock(&files->file_lock);
Ernie Petridesee731f42006-09-29 02:00:13 -07001164 retval = filp_close(filp, files);
1165
1166 /* can't restart close syscall because file table entry was cleared */
1167 if (unlikely(retval == -ERESTARTSYS ||
1168 retval == -ERESTARTNOINTR ||
1169 retval == -ERESTARTNOHAND ||
1170 retval == -ERESTART_RESTARTBLOCK))
1171 retval = -EINTR;
1172
1173 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174
1175out_unlock:
1176 spin_unlock(&files->file_lock);
1177 return -EBADF;
1178}
1179
1180EXPORT_SYMBOL(sys_close);
1181
1182/*
1183 * This routine simulates a hangup on the tty, to arrange that users
1184 * are given clean terminals at login time.
1185 */
1186asmlinkage long sys_vhangup(void)
1187{
1188 if (capable(CAP_SYS_TTY_CONFIG)) {
Peter Zijlstra24ec8392006-12-08 02:36:04 -08001189 /* XXX: this needs locking */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 tty_vhangup(current->signal->tty);
1191 return 0;
1192 }
1193 return -EPERM;
1194}
1195
1196/*
1197 * Called when an inode is about to be open.
1198 * We use this to disallow opening large files on 32bit systems if
1199 * the caller didn't specify O_LARGEFILE. On 64bit systems we force
1200 * on this flag in sys_open.
1201 */
1202int generic_file_open(struct inode * inode, struct file * filp)
1203{
1204 if (!(filp->f_flags & O_LARGEFILE) && i_size_read(inode) > MAX_NON_LFS)
Alan Coxa9c62a12007-10-16 23:30:22 -07001205 return -EOVERFLOW;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 return 0;
1207}
1208
1209EXPORT_SYMBOL(generic_file_open);
1210
1211/*
1212 * This is used by subsystems that don't want seekable
1213 * file descriptors
1214 */
1215int nonseekable_open(struct inode *inode, struct file *filp)
1216{
1217 filp->f_mode &= ~(FMODE_LSEEK | FMODE_PREAD | FMODE_PWRITE);
1218 return 0;
1219}
1220
1221EXPORT_SYMBOL(nonseekable_open);