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