669ba0dd666701fae8f3853b613df8413367249a
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / fs / open.c
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>
9 #include <linux/file.h>
10 #include <linux/fdtable.h>
11 #include <linux/fsnotify.h>
12 #include <linux/module.h>
13 #include <linux/tty.h>
14 #include <linux/namei.h>
15 #include <linux/backing-dev.h>
16 #include <linux/capability.h>
17 #include <linux/securebits.h>
18 #include <linux/security.h>
19 #include <linux/mount.h>
20 #include <linux/fcntl.h>
21 #include <linux/slab.h>
22 #include <asm/uaccess.h>
23 #include <linux/fs.h>
24 #include <linux/personality.h>
25 #include <linux/pagemap.h>
26 #include <linux/syscalls.h>
27 #include <linux/rcupdate.h>
28 #include <linux/audit.h>
29 #include <linux/falloc.h>
30 #include <linux/fs_struct.h>
31 #include <linux/ima.h>
32 #include <linux/dnotify.h>
33 #include <linux/compat.h>
34
35 #include "internal.h"
36
37 int do_truncate(struct dentry *dentry, loff_t length, unsigned int time_attrs,
38 struct file *filp)
39 {
40 int ret;
41 struct iattr newattrs;
42
43 /* Not pretty: "inode->i_size" shouldn't really be signed. But it is. */
44 if (length < 0)
45 return -EINVAL;
46
47 newattrs.ia_size = length;
48 newattrs.ia_valid = ATTR_SIZE | time_attrs;
49 if (filp) {
50 newattrs.ia_file = filp;
51 newattrs.ia_valid |= ATTR_FILE;
52 }
53
54 /* Remove suid/sgid on truncate too */
55 ret = should_remove_suid(dentry);
56 if (ret)
57 newattrs.ia_valid |= ret | ATTR_FORCE;
58
59 mutex_lock(&dentry->d_inode->i_mutex);
60 ret = notify_change(dentry, &newattrs);
61 mutex_unlock(&dentry->d_inode->i_mutex);
62 return ret;
63 }
64
65 long vfs_truncate(struct path *path, loff_t length)
66 {
67 struct inode *inode;
68 long error;
69
70 inode = path->dentry->d_inode;
71
72 /* For directories it's -EISDIR, for other non-regulars - -EINVAL */
73 if (S_ISDIR(inode->i_mode))
74 return -EISDIR;
75 if (!S_ISREG(inode->i_mode))
76 return -EINVAL;
77
78 error = mnt_want_write(path->mnt);
79 if (error)
80 goto out;
81
82 error = inode_permission(inode, MAY_WRITE);
83 if (error)
84 goto mnt_drop_write_and_out;
85
86 error = -EPERM;
87 if (IS_APPEND(inode))
88 goto mnt_drop_write_and_out;
89
90 error = get_write_access(inode);
91 if (error)
92 goto mnt_drop_write_and_out;
93
94 /*
95 * Make sure that there are no leases. get_write_access() protects
96 * against the truncate racing with a lease-granting setlease().
97 */
98 error = break_lease(inode, O_WRONLY);
99 if (error)
100 goto put_write_and_out;
101
102 error = locks_verify_truncate(inode, NULL, length);
103 if (!error)
104 error = security_path_truncate(path);
105 if (!error)
106 error = do_truncate(path->dentry, length, 0, NULL);
107
108 put_write_and_out:
109 put_write_access(inode);
110 mnt_drop_write_and_out:
111 mnt_drop_write(path->mnt);
112 out:
113 return error;
114 }
115 EXPORT_SYMBOL_GPL(vfs_truncate);
116
117 static long do_sys_truncate(const char __user *pathname, loff_t length)
118 {
119 unsigned int lookup_flags = LOOKUP_FOLLOW;
120 struct path path;
121 int error;
122
123 if (length < 0) /* sorry, but loff_t says... */
124 return -EINVAL;
125
126 retry:
127 error = user_path_at(AT_FDCWD, pathname, lookup_flags, &path);
128 if (!error) {
129 error = vfs_truncate(&path, length);
130 path_put(&path);
131 }
132 if (retry_estale(error, lookup_flags)) {
133 lookup_flags |= LOOKUP_REVAL;
134 goto retry;
135 }
136 return error;
137 }
138
139 SYSCALL_DEFINE2(truncate, const char __user *, path, long, length)
140 {
141 return do_sys_truncate(path, length);
142 }
143
144 #ifdef CONFIG_COMPAT
145 COMPAT_SYSCALL_DEFINE2(truncate, const char __user *, path, compat_off_t, length)
146 {
147 return do_sys_truncate(path, length);
148 }
149 #endif
150
151 static long do_sys_ftruncate(unsigned int fd, loff_t length, int small)
152 {
153 struct inode *inode;
154 struct dentry *dentry;
155 struct fd f;
156 int error;
157
158 error = -EINVAL;
159 if (length < 0)
160 goto out;
161 error = -EBADF;
162 f = fdget(fd);
163 if (!f.file)
164 goto out;
165
166 /* explicitly opened as large or we are on 64-bit box */
167 if (f.file->f_flags & O_LARGEFILE)
168 small = 0;
169
170 dentry = f.file->f_path.dentry;
171 inode = dentry->d_inode;
172 error = -EINVAL;
173 if (!S_ISREG(inode->i_mode) || !(f.file->f_mode & FMODE_WRITE))
174 goto out_putf;
175
176 error = -EINVAL;
177 /* Cannot ftruncate over 2^31 bytes without large file support */
178 if (small && length > MAX_NON_LFS)
179 goto out_putf;
180
181 error = -EPERM;
182 if (IS_APPEND(inode))
183 goto out_putf;
184
185 sb_start_write(inode->i_sb);
186 error = locks_verify_truncate(inode, f.file, length);
187 if (!error)
188 error = security_path_truncate(&f.file->f_path);
189 if (!error)
190 error = do_truncate(dentry, length, ATTR_MTIME|ATTR_CTIME, f.file);
191 sb_end_write(inode->i_sb);
192 out_putf:
193 fdput(f);
194 out:
195 return error;
196 }
197
198 SYSCALL_DEFINE2(ftruncate, unsigned int, fd, unsigned long, length)
199 {
200 long ret = do_sys_ftruncate(fd, length, 1);
201 /* avoid REGPARM breakage on x86: */
202 asmlinkage_protect(2, ret, fd, length);
203 return ret;
204 }
205
206 #ifdef CONFIG_COMPAT
207 COMPAT_SYSCALL_DEFINE2(ftruncate, unsigned int, fd, compat_ulong_t, length)
208 {
209 return do_sys_ftruncate(fd, length, 1);
210 }
211 #endif
212
213 /* LFS versions of truncate are only needed on 32 bit machines */
214 #if BITS_PER_LONG == 32
215 SYSCALL_DEFINE(truncate64)(const char __user * path, loff_t length)
216 {
217 return do_sys_truncate(path, length);
218 }
219 #ifdef CONFIG_HAVE_SYSCALL_WRAPPERS
220 asmlinkage long SyS_truncate64(long path, loff_t length)
221 {
222 return SYSC_truncate64((const char __user *) path, length);
223 }
224 SYSCALL_ALIAS(sys_truncate64, SyS_truncate64);
225 #endif
226
227 SYSCALL_DEFINE(ftruncate64)(unsigned int fd, loff_t length)
228 {
229 long ret = do_sys_ftruncate(fd, length, 0);
230 /* avoid REGPARM breakage on x86: */
231 asmlinkage_protect(2, ret, fd, length);
232 return ret;
233 }
234 #ifdef CONFIG_HAVE_SYSCALL_WRAPPERS
235 asmlinkage long SyS_ftruncate64(long fd, loff_t length)
236 {
237 return SYSC_ftruncate64((unsigned int) fd, length);
238 }
239 SYSCALL_ALIAS(sys_ftruncate64, SyS_ftruncate64);
240 #endif
241 #endif /* BITS_PER_LONG == 32 */
242
243
244 int do_fallocate(struct file *file, int mode, loff_t offset, loff_t len)
245 {
246 struct inode *inode = file->f_path.dentry->d_inode;
247 long ret;
248
249 if (offset < 0 || len <= 0)
250 return -EINVAL;
251
252 /* Return error if mode is not supported */
253 if (mode & ~(FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE))
254 return -EOPNOTSUPP;
255
256 /* Punch hole must have keep size set */
257 if ((mode & FALLOC_FL_PUNCH_HOLE) &&
258 !(mode & FALLOC_FL_KEEP_SIZE))
259 return -EOPNOTSUPP;
260
261 if (!(file->f_mode & FMODE_WRITE))
262 return -EBADF;
263
264 /* It's not possible punch hole on append only file */
265 if (mode & FALLOC_FL_PUNCH_HOLE && IS_APPEND(inode))
266 return -EPERM;
267
268 if (IS_IMMUTABLE(inode))
269 return -EPERM;
270
271 /*
272 * Revalidate the write permissions, in case security policy has
273 * changed since the files were opened.
274 */
275 ret = security_file_permission(file, MAY_WRITE);
276 if (ret)
277 return ret;
278
279 if (S_ISFIFO(inode->i_mode))
280 return -ESPIPE;
281
282 /*
283 * Let individual file system decide if it supports preallocation
284 * for directories or not.
285 */
286 if (!S_ISREG(inode->i_mode) && !S_ISDIR(inode->i_mode))
287 return -ENODEV;
288
289 /* Check for wrap through zero too */
290 if (((offset + len) > inode->i_sb->s_maxbytes) || ((offset + len) < 0))
291 return -EFBIG;
292
293 if (!file->f_op->fallocate)
294 return -EOPNOTSUPP;
295
296 sb_start_write(inode->i_sb);
297 ret = file->f_op->fallocate(file, mode, offset, len);
298 sb_end_write(inode->i_sb);
299 return ret;
300 }
301
302 SYSCALL_DEFINE(fallocate)(int fd, int mode, loff_t offset, loff_t len)
303 {
304 struct fd f = fdget(fd);
305 int error = -EBADF;
306
307 if (f.file) {
308 error = do_fallocate(f.file, mode, offset, len);
309 fdput(f);
310 }
311 return error;
312 }
313
314 #ifdef CONFIG_HAVE_SYSCALL_WRAPPERS
315 asmlinkage long SyS_fallocate(long fd, long mode, loff_t offset, loff_t len)
316 {
317 return SYSC_fallocate((int)fd, (int)mode, offset, len);
318 }
319 SYSCALL_ALIAS(sys_fallocate, SyS_fallocate);
320 #endif
321
322 /*
323 * access() needs to use the real uid/gid, not the effective uid/gid.
324 * We do this by temporarily clearing all FS-related capabilities and
325 * switching the fsuid/fsgid around to the real ones.
326 */
327 SYSCALL_DEFINE3(faccessat, int, dfd, const char __user *, filename, int, mode)
328 {
329 const struct cred *old_cred;
330 struct cred *override_cred;
331 struct path path;
332 struct inode *inode;
333 int res;
334 unsigned int lookup_flags = LOOKUP_FOLLOW;
335
336 if (mode & ~S_IRWXO) /* where's F_OK, X_OK, W_OK, R_OK? */
337 return -EINVAL;
338
339 override_cred = prepare_creds();
340 if (!override_cred)
341 return -ENOMEM;
342
343 override_cred->fsuid = override_cred->uid;
344 override_cred->fsgid = override_cred->gid;
345
346 if (!issecure(SECURE_NO_SETUID_FIXUP)) {
347 /* Clear the capabilities if we switch to a non-root user */
348 kuid_t root_uid = make_kuid(override_cred->user_ns, 0);
349 if (!uid_eq(override_cred->uid, root_uid))
350 cap_clear(override_cred->cap_effective);
351 else
352 override_cred->cap_effective =
353 override_cred->cap_permitted;
354 }
355
356 old_cred = override_creds(override_cred);
357 retry:
358 res = user_path_at(dfd, filename, lookup_flags, &path);
359 if (res)
360 goto out;
361
362 inode = path.dentry->d_inode;
363
364 if ((mode & MAY_EXEC) && S_ISREG(inode->i_mode)) {
365 /*
366 * MAY_EXEC on regular files is denied if the fs is mounted
367 * with the "noexec" flag.
368 */
369 res = -EACCES;
370 if (path.mnt->mnt_flags & MNT_NOEXEC)
371 goto out_path_release;
372 }
373
374 res = inode_permission(inode, mode | MAY_ACCESS);
375 /* SuS v2 requires we report a read only fs too */
376 if (res || !(mode & S_IWOTH) || special_file(inode->i_mode))
377 goto out_path_release;
378 /*
379 * This is a rare case where using __mnt_is_readonly()
380 * is OK without a mnt_want/drop_write() pair. Since
381 * no actual write to the fs is performed here, we do
382 * not need to telegraph to that to anyone.
383 *
384 * By doing this, we accept that this access is
385 * inherently racy and know that the fs may change
386 * state before we even see this result.
387 */
388 if (__mnt_is_readonly(path.mnt))
389 res = -EROFS;
390
391 out_path_release:
392 path_put(&path);
393 if (retry_estale(res, lookup_flags)) {
394 lookup_flags |= LOOKUP_REVAL;
395 goto retry;
396 }
397 out:
398 revert_creds(old_cred);
399 put_cred(override_cred);
400 return res;
401 }
402
403 SYSCALL_DEFINE2(access, const char __user *, filename, int, mode)
404 {
405 return sys_faccessat(AT_FDCWD, filename, mode);
406 }
407
408 SYSCALL_DEFINE1(chdir, const char __user *, filename)
409 {
410 struct path path;
411 int error;
412 unsigned int lookup_flags = LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
413 retry:
414 error = user_path_at(AT_FDCWD, filename, lookup_flags, &path);
415 if (error)
416 goto out;
417
418 error = inode_permission(path.dentry->d_inode, MAY_EXEC | MAY_CHDIR);
419 if (error)
420 goto dput_and_out;
421
422 set_fs_pwd(current->fs, &path);
423
424 dput_and_out:
425 path_put(&path);
426 if (retry_estale(error, lookup_flags)) {
427 lookup_flags |= LOOKUP_REVAL;
428 goto retry;
429 }
430 out:
431 return error;
432 }
433
434 SYSCALL_DEFINE1(fchdir, unsigned int, fd)
435 {
436 struct fd f = fdget_raw(fd);
437 struct inode *inode;
438 int error = -EBADF;
439
440 error = -EBADF;
441 if (!f.file)
442 goto out;
443
444 inode = f.file->f_path.dentry->d_inode;
445
446 error = -ENOTDIR;
447 if (!S_ISDIR(inode->i_mode))
448 goto out_putf;
449
450 error = inode_permission(inode, MAY_EXEC | MAY_CHDIR);
451 if (!error)
452 set_fs_pwd(current->fs, &f.file->f_path);
453 out_putf:
454 fdput(f);
455 out:
456 return error;
457 }
458
459 SYSCALL_DEFINE1(chroot, const char __user *, filename)
460 {
461 struct path path;
462 int error;
463 unsigned int lookup_flags = LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
464 retry:
465 error = user_path_at(AT_FDCWD, filename, lookup_flags, &path);
466 if (error)
467 goto out;
468
469 error = inode_permission(path.dentry->d_inode, MAY_EXEC | MAY_CHDIR);
470 if (error)
471 goto dput_and_out;
472
473 error = -EPERM;
474 if (!nsown_capable(CAP_SYS_CHROOT))
475 goto dput_and_out;
476 error = security_path_chroot(&path);
477 if (error)
478 goto dput_and_out;
479
480 set_fs_root(current->fs, &path);
481 error = 0;
482 dput_and_out:
483 path_put(&path);
484 if (retry_estale(error, lookup_flags)) {
485 lookup_flags |= LOOKUP_REVAL;
486 goto retry;
487 }
488 out:
489 return error;
490 }
491
492 static int chmod_common(struct path *path, umode_t mode)
493 {
494 struct inode *inode = path->dentry->d_inode;
495 struct iattr newattrs;
496 int error;
497
498 error = mnt_want_write(path->mnt);
499 if (error)
500 return error;
501 mutex_lock(&inode->i_mutex);
502 error = security_path_chmod(path, mode);
503 if (error)
504 goto out_unlock;
505 newattrs.ia_mode = (mode & S_IALLUGO) | (inode->i_mode & ~S_IALLUGO);
506 newattrs.ia_valid = ATTR_MODE | ATTR_CTIME;
507 error = notify_change(path->dentry, &newattrs);
508 out_unlock:
509 mutex_unlock(&inode->i_mutex);
510 mnt_drop_write(path->mnt);
511 return error;
512 }
513
514 SYSCALL_DEFINE2(fchmod, unsigned int, fd, umode_t, mode)
515 {
516 struct file * file;
517 int err = -EBADF;
518
519 file = fget(fd);
520 if (file) {
521 audit_inode(NULL, file->f_path.dentry, 0);
522 err = chmod_common(&file->f_path, mode);
523 fput(file);
524 }
525 return err;
526 }
527
528 SYSCALL_DEFINE3(fchmodat, int, dfd, const char __user *, filename, umode_t, mode)
529 {
530 struct path path;
531 int error;
532 unsigned int lookup_flags = LOOKUP_FOLLOW;
533 retry:
534 error = user_path_at(dfd, filename, lookup_flags, &path);
535 if (!error) {
536 error = chmod_common(&path, mode);
537 path_put(&path);
538 if (retry_estale(error, lookup_flags)) {
539 lookup_flags |= LOOKUP_REVAL;
540 goto retry;
541 }
542 }
543 return error;
544 }
545
546 SYSCALL_DEFINE2(chmod, const char __user *, filename, umode_t, mode)
547 {
548 return sys_fchmodat(AT_FDCWD, filename, mode);
549 }
550
551 static int chown_common(struct path *path, uid_t user, gid_t group)
552 {
553 struct inode *inode = path->dentry->d_inode;
554 int error;
555 struct iattr newattrs;
556 kuid_t uid;
557 kgid_t gid;
558
559 uid = make_kuid(current_user_ns(), user);
560 gid = make_kgid(current_user_ns(), group);
561
562 newattrs.ia_valid = ATTR_CTIME;
563 if (user != (uid_t) -1) {
564 if (!uid_valid(uid))
565 return -EINVAL;
566 newattrs.ia_valid |= ATTR_UID;
567 newattrs.ia_uid = uid;
568 }
569 if (group != (gid_t) -1) {
570 if (!gid_valid(gid))
571 return -EINVAL;
572 newattrs.ia_valid |= ATTR_GID;
573 newattrs.ia_gid = gid;
574 }
575 if (!S_ISDIR(inode->i_mode))
576 newattrs.ia_valid |=
577 ATTR_KILL_SUID | ATTR_KILL_SGID | ATTR_KILL_PRIV;
578 mutex_lock(&inode->i_mutex);
579 error = security_path_chown(path, uid, gid);
580 if (!error)
581 error = notify_change(path->dentry, &newattrs);
582 mutex_unlock(&inode->i_mutex);
583
584 return error;
585 }
586
587 SYSCALL_DEFINE5(fchownat, int, dfd, const char __user *, filename, uid_t, user,
588 gid_t, group, int, flag)
589 {
590 struct path path;
591 int error = -EINVAL;
592 int lookup_flags;
593
594 if ((flag & ~(AT_SYMLINK_NOFOLLOW | AT_EMPTY_PATH)) != 0)
595 goto out;
596
597 lookup_flags = (flag & AT_SYMLINK_NOFOLLOW) ? 0 : LOOKUP_FOLLOW;
598 if (flag & AT_EMPTY_PATH)
599 lookup_flags |= LOOKUP_EMPTY;
600 retry:
601 error = user_path_at(dfd, filename, lookup_flags, &path);
602 if (error)
603 goto out;
604 error = mnt_want_write(path.mnt);
605 if (error)
606 goto out_release;
607 error = chown_common(&path, user, group);
608 mnt_drop_write(path.mnt);
609 out_release:
610 path_put(&path);
611 if (retry_estale(error, lookup_flags)) {
612 lookup_flags |= LOOKUP_REVAL;
613 goto retry;
614 }
615 out:
616 return error;
617 }
618
619 SYSCALL_DEFINE3(chown, const char __user *, filename, uid_t, user, gid_t, group)
620 {
621 return sys_fchownat(AT_FDCWD, filename, user, group, 0);
622 }
623
624 SYSCALL_DEFINE3(lchown, const char __user *, filename, uid_t, user, gid_t, group)
625 {
626 return sys_fchownat(AT_FDCWD, filename, user, group,
627 AT_SYMLINK_NOFOLLOW);
628 }
629
630 SYSCALL_DEFINE3(fchown, unsigned int, fd, uid_t, user, gid_t, group)
631 {
632 struct fd f = fdget(fd);
633 int error = -EBADF;
634
635 if (!f.file)
636 goto out;
637
638 error = mnt_want_write_file(f.file);
639 if (error)
640 goto out_fput;
641 audit_inode(NULL, f.file->f_path.dentry, 0);
642 error = chown_common(&f.file->f_path, user, group);
643 mnt_drop_write_file(f.file);
644 out_fput:
645 fdput(f);
646 out:
647 return error;
648 }
649
650 /*
651 * You have to be very careful that these write
652 * counts get cleaned up in error cases and
653 * upon __fput(). This should probably never
654 * be called outside of __dentry_open().
655 */
656 static inline int __get_file_write_access(struct inode *inode,
657 struct vfsmount *mnt)
658 {
659 int error;
660 error = get_write_access(inode);
661 if (error)
662 return error;
663 /*
664 * Do not take mount writer counts on
665 * special files since no writes to
666 * the mount itself will occur.
667 */
668 if (!special_file(inode->i_mode)) {
669 /*
670 * Balanced in __fput()
671 */
672 error = __mnt_want_write(mnt);
673 if (error)
674 put_write_access(inode);
675 }
676 return error;
677 }
678
679 int open_check_o_direct(struct file *f)
680 {
681 /* NB: we're sure to have correct a_ops only after f_op->open */
682 if (f->f_flags & O_DIRECT) {
683 if (!f->f_mapping->a_ops ||
684 ((!f->f_mapping->a_ops->direct_IO) &&
685 (!f->f_mapping->a_ops->get_xip_mem))) {
686 return -EINVAL;
687 }
688 }
689 return 0;
690 }
691
692 static int do_dentry_open(struct file *f,
693 int (*open)(struct inode *, struct file *),
694 const struct cred *cred)
695 {
696 static const struct file_operations empty_fops = {};
697 struct inode *inode;
698 int error;
699
700 f->f_mode = OPEN_FMODE(f->f_flags) | FMODE_LSEEK |
701 FMODE_PREAD | FMODE_PWRITE;
702
703 if (unlikely(f->f_flags & O_PATH))
704 f->f_mode = FMODE_PATH;
705
706 path_get(&f->f_path);
707 inode = f->f_path.dentry->d_inode;
708 if (f->f_mode & FMODE_WRITE) {
709 error = __get_file_write_access(inode, f->f_path.mnt);
710 if (error)
711 goto cleanup_file;
712 if (!special_file(inode->i_mode))
713 file_take_write(f);
714 }
715
716 f->f_mapping = inode->i_mapping;
717 f->f_pos = 0;
718 file_sb_list_add(f, inode->i_sb);
719
720 if (unlikely(f->f_mode & FMODE_PATH)) {
721 f->f_op = &empty_fops;
722 return 0;
723 }
724
725 f->f_op = fops_get(inode->i_fop);
726
727 error = security_file_open(f, cred);
728 if (error)
729 goto cleanup_all;
730
731 error = break_lease(inode, f->f_flags);
732 if (error)
733 goto cleanup_all;
734
735 if (!open && f->f_op)
736 open = f->f_op->open;
737 if (open) {
738 error = open(inode, f);
739 if (error)
740 goto cleanup_all;
741 }
742 if ((f->f_mode & (FMODE_READ | FMODE_WRITE)) == FMODE_READ)
743 i_readcount_inc(inode);
744
745 f->f_flags &= ~(O_CREAT | O_EXCL | O_NOCTTY | O_TRUNC);
746
747 file_ra_state_init(&f->f_ra, f->f_mapping->host->i_mapping);
748
749 return 0;
750
751 cleanup_all:
752 fops_put(f->f_op);
753 file_sb_list_del(f);
754 if (f->f_mode & FMODE_WRITE) {
755 put_write_access(inode);
756 if (!special_file(inode->i_mode)) {
757 /*
758 * We don't consider this a real
759 * mnt_want/drop_write() pair
760 * because it all happenend right
761 * here, so just reset the state.
762 */
763 file_reset_write(f);
764 __mnt_drop_write(f->f_path.mnt);
765 }
766 }
767 cleanup_file:
768 path_put(&f->f_path);
769 f->f_path.mnt = NULL;
770 f->f_path.dentry = NULL;
771 return error;
772 }
773
774 /**
775 * finish_open - finish opening a file
776 * @od: opaque open data
777 * @dentry: pointer to dentry
778 * @open: open callback
779 *
780 * This can be used to finish opening a file passed to i_op->atomic_open().
781 *
782 * If the open callback is set to NULL, then the standard f_op->open()
783 * filesystem callback is substituted.
784 */
785 int finish_open(struct file *file, struct dentry *dentry,
786 int (*open)(struct inode *, struct file *),
787 int *opened)
788 {
789 int error;
790 BUG_ON(*opened & FILE_OPENED); /* once it's opened, it's opened */
791
792 file->f_path.dentry = dentry;
793 error = do_dentry_open(file, open, current_cred());
794 if (!error)
795 *opened |= FILE_OPENED;
796
797 return error;
798 }
799 EXPORT_SYMBOL(finish_open);
800
801 /**
802 * finish_no_open - finish ->atomic_open() without opening the file
803 *
804 * @od: opaque open data
805 * @dentry: dentry or NULL (as returned from ->lookup())
806 *
807 * This can be used to set the result of a successful lookup in ->atomic_open().
808 * The filesystem's atomic_open() method shall return NULL after calling this.
809 */
810 int finish_no_open(struct file *file, struct dentry *dentry)
811 {
812 file->f_path.dentry = dentry;
813 return 1;
814 }
815 EXPORT_SYMBOL(finish_no_open);
816
817 struct file *dentry_open(const struct path *path, int flags,
818 const struct cred *cred)
819 {
820 int error;
821 struct file *f;
822
823 validate_creds(cred);
824
825 /* We must always pass in a valid mount pointer. */
826 BUG_ON(!path->mnt);
827
828 error = -ENFILE;
829 f = get_empty_filp();
830 if (f == NULL)
831 return ERR_PTR(error);
832
833 f->f_flags = flags;
834 f->f_path = *path;
835 error = do_dentry_open(f, NULL, cred);
836 if (!error) {
837 error = open_check_o_direct(f);
838 if (error) {
839 fput(f);
840 f = ERR_PTR(error);
841 }
842 } else {
843 put_filp(f);
844 f = ERR_PTR(error);
845 }
846 return f;
847 }
848 EXPORT_SYMBOL(dentry_open);
849
850 static inline int build_open_flags(int flags, umode_t mode, struct open_flags *op)
851 {
852 int lookup_flags = 0;
853 int acc_mode;
854
855 if (flags & O_CREAT)
856 op->mode = (mode & S_IALLUGO) | S_IFREG;
857 else
858 op->mode = 0;
859
860 /* Must never be set by userspace */
861 flags &= ~FMODE_NONOTIFY & ~O_CLOEXEC;
862
863 /*
864 * O_SYNC is implemented as __O_SYNC|O_DSYNC. As many places only
865 * check for O_DSYNC if the need any syncing at all we enforce it's
866 * always set instead of having to deal with possibly weird behaviour
867 * for malicious applications setting only __O_SYNC.
868 */
869 if (flags & __O_SYNC)
870 flags |= O_DSYNC;
871
872 /*
873 * If we have O_PATH in the open flag. Then we
874 * cannot have anything other than the below set of flags
875 */
876 if (flags & O_PATH) {
877 flags &= O_DIRECTORY | O_NOFOLLOW | O_PATH;
878 acc_mode = 0;
879 } else {
880 acc_mode = MAY_OPEN | ACC_MODE(flags);
881 }
882
883 op->open_flag = flags;
884
885 /* O_TRUNC implies we need access checks for write permissions */
886 if (flags & O_TRUNC)
887 acc_mode |= MAY_WRITE;
888
889 /* Allow the LSM permission hook to distinguish append
890 access from general write access. */
891 if (flags & O_APPEND)
892 acc_mode |= MAY_APPEND;
893
894 op->acc_mode = acc_mode;
895
896 op->intent = flags & O_PATH ? 0 : LOOKUP_OPEN;
897
898 if (flags & O_CREAT) {
899 op->intent |= LOOKUP_CREATE;
900 if (flags & O_EXCL)
901 op->intent |= LOOKUP_EXCL;
902 }
903
904 if (flags & O_DIRECTORY)
905 lookup_flags |= LOOKUP_DIRECTORY;
906 if (!(flags & O_NOFOLLOW))
907 lookup_flags |= LOOKUP_FOLLOW;
908 return lookup_flags;
909 }
910
911 /**
912 * file_open_name - open file and return file pointer
913 *
914 * @name: struct filename containing path to open
915 * @flags: open flags as per the open(2) second argument
916 * @mode: mode for the new file if O_CREAT is set, else ignored
917 *
918 * This is the helper to open a file from kernelspace if you really
919 * have to. But in generally you should not do this, so please move
920 * along, nothing to see here..
921 */
922 struct file *file_open_name(struct filename *name, int flags, umode_t mode)
923 {
924 struct open_flags op;
925 int lookup = build_open_flags(flags, mode, &op);
926 return do_filp_open(AT_FDCWD, name, &op, lookup);
927 }
928
929 /**
930 * filp_open - open file and return file pointer
931 *
932 * @filename: path to open
933 * @flags: open flags as per the open(2) second argument
934 * @mode: mode for the new file if O_CREAT is set, else ignored
935 *
936 * This is the helper to open a file from kernelspace if you really
937 * have to. But in generally you should not do this, so please move
938 * along, nothing to see here..
939 */
940 struct file *filp_open(const char *filename, int flags, umode_t mode)
941 {
942 struct filename name = {.name = filename};
943 return file_open_name(&name, flags, mode);
944 }
945 EXPORT_SYMBOL(filp_open);
946
947 struct file *file_open_root(struct dentry *dentry, struct vfsmount *mnt,
948 const char *filename, int flags)
949 {
950 struct open_flags op;
951 int lookup = build_open_flags(flags, 0, &op);
952 if (flags & O_CREAT)
953 return ERR_PTR(-EINVAL);
954 if (!filename && (flags & O_DIRECTORY))
955 if (!dentry->d_inode->i_op->lookup)
956 return ERR_PTR(-ENOTDIR);
957 return do_file_open_root(dentry, mnt, filename, &op, lookup);
958 }
959 EXPORT_SYMBOL(file_open_root);
960
961 long do_sys_open(int dfd, const char __user *filename, int flags, umode_t mode)
962 {
963 struct open_flags op;
964 int lookup = build_open_flags(flags, mode, &op);
965 struct filename *tmp = getname(filename);
966 int fd = PTR_ERR(tmp);
967
968 if (!IS_ERR(tmp)) {
969 fd = get_unused_fd_flags(flags);
970 if (fd >= 0) {
971 struct file *f = do_filp_open(dfd, tmp, &op, lookup);
972 if (IS_ERR(f)) {
973 put_unused_fd(fd);
974 fd = PTR_ERR(f);
975 } else {
976 fsnotify_open(f);
977 fd_install(fd, f);
978 }
979 }
980 putname(tmp);
981 }
982 return fd;
983 }
984
985 SYSCALL_DEFINE3(open, const char __user *, filename, int, flags, umode_t, mode)
986 {
987 long ret;
988
989 if (force_o_largefile())
990 flags |= O_LARGEFILE;
991
992 ret = do_sys_open(AT_FDCWD, filename, flags, mode);
993 /* avoid REGPARM breakage on x86: */
994 asmlinkage_protect(3, ret, filename, flags, mode);
995 return ret;
996 }
997
998 SYSCALL_DEFINE4(openat, int, dfd, const char __user *, filename, int, flags,
999 umode_t, mode)
1000 {
1001 long ret;
1002
1003 if (force_o_largefile())
1004 flags |= O_LARGEFILE;
1005
1006 ret = do_sys_open(dfd, filename, flags, mode);
1007 /* avoid REGPARM breakage on x86: */
1008 asmlinkage_protect(4, ret, dfd, filename, flags, mode);
1009 return ret;
1010 }
1011
1012 #ifndef __alpha__
1013
1014 /*
1015 * For backward compatibility? Maybe this should be moved
1016 * into arch/i386 instead?
1017 */
1018 SYSCALL_DEFINE2(creat, const char __user *, pathname, umode_t, mode)
1019 {
1020 return sys_open(pathname, O_CREAT | O_WRONLY | O_TRUNC, mode);
1021 }
1022
1023 #endif
1024
1025 /*
1026 * "id" is the POSIX thread ID. We use the
1027 * files pointer for this..
1028 */
1029 int filp_close(struct file *filp, fl_owner_t id)
1030 {
1031 int retval = 0;
1032
1033 if (!file_count(filp)) {
1034 printk(KERN_ERR "VFS: Close: file count is 0\n");
1035 return 0;
1036 }
1037
1038 if (filp->f_op && filp->f_op->flush)
1039 retval = filp->f_op->flush(filp, id);
1040
1041 if (likely(!(filp->f_mode & FMODE_PATH))) {
1042 dnotify_flush(filp, id);
1043 locks_remove_posix(filp, id);
1044 }
1045 fput(filp);
1046 return retval;
1047 }
1048
1049 EXPORT_SYMBOL(filp_close);
1050
1051 /*
1052 * Careful here! We test whether the file pointer is NULL before
1053 * releasing the fd. This ensures that one clone task can't release
1054 * an fd while another clone is opening it.
1055 */
1056 SYSCALL_DEFINE1(close, unsigned int, fd)
1057 {
1058 int retval = __close_fd(current->files, fd);
1059
1060 /* can't restart close syscall because file table entry was cleared */
1061 if (unlikely(retval == -ERESTARTSYS ||
1062 retval == -ERESTARTNOINTR ||
1063 retval == -ERESTARTNOHAND ||
1064 retval == -ERESTART_RESTARTBLOCK))
1065 retval = -EINTR;
1066
1067 return retval;
1068 }
1069 EXPORT_SYMBOL(sys_close);
1070
1071 /*
1072 * This routine simulates a hangup on the tty, to arrange that users
1073 * are given clean terminals at login time.
1074 */
1075 SYSCALL_DEFINE0(vhangup)
1076 {
1077 if (capable(CAP_SYS_TTY_CONFIG)) {
1078 tty_vhangup_self();
1079 return 0;
1080 }
1081 return -EPERM;
1082 }
1083
1084 /*
1085 * Called when an inode is about to be open.
1086 * We use this to disallow opening large files on 32bit systems if
1087 * the caller didn't specify O_LARGEFILE. On 64bit systems we force
1088 * on this flag in sys_open.
1089 */
1090 int generic_file_open(struct inode * inode, struct file * filp)
1091 {
1092 if (!(filp->f_flags & O_LARGEFILE) && i_size_read(inode) > MAX_NON_LFS)
1093 return -EOVERFLOW;
1094 return 0;
1095 }
1096
1097 EXPORT_SYMBOL(generic_file_open);
1098
1099 /*
1100 * This is used by subsystems that don't want seekable
1101 * file descriptors. The function is not supposed to ever fail, the only
1102 * reason it returns an 'int' and not 'void' is so that it can be plugged
1103 * directly into file_operations structure.
1104 */
1105 int nonseekable_open(struct inode *inode, struct file *filp)
1106 {
1107 filp->f_mode &= ~(FMODE_LSEEK | FMODE_PREAD | FMODE_PWRITE);
1108 return 0;
1109 }
1110
1111 EXPORT_SYMBOL(nonseekable_open);