]> bbs.cooldavid.org Git - net-next-2.6.git/blame - fs/open.c
[PATCH] r/o bind mounts: elevate write count for open()s
[net-next-2.6.git] / fs / open.c
CommitLineData
1da177e4
LT
1/*
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>
1da177e4 9#include <linux/file.h>
1da177e4 10#include <linux/quotaops.h>
0eeca283 11#include <linux/fsnotify.h>
1da177e4
LT
12#include <linux/module.h>
13#include <linux/slab.h>
14#include <linux/tty.h>
15#include <linux/namei.h>
16#include <linux/backing-dev.h>
16f7e0fe 17#include <linux/capability.h>
1da177e4
LT
18#include <linux/security.h>
19#include <linux/mount.h>
20#include <linux/vfs.h>
5590ff0d 21#include <linux/fcntl.h>
1da177e4
LT
22#include <asm/uaccess.h>
23#include <linux/fs.h>
ef3daeda 24#include <linux/personality.h>
1da177e4
LT
25#include <linux/pagemap.h>
26#include <linux/syscalls.h>
ab2af1f5 27#include <linux/rcupdate.h>
73241ccc 28#include <linux/audit.h>
97ac7350 29#include <linux/falloc.h>
1da177e4 30
726c3342 31int vfs_statfs(struct dentry *dentry, struct kstatfs *buf)
1da177e4
LT
32{
33 int retval = -ENODEV;
34
726c3342 35 if (dentry) {
1da177e4 36 retval = -ENOSYS;
726c3342 37 if (dentry->d_sb->s_op->statfs) {
1da177e4 38 memset(buf, 0, sizeof(*buf));
726c3342 39 retval = security_sb_statfs(dentry);
1da177e4
LT
40 if (retval)
41 return retval;
726c3342 42 retval = dentry->d_sb->s_op->statfs(dentry, buf);
1da177e4
LT
43 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
726c3342 52static int vfs_statfs_native(struct dentry *dentry, struct statfs *buf)
1da177e4
LT
53{
54 struct kstatfs st;
55 int retval;
56
726c3342 57 retval = vfs_statfs(dentry, &st);
1da177e4
LT
58 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
726c3342 95static int vfs_statfs64(struct dentry *dentry, struct statfs64 *buf)
1da177e4
LT
96{
97 struct kstatfs st;
98 int retval;
99
726c3342 100 retval = vfs_statfs(dentry, &st);
1da177e4
LT
101 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;
4ac91378 130 error = vfs_statfs_native(nd.path.dentry, &tmp);
1da177e4
LT
131 if (!error && copy_to_user(buf, &tmp, sizeof(tmp)))
132 error = -EFAULT;
1d957f9b 133 path_put(&nd.path);
1da177e4
LT
134 }
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;
4ac91378 149 error = vfs_statfs64(nd.path.dentry, &tmp);
1da177e4
LT
150 if (!error && copy_to_user(buf, &tmp, sizeof(tmp)))
151 error = -EFAULT;
1d957f9b 152 path_put(&nd.path);
1da177e4
LT
153 }
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;
0f7fc9e4 168 error = vfs_statfs_native(file->f_path.dentry, &tmp);
1da177e4
LT
169 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;
0f7fc9e4 189 error = vfs_statfs64(file->f_path.dentry, &tmp);
1da177e4
LT
190 if (!error && copy_to_user(buf, &tmp, sizeof(tmp)))
191 error = -EFAULT;
192 fput(file);
193out:
194 return error;
195}
196
4a30131e
N
197int do_truncate(struct dentry *dentry, loff_t length, unsigned int time_attrs,
198 struct file *filp)
1da177e4
LT
199{
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;
4a30131e 208 newattrs.ia_valid = ATTR_SIZE | time_attrs;
cc4e69de
MS
209 if (filp) {
210 newattrs.ia_file = filp;
211 newattrs.ia_valid |= ATTR_FILE;
212 }
1da177e4 213
7b82dc0e
LT
214 /* Remove suid/sgid on truncate too */
215 newattrs.ia_valid |= should_remove_suid(dentry);
216
1b1dcc1b 217 mutex_lock(&dentry->d_inode->i_mutex);
1da177e4 218 err = notify_change(dentry, &newattrs);
1b1dcc1b 219 mutex_unlock(&dentry->d_inode->i_mutex);
1da177e4
LT
220 return err;
221}
222
b01ec0ef 223static long do_sys_truncate(const char __user * path, loff_t length)
1da177e4
LT
224{
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;
4ac91378 236 inode = nd.path.dentry->d_inode;
1da177e4
LT
237
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
e4543edd 247 error = vfs_permission(&nd, MAY_WRITE);
1da177e4
LT
248 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
9700382c 259 error = get_write_access(inode);
1da177e4
LT
260 if (error)
261 goto dput_and_out;
262
9700382c 263 /*
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);
1da177e4 268 if (error)
9700382c 269 goto put_write_and_out;
1da177e4
LT
270
271 error = locks_verify_truncate(inode, NULL, length);
272 if (!error) {
273 DQUOT_INIT(inode);
4ac91378 274 error = do_truncate(nd.path.dentry, length, 0, NULL);
1da177e4 275 }
1da177e4 276
9700382c 277put_write_and_out:
278 put_write_access(inode);
1da177e4 279dput_and_out:
1d957f9b 280 path_put(&nd.path);
1da177e4
LT
281out:
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
b01ec0ef 291static long do_sys_ftruncate(unsigned int fd, loff_t length, int small)
1da177e4
LT
292{
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
0f7fc9e4 310 dentry = file->f_path.dentry;
1da177e4
LT
311 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)
6e656be8 327 error = do_truncate(dentry, length, ATTR_MTIME|ATTR_CTIME, file);
1da177e4
LT
328out_putf:
329 fput(file);
330out:
331 return error;
332}
333
334asmlinkage long sys_ftruncate(unsigned int fd, unsigned long length)
335{
0a489cb3 336 long ret = do_sys_ftruncate(fd, length, 1);
385910f2 337 /* avoid REGPARM breakage on x86: */
54a01510 338 asmlinkage_protect(2, ret, fd, length);
0a489cb3 339 return ret;
1da177e4
LT
340}
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{
0a489cb3 351 long ret = do_sys_ftruncate(fd, length, 0);
385910f2 352 /* avoid REGPARM breakage on x86: */
54a01510 353 asmlinkage_protect(2, ret, fd, length);
0a489cb3 354 return ret;
1da177e4
LT
355}
356#endif
357
97ac7350
AA
358asmlinkage 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
0d786d4a 408 ret = -EOPNOTSUPP;
97ac7350
AA
409
410out_fput:
411 fput(file);
412out:
413 return ret;
414}
415
1da177e4
LT
416/*
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 */
5590ff0d 421asmlinkage long sys_faccessat(int dfd, const char __user *filename, int mode)
1da177e4
LT
422{
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
5590ff0d 451 res = __user_walk_fd(dfd, filename, LOOKUP_FOLLOW|LOOKUP_ACCESS, &nd);
6902d925
DH
452 if (res)
453 goto out;
454
455 res = vfs_permission(&nd, mode);
456 /* SuS v2 requires we report a read only fs too */
457 if(res || !(mode & S_IWOTH) ||
4ac91378 458 special_file(nd.path.dentry->d_inode->i_mode))
6902d925
DH
459 goto out_path_release;
460
4ac91378 461 if(IS_RDONLY(nd.path.dentry->d_inode))
6902d925 462 res = -EROFS;
1da177e4 463
6902d925 464out_path_release:
1d957f9b 465 path_put(&nd.path);
6902d925 466out:
1da177e4
LT
467 current->fsuid = old_fsuid;
468 current->fsgid = old_fsgid;
469 current->cap_effective = old_cap;
470
471 return res;
472}
473
5590ff0d
UD
474asmlinkage long sys_access(const char __user *filename, int mode)
475{
476 return sys_faccessat(AT_FDCWD, filename, mode);
477}
478
1da177e4
LT
479asmlinkage long sys_chdir(const char __user * filename)
480{
481 struct nameidata nd;
482 int error;
483
650a8983
MS
484 error = __user_walk(filename,
485 LOOKUP_FOLLOW|LOOKUP_DIRECTORY|LOOKUP_CHDIR, &nd);
1da177e4
LT
486 if (error)
487 goto out;
488
e4543edd 489 error = vfs_permission(&nd, MAY_EXEC);
1da177e4
LT
490 if (error)
491 goto dput_and_out;
492
ac748a09 493 set_fs_pwd(current->fs, &nd.path);
1da177e4
LT
494
495dput_and_out:
1d957f9b 496 path_put(&nd.path);
1da177e4
LT
497out:
498 return error;
499}
500
501asmlinkage long sys_fchdir(unsigned int fd)
502{
503 struct file *file;
1da177e4 504 struct inode *inode;
1da177e4
LT
505 int error;
506
507 error = -EBADF;
508 file = fget(fd);
509 if (!file)
510 goto out;
511
ac748a09 512 inode = file->f_path.dentry->d_inode;
1da177e4
LT
513
514 error = -ENOTDIR;
515 if (!S_ISDIR(inode->i_mode))
516 goto out_putf;
517
8c744fb8 518 error = file_permission(file, MAY_EXEC);
1da177e4 519 if (!error)
ac748a09 520 set_fs_pwd(current->fs, &file->f_path);
1da177e4
LT
521out_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
e4543edd 536 error = vfs_permission(&nd, MAY_EXEC);
1da177e4
LT
537 if (error)
538 goto dput_and_out;
539
540 error = -EPERM;
541 if (!capable(CAP_SYS_CHROOT))
542 goto dput_and_out;
543
ac748a09 544 set_fs_root(current->fs, &nd.path);
1da177e4
LT
545 set_fs_altroot();
546 error = 0;
547dput_and_out:
1d957f9b 548 path_put(&nd.path);
1da177e4
LT
549out:
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
0f7fc9e4 565 dentry = file->f_path.dentry;
1da177e4
LT
566 inode = dentry->d_inode;
567
5a190ae6 568 audit_inode(NULL, dentry);
73241ccc 569
1da177e4
LT
570 err = -EROFS;
571 if (IS_RDONLY(inode))
572 goto out_putf;
573 err = -EPERM;
574 if (IS_IMMUTABLE(inode) || IS_APPEND(inode))
575 goto out_putf;
1b1dcc1b 576 mutex_lock(&inode->i_mutex);
1da177e4
LT
577 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);
1b1dcc1b 582 mutex_unlock(&inode->i_mutex);
1da177e4
LT
583
584out_putf:
585 fput(file);
586out:
587 return err;
588}
589
5590ff0d
UD
590asmlinkage long sys_fchmodat(int dfd, const char __user *filename,
591 mode_t mode)
1da177e4
LT
592{
593 struct nameidata nd;
594 struct inode * inode;
595 int error;
596 struct iattr newattrs;
597
5590ff0d 598 error = __user_walk_fd(dfd, filename, LOOKUP_FOLLOW, &nd);
1da177e4
LT
599 if (error)
600 goto out;
4ac91378 601 inode = nd.path.dentry->d_inode;
1da177e4
LT
602
603 error = -EROFS;
604 if (IS_RDONLY(inode))
605 goto dput_and_out;
606
607 error = -EPERM;
608 if (IS_IMMUTABLE(inode) || IS_APPEND(inode))
609 goto dput_and_out;
610
1b1dcc1b 611 mutex_lock(&inode->i_mutex);
1da177e4
LT
612 if (mode == (mode_t) -1)
613 mode = inode->i_mode;
614 newattrs.ia_mode = (mode & S_IALLUGO) | (inode->i_mode & ~S_IALLUGO);
615 newattrs.ia_valid = ATTR_MODE | ATTR_CTIME;
4ac91378 616 error = notify_change(nd.path.dentry, &newattrs);
1b1dcc1b 617 mutex_unlock(&inode->i_mutex);
1da177e4
LT
618
619dput_and_out:
1d957f9b 620 path_put(&nd.path);
1da177e4
LT
621out:
622 return error;
623}
624
5590ff0d
UD
625asmlinkage long sys_chmod(const char __user *filename, mode_t mode)
626{
627 return sys_fchmodat(AT_FDCWD, filename, mode);
628}
629
1da177e4
LT
630static int chown_common(struct dentry * dentry, uid_t user, gid_t group)
631{
632 struct inode * inode;
633 int error;
634 struct iattr newattrs;
635
636 error = -ENOENT;
637 if (!(inode = dentry->d_inode)) {
638 printk(KERN_ERR "chown_common: NULL inode\n");
639 goto out;
640 }
641 error = -EROFS;
642 if (IS_RDONLY(inode))
643 goto out;
644 error = -EPERM;
645 if (IS_IMMUTABLE(inode) || IS_APPEND(inode))
646 goto out;
647 newattrs.ia_valid = ATTR_CTIME;
648 if (user != (uid_t) -1) {
649 newattrs.ia_valid |= ATTR_UID;
650 newattrs.ia_uid = user;
651 }
652 if (group != (gid_t) -1) {
653 newattrs.ia_valid |= ATTR_GID;
654 newattrs.ia_gid = group;
655 }
656 if (!S_ISDIR(inode->i_mode))
b5376771
SH
657 newattrs.ia_valid |=
658 ATTR_KILL_SUID | ATTR_KILL_SGID | ATTR_KILL_PRIV;
1b1dcc1b 659 mutex_lock(&inode->i_mutex);
1da177e4 660 error = notify_change(dentry, &newattrs);
1b1dcc1b 661 mutex_unlock(&inode->i_mutex);
1da177e4
LT
662out:
663 return error;
664}
665
666asmlinkage long sys_chown(const char __user * filename, uid_t user, gid_t group)
667{
668 struct nameidata nd;
669 int error;
670
671 error = user_path_walk(filename, &nd);
6902d925
DH
672 if (error)
673 goto out;
4ac91378 674 error = chown_common(nd.path.dentry, user, group);
1d957f9b 675 path_put(&nd.path);
6902d925 676out:
1da177e4
LT
677 return error;
678}
679
5590ff0d
UD
680asmlinkage long sys_fchownat(int dfd, const char __user *filename, uid_t user,
681 gid_t group, int flag)
682{
683 struct nameidata nd;
684 int error = -EINVAL;
685 int follow;
686
687 if ((flag & ~AT_SYMLINK_NOFOLLOW) != 0)
688 goto out;
689
690 follow = (flag & AT_SYMLINK_NOFOLLOW) ? 0 : LOOKUP_FOLLOW;
691 error = __user_walk_fd(dfd, filename, follow, &nd);
6902d925
DH
692 if (error)
693 goto out;
4ac91378 694 error = chown_common(nd.path.dentry, user, group);
1d957f9b 695 path_put(&nd.path);
5590ff0d
UD
696out:
697 return error;
698}
699
1da177e4
LT
700asmlinkage long sys_lchown(const char __user * filename, uid_t user, gid_t group)
701{
702 struct nameidata nd;
703 int error;
704
705 error = user_path_walk_link(filename, &nd);
6902d925
DH
706 if (error)
707 goto out;
4ac91378 708 error = chown_common(nd.path.dentry, user, group);
1d957f9b 709 path_put(&nd.path);
6902d925 710out:
1da177e4
LT
711 return error;
712}
713
714
715asmlinkage long sys_fchown(unsigned int fd, uid_t user, gid_t group)
716{
717 struct file * file;
718 int error = -EBADF;
6902d925 719 struct dentry * dentry;
1da177e4
LT
720
721 file = fget(fd);
6902d925
DH
722 if (!file)
723 goto out;
724
0f7fc9e4 725 dentry = file->f_path.dentry;
5a190ae6 726 audit_inode(NULL, dentry);
6902d925
DH
727 error = chown_common(dentry, user, group);
728 fput(file);
729out:
1da177e4
LT
730 return error;
731}
732
4a3fd211
DH
733/*
734 * You have to be very careful that these write
735 * counts get cleaned up in error cases and
736 * upon __fput(). This should probably never
737 * be called outside of __dentry_open().
738 */
739static inline int __get_file_write_access(struct inode *inode,
740 struct vfsmount *mnt)
741{
742 int error;
743 error = get_write_access(inode);
744 if (error)
745 return error;
746 /*
747 * Do not take mount writer counts on
748 * special files since no writes to
749 * the mount itself will occur.
750 */
751 if (!special_file(inode->i_mode)) {
752 /*
753 * Balanced in __fput()
754 */
755 error = mnt_want_write(mnt);
756 if (error)
757 put_write_access(inode);
758 }
759 return error;
760}
761
a1a5b3d9 762static struct file *__dentry_open(struct dentry *dentry, struct vfsmount *mnt,
834f2a4a
TM
763 int flags, struct file *f,
764 int (*open)(struct inode *, struct file *))
1da177e4 765{
1da177e4
LT
766 struct inode *inode;
767 int error;
768
1da177e4 769 f->f_flags = flags;
a1a5b3d9
PS
770 f->f_mode = ((flags+1) & O_ACCMODE) | FMODE_LSEEK |
771 FMODE_PREAD | FMODE_PWRITE;
1da177e4
LT
772 inode = dentry->d_inode;
773 if (f->f_mode & FMODE_WRITE) {
4a3fd211 774 error = __get_file_write_access(inode, mnt);
1da177e4
LT
775 if (error)
776 goto cleanup_file;
777 }
778
779 f->f_mapping = inode->i_mapping;
0f7fc9e4
JJS
780 f->f_path.dentry = dentry;
781 f->f_path.mnt = mnt;
1da177e4
LT
782 f->f_pos = 0;
783 f->f_op = fops_get(inode->i_fop);
784 file_move(f, &inode->i_sb->s_files);
785
788e7dd4
YN
786 error = security_dentry_open(f);
787 if (error)
788 goto cleanup_all;
789
834f2a4a
TM
790 if (!open && f->f_op)
791 open = f->f_op->open;
792 if (open) {
793 error = open(inode, f);
1da177e4
LT
794 if (error)
795 goto cleanup_all;
796 }
834f2a4a 797
1da177e4
LT
798 f->f_flags &= ~(O_CREAT | O_EXCL | O_NOCTTY | O_TRUNC);
799
800 file_ra_state_init(&f->f_ra, f->f_mapping->host->i_mapping);
801
802 /* NB: we're sure to have correct a_ops only after f_op->open */
803 if (f->f_flags & O_DIRECT) {
ceffc078
CO
804 if (!f->f_mapping->a_ops ||
805 ((!f->f_mapping->a_ops->direct_IO) &&
806 (!f->f_mapping->a_ops->get_xip_page))) {
1da177e4
LT
807 fput(f);
808 f = ERR_PTR(-EINVAL);
809 }
810 }
811
812 return f;
813
814cleanup_all:
815 fops_put(f->f_op);
4a3fd211 816 if (f->f_mode & FMODE_WRITE) {
1da177e4 817 put_write_access(inode);
4a3fd211
DH
818 if (!special_file(inode->i_mode))
819 mnt_drop_write(mnt);
820 }
1da177e4 821 file_kill(f);
0f7fc9e4
JJS
822 f->f_path.dentry = NULL;
823 f->f_path.mnt = NULL;
1da177e4
LT
824cleanup_file:
825 put_filp(f);
1da177e4
LT
826 dput(dentry);
827 mntput(mnt);
828 return ERR_PTR(error);
829}
830
834f2a4a
TM
831/**
832 * lookup_instantiate_filp - instantiates the open intent filp
833 * @nd: pointer to nameidata
834 * @dentry: pointer to dentry
835 * @open: open callback
836 *
837 * Helper for filesystems that want to use lookup open intents and pass back
838 * a fully instantiated struct file to the caller.
839 * This function is meant to be called from within a filesystem's
840 * lookup method.
9a56c213
OD
841 * Beware of calling it for non-regular files! Those ->open methods might block
842 * (e.g. in fifo_open), leaving you with parent locked (and in case of fifo,
843 * leading to a deadlock, as nobody can open that fifo anymore, because
844 * another process to open fifo will block on locked parent when doing lookup).
834f2a4a
TM
845 * Note that in case of error, nd->intent.open.file is destroyed, but the
846 * path information remains valid.
847 * If the open callback is set to NULL, then the standard f_op->open()
848 * filesystem callback is substituted.
849 */
850struct file *lookup_instantiate_filp(struct nameidata *nd, struct dentry *dentry,
851 int (*open)(struct inode *, struct file *))
852{
853 if (IS_ERR(nd->intent.open.file))
854 goto out;
855 if (IS_ERR(dentry))
856 goto out_err;
4ac91378 857 nd->intent.open.file = __dentry_open(dget(dentry), mntget(nd->path.mnt),
834f2a4a
TM
858 nd->intent.open.flags - 1,
859 nd->intent.open.file,
860 open);
861out:
862 return nd->intent.open.file;
863out_err:
864 release_open_intent(nd);
865 nd->intent.open.file = (struct file *)dentry;
866 goto out;
867}
868EXPORT_SYMBOL_GPL(lookup_instantiate_filp);
869
870/**
871 * nameidata_to_filp - convert a nameidata to an open filp.
872 * @nd: pointer to nameidata
873 * @flags: open flags
874 *
875 * Note that this function destroys the original nameidata
876 */
877struct file *nameidata_to_filp(struct nameidata *nd, int flags)
878{
879 struct file *filp;
880
881 /* Pick up the filp from the open intent */
882 filp = nd->intent.open.file;
883 /* Has the filesystem initialised the file for us? */
0f7fc9e4 884 if (filp->f_path.dentry == NULL)
4ac91378
JB
885 filp = __dentry_open(nd->path.dentry, nd->path.mnt, flags, filp,
886 NULL);
834f2a4a 887 else
1d957f9b 888 path_put(&nd->path);
834f2a4a
TM
889 return filp;
890}
891
6fdcc216
PS
892/*
893 * dentry_open() will have done dput(dentry) and mntput(mnt) if it returns an
894 * error.
895 */
a1a5b3d9
PS
896struct file *dentry_open(struct dentry *dentry, struct vfsmount *mnt, int flags)
897{
898 int error;
899 struct file *f;
900
322ee5b3
CH
901 /*
902 * We must always pass in a valid mount pointer. Historically
903 * callers got away with not passing it, but we must enforce this at
904 * the earliest possible point now to avoid strange problems deep in the
905 * filesystem stack.
906 */
907 if (!mnt) {
908 printk(KERN_WARNING "%s called with NULL vfsmount\n", __func__);
909 dump_stack();
910 return ERR_PTR(-EINVAL);
911 }
912
a1a5b3d9
PS
913 error = -ENFILE;
914 f = get_empty_filp();
6fdcc216
PS
915 if (f == NULL) {
916 dput(dentry);
917 mntput(mnt);
a1a5b3d9 918 return ERR_PTR(error);
6fdcc216 919 }
a1a5b3d9 920
834f2a4a 921 return __dentry_open(dentry, mnt, flags, f, NULL);
a1a5b3d9 922}
1da177e4
LT
923EXPORT_SYMBOL(dentry_open);
924
925/*
926 * Find an empty file descriptor entry, and mark it busy.
927 */
4a19542e 928int get_unused_fd_flags(int flags)
1da177e4
LT
929{
930 struct files_struct * files = current->files;
931 int fd, error;
badf1662 932 struct fdtable *fdt;
1da177e4
LT
933
934 error = -EMFILE;
935 spin_lock(&files->file_lock);
936
937repeat:
badf1662 938 fdt = files_fdtable(files);
bbea9f69 939 fd = find_next_zero_bit(fdt->open_fds->fds_bits, fdt->max_fds,
0c9e63fd 940 files->next_fd);
1da177e4
LT
941
942 /*
943 * N.B. For clone tasks sharing a files structure, this test
944 * will limit the total number of files that can be opened.
945 */
946 if (fd >= current->signal->rlim[RLIMIT_NOFILE].rlim_cur)
947 goto out;
948
949 /* Do we need to expand the fd array or fd set? */
950 error = expand_files(files, fd);
951 if (error < 0)
952 goto out;
953
954 if (error) {
955 /*
956 * If we needed to expand the fs array we
957 * might have blocked - try again.
958 */
959 error = -EMFILE;
960 goto repeat;
961 }
962
badf1662 963 FD_SET(fd, fdt->open_fds);
f23513e8
UD
964 if (flags & O_CLOEXEC)
965 FD_SET(fd, fdt->close_on_exec);
966 else
967 FD_CLR(fd, fdt->close_on_exec);
0c9e63fd 968 files->next_fd = fd + 1;
1da177e4
LT
969#if 1
970 /* Sanity check */
badf1662 971 if (fdt->fd[fd] != NULL) {
1da177e4 972 printk(KERN_WARNING "get_unused_fd: slot %d not NULL!\n", fd);
badf1662 973 fdt->fd[fd] = NULL;
1da177e4
LT
974 }
975#endif
976 error = fd;
977
978out:
979 spin_unlock(&files->file_lock);
980 return error;
981}
982
f23513e8
UD
983int get_unused_fd(void)
984{
985 return get_unused_fd_flags(0);
986}
987
1da177e4
LT
988EXPORT_SYMBOL(get_unused_fd);
989
b01ec0ef 990static void __put_unused_fd(struct files_struct *files, unsigned int fd)
1da177e4 991{
badf1662
DS
992 struct fdtable *fdt = files_fdtable(files);
993 __FD_CLR(fd, fdt->open_fds);
0c9e63fd
ED
994 if (fd < files->next_fd)
995 files->next_fd = fd;
1da177e4
LT
996}
997
fc9b52cd 998void put_unused_fd(unsigned int fd)
1da177e4
LT
999{
1000 struct files_struct *files = current->files;
1001 spin_lock(&files->file_lock);
1002 __put_unused_fd(files, fd);
1003 spin_unlock(&files->file_lock);
1004}
1005
1006EXPORT_SYMBOL(put_unused_fd);
1007
1008/*
5590ff0d 1009 * Install a file pointer in the fd array.
1da177e4
LT
1010 *
1011 * The VFS is full of places where we drop the files lock between
1012 * setting the open_fds bitmap and installing the file in the file
1013 * array. At any such point, we are vulnerable to a dup2() race
1014 * installing a file in the array before us. We need to detect this and
1015 * fput() the struct file we are about to overwrite in this case.
1016 *
1017 * It should never happen - if we allow dup2() do it, _really_ bad things
1018 * will follow.
1019 */
1020
fc9b52cd 1021void fd_install(unsigned int fd, struct file *file)
1da177e4
LT
1022{
1023 struct files_struct *files = current->files;
badf1662 1024 struct fdtable *fdt;
1da177e4 1025 spin_lock(&files->file_lock);
badf1662 1026 fdt = files_fdtable(files);
ab2af1f5
DS
1027 BUG_ON(fdt->fd[fd] != NULL);
1028 rcu_assign_pointer(fdt->fd[fd], file);
1da177e4
LT
1029 spin_unlock(&files->file_lock);
1030}
1031
1032EXPORT_SYMBOL(fd_install);
1033
5590ff0d 1034long do_sys_open(int dfd, const char __user *filename, int flags, int mode)
1da177e4 1035{
e922efc3
MS
1036 char *tmp = getname(filename);
1037 int fd = PTR_ERR(tmp);
1da177e4 1038
1da177e4 1039 if (!IS_ERR(tmp)) {
f23513e8 1040 fd = get_unused_fd_flags(flags);
1da177e4 1041 if (fd >= 0) {
5590ff0d 1042 struct file *f = do_filp_open(dfd, tmp, flags, mode);
fed2fc18
TN
1043 if (IS_ERR(f)) {
1044 put_unused_fd(fd);
1045 fd = PTR_ERR(f);
1046 } else {
0f7fc9e4 1047 fsnotify_open(f->f_path.dentry);
fed2fc18
TN
1048 fd_install(fd, f);
1049 }
1da177e4 1050 }
1da177e4
LT
1051 putname(tmp);
1052 }
1053 return fd;
1da177e4 1054}
e922efc3
MS
1055
1056asmlinkage long sys_open(const char __user *filename, int flags, int mode)
1057{
385910f2
LT
1058 long ret;
1059
e922efc3
MS
1060 if (force_o_largefile())
1061 flags |= O_LARGEFILE;
1062
385910f2
LT
1063 ret = do_sys_open(AT_FDCWD, filename, flags, mode);
1064 /* avoid REGPARM breakage on x86: */
54a01510 1065 asmlinkage_protect(3, ret, filename, flags, mode);
385910f2 1066 return ret;
e922efc3 1067}
1da177e4 1068
5590ff0d
UD
1069asmlinkage long sys_openat(int dfd, const char __user *filename, int flags,
1070 int mode)
1071{
385910f2
LT
1072 long ret;
1073
5590ff0d
UD
1074 if (force_o_largefile())
1075 flags |= O_LARGEFILE;
1076
385910f2
LT
1077 ret = do_sys_open(dfd, filename, flags, mode);
1078 /* avoid REGPARM breakage on x86: */
54a01510 1079 asmlinkage_protect(4, ret, dfd, filename, flags, mode);
385910f2 1080 return ret;
5590ff0d 1081}
5590ff0d 1082
1da177e4
LT
1083#ifndef __alpha__
1084
1085/*
1086 * For backward compatibility? Maybe this should be moved
1087 * into arch/i386 instead?
1088 */
1089asmlinkage long sys_creat(const char __user * pathname, int mode)
1090{
1091 return sys_open(pathname, O_CREAT | O_WRONLY | O_TRUNC, mode);
1092}
1093
1094#endif
1095
1096/*
1097 * "id" is the POSIX thread ID. We use the
1098 * files pointer for this..
1099 */
1100int filp_close(struct file *filp, fl_owner_t id)
1101{
45778ca8 1102 int retval = 0;
1da177e4
LT
1103
1104 if (!file_count(filp)) {
1105 printk(KERN_ERR "VFS: Close: file count is 0\n");
45778ca8 1106 return 0;
1da177e4
LT
1107 }
1108
45778ca8 1109 if (filp->f_op && filp->f_op->flush)
75e1fcc0 1110 retval = filp->f_op->flush(filp, id);
1da177e4
LT
1111
1112 dnotify_flush(filp, id);
1113 locks_remove_posix(filp, id);
1114 fput(filp);
1115 return retval;
1116}
1117
1118EXPORT_SYMBOL(filp_close);
1119
1120/*
1121 * Careful here! We test whether the file pointer is NULL before
1122 * releasing the fd. This ensures that one clone task can't release
1123 * an fd while another clone is opening it.
1124 */
1125asmlinkage long sys_close(unsigned int fd)
1126{
1127 struct file * filp;
1128 struct files_struct *files = current->files;
badf1662 1129 struct fdtable *fdt;
ee731f4f 1130 int retval;
1da177e4
LT
1131
1132 spin_lock(&files->file_lock);
badf1662
DS
1133 fdt = files_fdtable(files);
1134 if (fd >= fdt->max_fds)
1da177e4 1135 goto out_unlock;
badf1662 1136 filp = fdt->fd[fd];
1da177e4
LT
1137 if (!filp)
1138 goto out_unlock;
ab2af1f5 1139 rcu_assign_pointer(fdt->fd[fd], NULL);
badf1662 1140 FD_CLR(fd, fdt->close_on_exec);
1da177e4
LT
1141 __put_unused_fd(files, fd);
1142 spin_unlock(&files->file_lock);
ee731f4f
EP
1143 retval = filp_close(filp, files);
1144
1145 /* can't restart close syscall because file table entry was cleared */
1146 if (unlikely(retval == -ERESTARTSYS ||
1147 retval == -ERESTARTNOINTR ||
1148 retval == -ERESTARTNOHAND ||
1149 retval == -ERESTART_RESTARTBLOCK))
1150 retval = -EINTR;
1151
1152 return retval;
1da177e4
LT
1153
1154out_unlock:
1155 spin_unlock(&files->file_lock);
1156 return -EBADF;
1157}
1158
1159EXPORT_SYMBOL(sys_close);
1160
1161/*
1162 * This routine simulates a hangup on the tty, to arrange that users
1163 * are given clean terminals at login time.
1164 */
1165asmlinkage long sys_vhangup(void)
1166{
1167 if (capable(CAP_SYS_TTY_CONFIG)) {
24ec839c 1168 /* XXX: this needs locking */
1da177e4
LT
1169 tty_vhangup(current->signal->tty);
1170 return 0;
1171 }
1172 return -EPERM;
1173}
1174
1175/*
1176 * Called when an inode is about to be open.
1177 * We use this to disallow opening large files on 32bit systems if
1178 * the caller didn't specify O_LARGEFILE. On 64bit systems we force
1179 * on this flag in sys_open.
1180 */
1181int generic_file_open(struct inode * inode, struct file * filp)
1182{
1183 if (!(filp->f_flags & O_LARGEFILE) && i_size_read(inode) > MAX_NON_LFS)
a9c62a18 1184 return -EOVERFLOW;
1da177e4
LT
1185 return 0;
1186}
1187
1188EXPORT_SYMBOL(generic_file_open);
1189
1190/*
1191 * This is used by subsystems that don't want seekable
1192 * file descriptors
1193 */
1194int nonseekable_open(struct inode *inode, struct file *filp)
1195{
1196 filp->f_mode &= ~(FMODE_LSEEK | FMODE_PREAD | FMODE_PWRITE);
1197 return 0;
1198}
1199
1200EXPORT_SYMBOL(nonseekable_open);