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