Merge to VServer 1.9.0
[linux-2.6.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/utime.h>
10 #include <linux/file.h>
11 #include <linux/smp_lock.h>
12 #include <linux/quotaops.h>
13 #include <linux/dnotify.h>
14 #include <linux/module.h>
15 #include <linux/slab.h>
16 #include <linux/tty.h>
17 #include <linux/namei.h>
18 #include <linux/backing-dev.h>
19 #include <linux/security.h>
20 #include <linux/mount.h>
21 #include <linux/vfs.h>
22 #include <asm/uaccess.h>
23 #include <linux/fs.h>
24 #include <linux/pagemap.h>
25 #include <linux/vserver/xid.h>
26
27 #include <asm/unistd.h>
28
29 int vfs_statfs(struct super_block *sb, struct kstatfs *buf)
30 {
31         int retval = -ENODEV;
32
33         if (sb) {
34                 retval = -ENOSYS;
35                 if (sb->s_op->statfs) {
36                         memset(buf, 0, sizeof(*buf));
37                         retval = security_sb_statfs(sb);
38                         if (retval)
39                                 return retval;
40                         retval = sb->s_op->statfs(sb, buf);
41                         if (retval == 0 && buf->f_frsize == 0)
42                                 buf->f_frsize = buf->f_bsize;
43                 }
44         }
45         return retval;
46 }
47
48 EXPORT_SYMBOL(vfs_statfs);
49
50 static int vfs_statfs_native(struct super_block *sb, struct statfs *buf)
51 {
52         struct kstatfs st;
53         int retval;
54
55         retval = vfs_statfs(sb, &st);
56         if (retval)
57                 return retval;
58
59         if (sizeof(*buf) == sizeof(st))
60                 memcpy(buf, &st, sizeof(st));
61         else {
62                 if (sizeof buf->f_blocks == 4) {
63                         if ((st.f_blocks | st.f_bfree | st.f_bavail) &
64                             0xffffffff00000000ULL)
65                                 return -EOVERFLOW;
66                         /*
67                          * f_files and f_ffree may be -1; it's okay to stuff
68                          * that into 32 bits
69                          */
70                         if (st.f_files != -1 &&
71                             (st.f_files & 0xffffffff00000000ULL))
72                                 return -EOVERFLOW;
73                         if (st.f_ffree != -1 &&
74                             (st.f_ffree & 0xffffffff00000000ULL))
75                                 return -EOVERFLOW;
76                 }
77
78                 buf->f_type = st.f_type;
79                 buf->f_bsize = st.f_bsize;
80                 buf->f_blocks = st.f_blocks;
81                 buf->f_bfree = st.f_bfree;
82                 buf->f_bavail = st.f_bavail;
83                 buf->f_files = st.f_files;
84                 buf->f_ffree = st.f_ffree;
85                 buf->f_fsid = st.f_fsid;
86                 buf->f_namelen = st.f_namelen;
87                 buf->f_frsize = st.f_frsize;
88                 memset(buf->f_spare, 0, sizeof(buf->f_spare));
89         }
90         return 0;
91 }
92
93 static int vfs_statfs64(struct super_block *sb, struct statfs64 *buf)
94 {
95         struct kstatfs st;
96         int retval;
97
98         retval = vfs_statfs(sb, &st);
99         if (retval)
100                 return retval;
101
102         if (sizeof(*buf) == sizeof(st))
103                 memcpy(buf, &st, sizeof(st));
104         else {
105                 buf->f_type = st.f_type;
106                 buf->f_bsize = st.f_bsize;
107                 buf->f_blocks = st.f_blocks;
108                 buf->f_bfree = st.f_bfree;
109                 buf->f_bavail = st.f_bavail;
110                 buf->f_files = st.f_files;
111                 buf->f_ffree = st.f_ffree;
112                 buf->f_fsid = st.f_fsid;
113                 buf->f_namelen = st.f_namelen;
114                 buf->f_frsize = st.f_frsize;
115                 memset(buf->f_spare, 0, sizeof(buf->f_spare));
116         }
117         return 0;
118 }
119
120 asmlinkage long sys_statfs(const char __user * path, struct statfs __user * buf)
121 {
122         struct nameidata nd;
123         int error;
124
125         error = user_path_walk(path, &nd);
126         if (!error) {
127                 struct statfs tmp;
128                 error = vfs_statfs_native(nd.dentry->d_inode->i_sb, &tmp);
129                 if (!error && copy_to_user(buf, &tmp, sizeof(tmp)))
130                         error = -EFAULT;
131                 path_release(&nd);
132         }
133         return error;
134 }
135
136
137 asmlinkage long sys_statfs64(const char __user *path, size_t sz, struct statfs64 __user *buf)
138 {
139         struct nameidata nd;
140         long error;
141
142         if (sz != sizeof(*buf))
143                 return -EINVAL;
144         error = user_path_walk(path, &nd);
145         if (!error) {
146                 struct statfs64 tmp;
147                 error = vfs_statfs64(nd.dentry->d_inode->i_sb, &tmp);
148                 if (!error && copy_to_user(buf, &tmp, sizeof(tmp)))
149                         error = -EFAULT;
150                 path_release(&nd);
151         }
152         return error;
153 }
154
155
156 asmlinkage long sys_fstatfs(unsigned int fd, struct statfs __user * buf)
157 {
158         struct file * file;
159         struct statfs tmp;
160         int error;
161
162         error = -EBADF;
163         file = fget(fd);
164         if (!file)
165                 goto out;
166         error = vfs_statfs_native(file->f_dentry->d_inode->i_sb, &tmp);
167         if (!error && copy_to_user(buf, &tmp, sizeof(tmp)))
168                 error = -EFAULT;
169         fput(file);
170 out:
171         return error;
172 }
173
174 asmlinkage long sys_fstatfs64(unsigned int fd, size_t sz, struct statfs64 __user *buf)
175 {
176         struct file * file;
177         struct statfs64 tmp;
178         int error;
179
180         if (sz != sizeof(*buf))
181                 return -EINVAL;
182
183         error = -EBADF;
184         file = fget(fd);
185         if (!file)
186                 goto out;
187         error = vfs_statfs64(file->f_dentry->d_inode->i_sb, &tmp);
188         if (!error && copy_to_user(buf, &tmp, sizeof(tmp)))
189                 error = -EFAULT;
190         fput(file);
191 out:
192         return error;
193 }
194
195 int do_truncate(struct dentry *dentry, loff_t length)
196 {
197         int err;
198         struct iattr newattrs;
199
200         /* Not pretty: "inode->i_size" shouldn't really be signed. But it is. */
201         if (length < 0)
202                 return -EINVAL;
203
204         newattrs.ia_size = length;
205         newattrs.ia_valid = ATTR_SIZE | ATTR_CTIME;
206         down(&dentry->d_inode->i_sem);
207         down_write(&dentry->d_inode->i_alloc_sem);
208         err = notify_change(dentry, &newattrs);
209         up_write(&dentry->d_inode->i_alloc_sem);
210         up(&dentry->d_inode->i_sem);
211         return err;
212 }
213
214 static inline long do_sys_truncate(const char __user * path, loff_t length)
215 {
216         struct nameidata nd;
217         struct inode * inode;
218         int error;
219
220         error = -EINVAL;
221         if (length < 0) /* sorry, but loff_t says... */
222                 goto out;
223
224         error = user_path_walk(path, &nd);
225         if (error)
226                 goto out;
227         inode = nd.dentry->d_inode;
228
229         /* For directories it's -EISDIR, for other non-regulars - -EINVAL */
230         error = -EISDIR;
231         if (S_ISDIR(inode->i_mode))
232                 goto dput_and_out;
233
234         error = -EINVAL;
235         if (!S_ISREG(inode->i_mode))
236                 goto dput_and_out;
237
238         error = permission(inode,MAY_WRITE,&nd);
239         if (error)
240                 goto dput_and_out;
241
242         error = -EROFS;
243         if (IS_RDONLY(inode))
244                 goto dput_and_out;
245
246         error = -EPERM;
247         if (IS_IMMUTABLE(inode) || IS_APPEND(inode))
248                 goto dput_and_out;
249
250         /*
251          * Make sure that there are no leases.
252          */
253         error = break_lease(inode, FMODE_WRITE);
254         if (error)
255                 goto dput_and_out;
256
257         error = get_write_access(inode);
258         if (error)
259                 goto dput_and_out;
260
261         error = locks_verify_truncate(inode, NULL, length);
262         if (!error) {
263                 DQUOT_INIT(inode);
264                 error = do_truncate(nd.dentry, length);
265         }
266         put_write_access(inode);
267
268 dput_and_out:
269         path_release(&nd);
270 out:
271         return error;
272 }
273
274 asmlinkage long sys_truncate(const char __user * path, unsigned long length)
275 {
276         /* on 32-bit boxen it will cut the range 2^31--2^32-1 off */
277         return do_sys_truncate(path, (long)length);
278 }
279
280 static inline long do_sys_ftruncate(unsigned int fd, loff_t length, int small)
281 {
282         struct inode * inode;
283         struct dentry *dentry;
284         struct file * file;
285         int error;
286
287         error = -EINVAL;
288         if (length < 0)
289                 goto out;
290         error = -EBADF;
291         file = fget(fd);
292         if (!file)
293                 goto out;
294
295         /* explicitly opened as large or we are on 64-bit box */
296         if (file->f_flags & O_LARGEFILE)
297                 small = 0;
298
299         dentry = file->f_dentry;
300         inode = dentry->d_inode;
301         error = -EINVAL;
302         if (!S_ISREG(inode->i_mode) || !(file->f_mode & FMODE_WRITE))
303                 goto out_putf;
304
305         error = -EINVAL;
306         /* Cannot ftruncate over 2^31 bytes without large file support */
307         if (small && length > MAX_NON_LFS)
308                 goto out_putf;
309
310         error = -EPERM;
311         if (IS_APPEND(inode))
312                 goto out_putf;
313
314         error = locks_verify_truncate(inode, file, length);
315         if (!error)
316                 error = do_truncate(dentry, length);
317 out_putf:
318         fput(file);
319 out:
320         return error;
321 }
322
323 asmlinkage long sys_ftruncate(unsigned int fd, unsigned long length)
324 {
325         return do_sys_ftruncate(fd, length, 1);
326 }
327
328 /* LFS versions of truncate are only needed on 32 bit machines */
329 #if BITS_PER_LONG == 32
330 asmlinkage long sys_truncate64(const char __user * path, loff_t length)
331 {
332         return do_sys_truncate(path, length);
333 }
334
335 asmlinkage long sys_ftruncate64(unsigned int fd, loff_t length)
336 {
337         return do_sys_ftruncate(fd, length, 0);
338 }
339 #endif
340
341 #ifdef __ARCH_WANT_SYS_UTIME
342
343 /*
344  * sys_utime() can be implemented in user-level using sys_utimes().
345  * Is this for backwards compatibility?  If so, why not move it
346  * into the appropriate arch directory (for those architectures that
347  * need it).
348  */
349
350 /* If times==NULL, set access and modification to current time,
351  * must be owner or have write permission.
352  * Else, update from *times, must be owner or super user.
353  */
354 asmlinkage long sys_utime(char __user * filename, struct utimbuf __user * times)
355 {
356         int error;
357         struct nameidata nd;
358         struct inode * inode;
359         struct iattr newattrs;
360
361         error = user_path_walk(filename, &nd);
362         if (error)
363                 goto out;
364         inode = nd.dentry->d_inode;
365
366         error = -EROFS;
367         if (IS_RDONLY(inode))
368                 goto dput_and_out;
369
370         /* Don't worry, the checks are done in inode_change_ok() */
371         newattrs.ia_valid = ATTR_CTIME | ATTR_MTIME | ATTR_ATIME;
372         if (times) {
373                 error = -EPERM;
374                 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
375                         goto dput_and_out;
376
377                 error = get_user(newattrs.ia_atime.tv_sec, &times->actime);
378                 newattrs.ia_atime.tv_nsec = 0;
379                 if (!error) 
380                         error = get_user(newattrs.ia_mtime.tv_sec, &times->modtime);
381                 newattrs.ia_mtime.tv_nsec = 0;
382                 if (error)
383                         goto dput_and_out;
384
385                 newattrs.ia_valid |= ATTR_ATIME_SET | ATTR_MTIME_SET;
386         } else {
387                 error = -EACCES;
388                 if (IS_IMMUTABLE(inode))
389                         goto dput_and_out;
390
391                 if (current->fsuid != inode->i_uid &&
392                     (error = permission(inode,MAY_WRITE,&nd)) != 0)
393                         goto dput_and_out;
394         }
395         down(&inode->i_sem);
396         error = notify_change(nd.dentry, &newattrs);
397         up(&inode->i_sem);
398 dput_and_out:
399         path_release(&nd);
400 out:
401         return error;
402 }
403
404 #endif
405
406 /* If times==NULL, set access and modification to current time,
407  * must be owner or have write permission.
408  * Else, update from *times, must be owner or super user.
409  */
410 long do_utimes(char __user * filename, struct timeval * times)
411 {
412         int error;
413         struct nameidata nd;
414         struct inode * inode;
415         struct iattr newattrs;
416
417         error = user_path_walk(filename, &nd);
418
419         if (error)
420                 goto out;
421         inode = nd.dentry->d_inode;
422
423         error = -EROFS;
424         if (IS_RDONLY(inode))
425                 goto dput_and_out;
426
427         /* Don't worry, the checks are done in inode_change_ok() */
428         newattrs.ia_valid = ATTR_CTIME | ATTR_MTIME | ATTR_ATIME;
429         if (times) {
430                 error = -EPERM;
431                 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
432                         goto dput_and_out;
433
434                 newattrs.ia_atime.tv_sec = times[0].tv_sec;
435                 newattrs.ia_atime.tv_nsec = times[0].tv_usec * 1000;
436                 newattrs.ia_mtime.tv_sec = times[1].tv_sec;
437                 newattrs.ia_mtime.tv_nsec = times[1].tv_usec * 1000;
438                 newattrs.ia_valid |= ATTR_ATIME_SET | ATTR_MTIME_SET;
439         } else {
440                 error = -EACCES;
441                 if (IS_IMMUTABLE(inode))
442                         goto dput_and_out;
443
444                 if (current->fsuid != inode->i_uid &&
445                     (error = permission(inode,MAY_WRITE,&nd)) != 0)
446                         goto dput_and_out;
447         }
448         down(&inode->i_sem);
449         error = notify_change(nd.dentry, &newattrs);
450         up(&inode->i_sem);
451 dput_and_out:
452         path_release(&nd);
453 out:
454         return error;
455 }
456
457 asmlinkage long sys_utimes(char __user * filename, struct timeval __user * utimes)
458 {
459         struct timeval times[2];
460
461         if (utimes && copy_from_user(&times, utimes, sizeof(times)))
462                 return -EFAULT;
463         return do_utimes(filename, utimes ? times : NULL);
464 }
465
466
467 /*
468  * access() needs to use the real uid/gid, not the effective uid/gid.
469  * We do this by temporarily clearing all FS-related capabilities and
470  * switching the fsuid/fsgid around to the real ones.
471  */
472 asmlinkage long sys_access(const char __user * filename, int mode)
473 {
474         struct nameidata nd;
475         int old_fsuid, old_fsgid;
476         kernel_cap_t old_cap;
477         int res;
478
479         if (mode & ~S_IRWXO)    /* where's F_OK, X_OK, W_OK, R_OK? */
480                 return -EINVAL;
481
482         old_fsuid = current->fsuid;
483         old_fsgid = current->fsgid;
484         old_cap = current->cap_effective;
485
486         current->fsuid = current->uid;
487         current->fsgid = current->gid;
488
489         /*
490          * Clear the capabilities if we switch to a non-root user
491          *
492          * FIXME: There is a race here against sys_capset.  The
493          * capabilities can change yet we will restore the old
494          * value below.  We should hold task_capabilities_lock,
495          * but we cannot because user_path_walk can sleep.
496          */
497         if (current->uid)
498                 cap_clear(current->cap_effective);
499         else
500                 current->cap_effective = current->cap_permitted;
501
502         res = __user_walk(filename, LOOKUP_FOLLOW|LOOKUP_ACCESS, &nd);
503         if (!res) {
504                 res = permission(nd.dentry->d_inode, mode, &nd);
505                 /* SuS v2 requires we report a read only fs too */
506                 if(!res && (mode & S_IWOTH) && IS_RDONLY(nd.dentry->d_inode)
507                    && !special_file(nd.dentry->d_inode->i_mode))
508                         res = -EROFS;
509                 path_release(&nd);
510         }
511
512         current->fsuid = old_fsuid;
513         current->fsgid = old_fsgid;
514         current->cap_effective = old_cap;
515
516         return res;
517 }
518
519 asmlinkage long sys_chdir(const char __user * filename)
520 {
521         struct nameidata nd;
522         int error;
523
524         error = __user_walk(filename, LOOKUP_FOLLOW|LOOKUP_DIRECTORY, &nd);
525         if (error)
526                 goto out;
527
528         error = permission(nd.dentry->d_inode,MAY_EXEC,&nd);
529         if (error)
530                 goto dput_and_out;
531
532         set_fs_pwd(current->fs, nd.mnt, nd.dentry);
533
534 dput_and_out:
535         path_release(&nd);
536 out:
537         return error;
538 }
539
540 asmlinkage long sys_fchdir(unsigned int fd)
541 {
542         struct file *file;
543         struct dentry *dentry;
544         struct inode *inode;
545         struct vfsmount *mnt;
546         int error;
547
548         error = -EBADF;
549         file = fget(fd);
550         if (!file)
551                 goto out;
552
553         dentry = file->f_dentry;
554         mnt = file->f_vfsmnt;
555         inode = dentry->d_inode;
556
557         error = -ENOTDIR;
558         if (!S_ISDIR(inode->i_mode))
559                 goto out_putf;
560
561         error = permission(inode, MAY_EXEC, NULL);
562         if (!error)
563                 set_fs_pwd(current->fs, mnt, dentry);
564 out_putf:
565         fput(file);
566 out:
567         return error;
568 }
569
570 asmlinkage long sys_chroot(const char __user * filename)
571 {
572         struct nameidata nd;
573         int error;
574
575         error = __user_walk(filename, LOOKUP_FOLLOW | LOOKUP_DIRECTORY | LOOKUP_NOALT, &nd);
576         if (error)
577                 goto out;
578
579         error = permission(nd.dentry->d_inode,MAY_EXEC,&nd);
580         if (error)
581                 goto dput_and_out;
582
583         error = -EPERM;
584         if (!capable(CAP_SYS_CHROOT))
585                 goto dput_and_out;
586
587         set_fs_root(current->fs, nd.mnt, nd.dentry);
588         set_fs_altroot();
589         error = 0;
590 dput_and_out:
591         path_release(&nd);
592 out:
593         return error;
594 }
595
596 asmlinkage long sys_fchmod(unsigned int fd, mode_t mode)
597 {
598         struct inode * inode;
599         struct dentry * dentry;
600         struct file * file;
601         int err = -EBADF;
602         struct iattr newattrs;
603
604         file = fget(fd);
605         if (!file)
606                 goto out;
607
608         dentry = file->f_dentry;
609         inode = dentry->d_inode;
610
611         err = -EPERM;
612         if (IS_BARRIER(inode) && !vx_check(0, VX_ADMIN))
613                 goto out_putf;
614         err = -EROFS;
615         if (IS_RDONLY(inode))
616                 goto out_putf;
617         err = -EPERM;
618         if (IS_IMMUTABLE(inode) || IS_APPEND(inode))
619                 goto out_putf;
620         down(&inode->i_sem);
621         if (mode == (mode_t) -1)
622                 mode = inode->i_mode;
623         newattrs.ia_mode = (mode & S_IALLUGO) | (inode->i_mode & ~S_IALLUGO);
624         newattrs.ia_valid = ATTR_MODE | ATTR_CTIME;
625         err = notify_change(dentry, &newattrs);
626         up(&inode->i_sem);
627
628 out_putf:
629         fput(file);
630 out:
631         return err;
632 }
633
634 asmlinkage long sys_chmod(const char __user * filename, mode_t mode)
635 {
636         struct nameidata nd;
637         struct inode * inode;
638         int error;
639         struct iattr newattrs;
640
641         error = user_path_walk(filename, &nd);
642         if (error)
643                 goto out;
644         inode = nd.dentry->d_inode;
645
646         error = -EPERM;
647         if (IS_BARRIER(inode) && !vx_check(0, VX_ADMIN))
648                 goto dput_and_out;
649
650         error = -EROFS;
651         if (IS_RDONLY(inode))
652                 goto dput_and_out;
653
654         error = -EPERM;
655         if (IS_IMMUTABLE(inode) || IS_APPEND(inode))
656                 goto dput_and_out;
657
658         down(&inode->i_sem);
659         if (mode == (mode_t) -1)
660                 mode = inode->i_mode;
661         newattrs.ia_mode = (mode & S_IALLUGO) | (inode->i_mode & ~S_IALLUGO);
662         newattrs.ia_valid = ATTR_MODE | ATTR_CTIME;
663         error = notify_change(nd.dentry, &newattrs);
664         up(&inode->i_sem);
665
666 dput_and_out:
667         path_release(&nd);
668 out:
669         return error;
670 }
671
672 static int chown_common(struct dentry * dentry, uid_t user, gid_t group)
673 {
674         struct inode * inode;
675         int error;
676         struct iattr newattrs;
677
678         error = -ENOENT;
679         if (!(inode = dentry->d_inode)) {
680                 printk(KERN_ERR "chown_common: NULL inode\n");
681                 goto out;
682         }
683         error = -EROFS;
684         if (IS_RDONLY(inode))
685                 goto out;
686         error = -EPERM;
687         if (IS_IMMUTABLE(inode) || IS_APPEND(inode))
688                 goto out;
689
690         newattrs.ia_valid =  ATTR_CTIME;
691         if (user != (uid_t) -1) {
692                 newattrs.ia_valid |= ATTR_UID;
693                 newattrs.ia_uid = vx_map_uid(user);
694         }
695         if (group != (gid_t) -1) {
696                 newattrs.ia_valid |= ATTR_GID;
697                 newattrs.ia_gid = vx_map_gid(group);
698         }
699         if (!S_ISDIR(inode->i_mode))
700                 newattrs.ia_valid |= ATTR_KILL_SUID|ATTR_KILL_SGID;
701         down(&inode->i_sem);
702         error = notify_change(dentry, &newattrs);
703         up(&inode->i_sem);
704 out:
705         return error;
706 }
707
708 asmlinkage long sys_chown(const char __user * filename, uid_t user, gid_t group)
709 {
710         struct nameidata nd;
711         int error;
712
713         error = user_path_walk(filename, &nd);
714         if (!error) {
715                 error = chown_common(nd.dentry, user, group);
716                 path_release(&nd);
717         }
718         return error;
719 }
720
721 asmlinkage long sys_lchown(const char __user * filename, uid_t user, gid_t group)
722 {
723         struct nameidata nd;
724         int error;
725
726         error = user_path_walk_link(filename, &nd);
727         if (!error) {
728                 error = chown_common(nd.dentry, user, group);
729                 path_release(&nd);
730         }
731         return error;
732 }
733
734
735 asmlinkage long sys_fchown(unsigned int fd, uid_t user, gid_t group)
736 {
737         struct file * file;
738         int error = -EBADF;
739
740         file = fget(fd);
741         if (file) {
742                 error = chown_common(file->f_dentry, user, group);
743                 fput(file);
744         }
745         return error;
746 }
747
748 /*
749  * Note that while the flag value (low two bits) for sys_open means:
750  *      00 - read-only
751  *      01 - write-only
752  *      10 - read-write
753  *      11 - special
754  * it is changed into
755  *      00 - no permissions needed
756  *      01 - read-permission
757  *      10 - write-permission
758  *      11 - read-write
759  * for the internal routines (ie open_namei()/follow_link() etc). 00 is
760  * used by symlinks.
761  */
762 struct file *filp_open(const char * filename, int flags, int mode)
763 {
764         int namei_flags, error;
765         struct nameidata nd;
766
767         namei_flags = flags;
768         if ((namei_flags+1) & O_ACCMODE)
769                 namei_flags++;
770         if (namei_flags & O_TRUNC)
771                 namei_flags |= 2;
772
773         error = open_namei(filename, namei_flags, mode, &nd);
774         if (!error)
775                 return dentry_open(nd.dentry, nd.mnt, flags);
776
777         return ERR_PTR(error);
778 }
779
780 EXPORT_SYMBOL(filp_open);
781
782 struct file *dentry_open(struct dentry *dentry, struct vfsmount *mnt, int flags)
783 {
784         struct file * f;
785         struct inode *inode;
786         int error;
787
788         error = -ENFILE;
789         f = get_empty_filp();
790         if (!f)
791                 goto cleanup_dentry;
792         f->f_flags = flags;
793         f->f_mode = (flags+1) & O_ACCMODE;
794         inode = dentry->d_inode;
795         if (f->f_mode & FMODE_WRITE) {
796                 error = get_write_access(inode);
797                 if (error)
798                         goto cleanup_file;
799         }
800
801         f->f_mapping = inode->i_mapping;
802         f->f_dentry = dentry;
803         f->f_vfsmnt = mnt;
804         f->f_pos = 0;
805         f->f_op = fops_get(inode->i_fop);
806         file_move(f, &inode->i_sb->s_files);
807
808         if (f->f_op && f->f_op->open) {
809                 error = f->f_op->open(inode,f);
810                 if (error)
811                         goto cleanup_all;
812         }
813         f->f_flags &= ~(O_CREAT | O_EXCL | O_NOCTTY | O_TRUNC);
814
815         file_ra_state_init(&f->f_ra, f->f_mapping->host->i_mapping);
816
817         /* NB: we're sure to have correct a_ops only after f_op->open */
818         if (f->f_flags & O_DIRECT) {
819                 if (!f->f_mapping->a_ops || !f->f_mapping->a_ops->direct_IO) {
820                         fput(f);
821                         f = ERR_PTR(-EINVAL);
822                 }
823         }
824
825         return f;
826
827 cleanup_all:
828         fops_put(f->f_op);
829         if (f->f_mode & FMODE_WRITE)
830                 put_write_access(inode);
831         file_kill(f);
832         f->f_dentry = NULL;
833         f->f_vfsmnt = NULL;
834 cleanup_file:
835         put_filp(f);
836 cleanup_dentry:
837         dput(dentry);
838         mntput(mnt);
839         return ERR_PTR(error);
840 }
841
842 EXPORT_SYMBOL(dentry_open);
843
844 /*
845  * Find an empty file descriptor entry, and mark it busy.
846  */
847 int get_unused_fd(void)
848 {
849         struct files_struct * files = current->files;
850         int fd, error;
851
852         error = -EMFILE;
853         spin_lock(&files->file_lock);
854
855 repeat:
856         fd = find_next_zero_bit(files->open_fds->fds_bits, 
857                                 files->max_fdset, 
858                                 files->next_fd);
859
860         /*
861          * N.B. For clone tasks sharing a files structure, this test
862          * will limit the total number of files that can be opened.
863          */
864         if (fd >= current->rlim[RLIMIT_NOFILE].rlim_cur)
865                 goto out;
866
867         /* Do we need to expand the fdset array? */
868         if (fd >= files->max_fdset) {
869                 error = expand_fdset(files, fd);
870                 if (!error) {
871                         error = -EMFILE;
872                         goto repeat;
873                 }
874                 goto out;
875         }
876         
877         /* 
878          * Check whether we need to expand the fd array.
879          */
880         if (fd >= files->max_fds) {
881                 error = expand_fd_array(files, fd);
882                 if (!error) {
883                         error = -EMFILE;
884                         goto repeat;
885                 }
886                 goto out;
887         }
888
889         FD_SET(fd, files->open_fds);
890         FD_CLR(fd, files->close_on_exec);
891         files->next_fd = fd + 1;
892         vx_openfd_inc(fd);
893 #if 1
894         /* Sanity check */
895         if (files->fd[fd] != NULL) {
896                 printk(KERN_WARNING "get_unused_fd: slot %d not NULL!\n", fd);
897                 files->fd[fd] = NULL;
898         }
899 #endif
900         error = fd;
901
902 out:
903         spin_unlock(&files->file_lock);
904         return error;
905 }
906
907 EXPORT_SYMBOL(get_unused_fd);
908
909 static inline void __put_unused_fd(struct files_struct *files, unsigned int fd)
910 {
911         __FD_CLR(fd, files->open_fds);
912         if (fd < files->next_fd)
913                 files->next_fd = fd;
914 }
915
916 void fastcall put_unused_fd(unsigned int fd)
917 {
918         struct files_struct *files = current->files;
919         spin_lock(&files->file_lock);
920         __put_unused_fd(files, fd);
921         spin_unlock(&files->file_lock);
922 }
923
924 EXPORT_SYMBOL(put_unused_fd);
925
926 /*
927  * Install a file pointer in the fd array.  
928  *
929  * The VFS is full of places where we drop the files lock between
930  * setting the open_fds bitmap and installing the file in the file
931  * array.  At any such point, we are vulnerable to a dup2() race
932  * installing a file in the array before us.  We need to detect this and
933  * fput() the struct file we are about to overwrite in this case.
934  *
935  * It should never happen - if we allow dup2() do it, _really_ bad things
936  * will follow.
937  */
938
939 void fastcall fd_install(unsigned int fd, struct file * file)
940 {
941         struct files_struct *files = current->files;
942         spin_lock(&files->file_lock);
943         if (unlikely(files->fd[fd] != NULL))
944                 BUG();
945         files->fd[fd] = file;
946         spin_unlock(&files->file_lock);
947 }
948
949 EXPORT_SYMBOL(fd_install);
950
951 asmlinkage long sys_open(const char __user * filename, int flags, int mode)
952 {
953         char * tmp;
954         int fd, error;
955
956 #if BITS_PER_LONG != 32
957         flags |= O_LARGEFILE;
958 #endif
959         tmp = getname(filename);
960         fd = PTR_ERR(tmp);
961         if (!IS_ERR(tmp)) {
962                 fd = get_unused_fd();
963                 if (fd >= 0) {
964                         struct file *f = filp_open(tmp, flags, mode);
965                         error = PTR_ERR(f);
966                         if (IS_ERR(f))
967                                 goto out_error;
968                         fd_install(fd, f);
969                 }
970 out:
971                 putname(tmp);
972         }
973         return fd;
974
975 out_error:
976         put_unused_fd(fd);
977         fd = error;
978         goto out;
979 }
980
981 #ifndef __alpha__
982
983 /*
984  * For backward compatibility?  Maybe this should be moved
985  * into arch/i386 instead?
986  */
987 asmlinkage long sys_creat(const char __user * pathname, int mode)
988 {
989         return sys_open(pathname, O_CREAT | O_WRONLY | O_TRUNC, mode);
990 }
991
992 #endif
993
994 /*
995  * "id" is the POSIX thread ID. We use the
996  * files pointer for this..
997  */
998 int filp_close(struct file *filp, fl_owner_t id)
999 {
1000         int retval;
1001
1002         /* Report and clear outstanding errors */
1003         retval = filp->f_error;
1004         if (retval)
1005                 filp->f_error = 0;
1006
1007         if (!file_count(filp)) {
1008                 printk(KERN_ERR "VFS: Close: file count is 0\n");
1009                 return retval;
1010         }
1011
1012         if (filp->f_op && filp->f_op->flush) {
1013                 int err = filp->f_op->flush(filp);
1014                 if (!retval)
1015                         retval = err;
1016         }
1017
1018         dnotify_flush(filp, id);
1019         locks_remove_posix(filp, id);
1020         fput(filp);
1021         return retval;
1022 }
1023
1024 EXPORT_SYMBOL(filp_close);
1025
1026 /*
1027  * Careful here! We test whether the file pointer is NULL before
1028  * releasing the fd. This ensures that one clone task can't release
1029  * an fd while another clone is opening it.
1030  */
1031 asmlinkage long sys_close(unsigned int fd)
1032 {
1033         struct file * filp;
1034         struct files_struct *files = current->files;
1035
1036         spin_lock(&files->file_lock);
1037         if (fd >= files->max_fds)
1038                 goto out_unlock;
1039         filp = files->fd[fd];
1040         if (!filp)
1041                 goto out_unlock;
1042         files->fd[fd] = NULL;
1043         FD_CLR(fd, files->close_on_exec);
1044         __put_unused_fd(files, fd);
1045         spin_unlock(&files->file_lock);
1046         vx_openfd_dec(fd);
1047         return filp_close(filp, files);
1048
1049 out_unlock:
1050         spin_unlock(&files->file_lock);
1051         return -EBADF;
1052 }
1053
1054
1055 /*
1056  * This routine simulates a hangup on the tty, to arrange that users
1057  * are given clean terminals at login time.
1058  */
1059 asmlinkage long sys_vhangup(void)
1060 {
1061         if (capable(CAP_SYS_TTY_CONFIG)) {
1062                 tty_vhangup(current->signal->tty);
1063                 return 0;
1064         }
1065         return -EPERM;
1066 }
1067
1068 /*
1069  * Called when an inode is about to be open.
1070  * We use this to disallow opening large files on 32bit systems if
1071  * the caller didn't specify O_LARGEFILE.  On 64bit systems we force
1072  * on this flag in sys_open.
1073  */
1074 int generic_file_open(struct inode * inode, struct file * filp)
1075 {
1076         if (!(filp->f_flags & O_LARGEFILE) && i_size_read(inode) > MAX_NON_LFS)
1077                 return -EFBIG;
1078         return 0;
1079 }
1080
1081 EXPORT_SYMBOL(generic_file_open);