Revert to Fedora kernel-2.6.17-1.2187_FC5 patched with vs2.0.2.1; there are too many...
[linux-2.6.git] / fs / fcntl.c
1 /*
2  *  linux/fs/fcntl.c
3  *
4  *  Copyright (C) 1991, 1992  Linus Torvalds
5  */
6
7 #include <linux/syscalls.h>
8 #include <linux/init.h>
9 #include <linux/mm.h>
10 #include <linux/fs.h>
11 #include <linux/file.h>
12 #include <linux/capability.h>
13 #include <linux/dnotify.h>
14 #include <linux/smp_lock.h>
15 #include <linux/slab.h>
16 #include <linux/module.h>
17 #include <linux/security.h>
18 #include <linux/ptrace.h>
19 #include <linux/signal.h>
20 #include <linux/rcupdate.h>
21 #include <linux/vs_base.h>
22 #include <linux/vs_limit.h>
23
24 #include <asm/poll.h>
25 #include <asm/siginfo.h>
26 #include <asm/uaccess.h>
27
28 void fastcall set_close_on_exec(unsigned int fd, int flag)
29 {
30         struct files_struct *files = current->files;
31         struct fdtable *fdt;
32         spin_lock(&files->file_lock);
33         fdt = files_fdtable(files);
34         if (flag)
35                 FD_SET(fd, fdt->close_on_exec);
36         else
37                 FD_CLR(fd, fdt->close_on_exec);
38         spin_unlock(&files->file_lock);
39 }
40
41 static int get_close_on_exec(unsigned int fd)
42 {
43         struct files_struct *files = current->files;
44         struct fdtable *fdt;
45         int res;
46         rcu_read_lock();
47         fdt = files_fdtable(files);
48         res = FD_ISSET(fd, fdt->close_on_exec);
49         rcu_read_unlock();
50         return res;
51 }
52
53 /*
54  * locate_fd finds a free file descriptor in the open_fds fdset,
55  * expanding the fd arrays if necessary.  Must be called with the
56  * file_lock held for write.
57  */
58
59 static int locate_fd(struct files_struct *files, 
60                             struct file *file, unsigned int orig_start)
61 {
62         unsigned int newfd;
63         unsigned int start;
64         int error;
65         struct fdtable *fdt;
66
67         error = -EINVAL;
68         if (orig_start >= current->signal->rlim[RLIMIT_NOFILE].rlim_cur)
69                 goto out;
70
71 repeat:
72         fdt = files_fdtable(files);
73         /*
74          * Someone might have closed fd's in the range
75          * orig_start..fdt->next_fd
76          */
77         start = orig_start;
78         if (start < files->next_fd)
79                 start = files->next_fd;
80
81         newfd = start;
82         if (start < fdt->max_fdset) {
83                 newfd = find_next_zero_bit(fdt->open_fds->fds_bits,
84                         fdt->max_fdset, start);
85         }
86         
87         error = -EMFILE;
88         if (newfd >= current->signal->rlim[RLIMIT_NOFILE].rlim_cur)
89                 goto out;
90         if (!vx_files_avail(1))
91                 goto out;
92
93         error = expand_files(files, newfd);
94         if (error < 0)
95                 goto out;
96
97         /*
98          * If we needed to expand the fs array we
99          * might have blocked - try again.
100          */
101         if (error)
102                 goto repeat;
103
104         /*
105          * We reacquired files_lock, so we are safe as long as
106          * we reacquire the fdtable pointer and use it while holding
107          * the lock, no one can free it during that time.
108          */
109         if (start <= files->next_fd)
110                 files->next_fd = newfd + 1;
111
112         error = newfd;
113         
114 out:
115         return error;
116 }
117
118 int dupfd(struct file *file, unsigned int start)
119 {
120         struct files_struct * files = current->files;
121         struct fdtable *fdt;
122         int fd;
123
124         spin_lock(&files->file_lock);
125         fd = locate_fd(files, file, start);
126         if (fd >= 0) {
127                 /* locate_fd() may have expanded fdtable, load the ptr */
128                 fdt = files_fdtable(files);
129                 FD_SET(fd, fdt->open_fds);
130                 FD_CLR(fd, fdt->close_on_exec);
131                 spin_unlock(&files->file_lock);
132                 vx_openfd_inc(fd);
133                 fd_install(fd, file);
134         } else {
135                 spin_unlock(&files->file_lock);
136                 fput(file);
137         }
138
139         return fd;
140 }
141
142 EXPORT_SYMBOL_GPL(dupfd);
143
144 asmlinkage long sys_dup2(unsigned int oldfd, unsigned int newfd)
145 {
146         int err = -EBADF;
147         struct file * file, *tofree;
148         struct files_struct * files = current->files;
149         struct fdtable *fdt;
150
151         spin_lock(&files->file_lock);
152         if (!(file = fcheck(oldfd)))
153                 goto out_unlock;
154         err = newfd;
155         if (newfd == oldfd)
156                 goto out_unlock;
157         err = -EBADF;
158         if (newfd >= current->signal->rlim[RLIMIT_NOFILE].rlim_cur)
159                 goto out_unlock;
160         get_file(file);                 /* We are now finished with oldfd */
161
162         err = expand_files(files, newfd);
163         if (err < 0)
164                 goto out_fput;
165
166         /* To avoid races with open() and dup(), we will mark the fd as
167          * in-use in the open-file bitmap throughout the entire dup2()
168          * process.  This is quite safe: do_close() uses the fd array
169          * entry, not the bitmap, to decide what work needs to be
170          * done.  --sct */
171         /* Doesn't work. open() might be there first. --AV */
172
173         /* Yes. It's a race. In user space. Nothing sane to do */
174         err = -EBUSY;
175         fdt = files_fdtable(files);
176         tofree = fdt->fd[newfd];
177         if (!tofree && FD_ISSET(newfd, fdt->open_fds))
178                 goto out_fput;
179
180         rcu_assign_pointer(fdt->fd[newfd], file);
181         FD_SET(newfd, fdt->open_fds);
182         FD_CLR(newfd, fdt->close_on_exec);
183         spin_unlock(&files->file_lock);
184
185         if (tofree)
186                 filp_close(tofree, files);
187         else
188                 vx_openfd_inc(newfd);   /* fd was unused */
189
190         err = newfd;
191 out:
192         return err;
193 out_unlock:
194         spin_unlock(&files->file_lock);
195         goto out;
196
197 out_fput:
198         spin_unlock(&files->file_lock);
199         fput(file);
200         goto out;
201 }
202
203 asmlinkage long sys_dup(unsigned int fildes)
204 {
205         int ret = -EBADF;
206         struct file * file = fget(fildes);
207
208         if (file)
209                 ret = dupfd(file, 0);
210         return ret;
211 }
212
213 #define SETFL_MASK (O_APPEND | O_NONBLOCK | O_NDELAY | FASYNC | O_DIRECT | O_NOATIME)
214
215 static int setfl(int fd, struct file * filp, unsigned long arg)
216 {
217         struct inode * inode = filp->f_dentry->d_inode;
218         int error = 0;
219
220         /*
221          * O_APPEND cannot be cleared if the file is marked as append-only
222          * and the file is open for write.
223          */
224         if (((arg ^ filp->f_flags) & O_APPEND) && IS_APPEND(inode))
225                 return -EPERM;
226
227         /* O_NOATIME can only be set by the owner or superuser */
228         if ((arg & O_NOATIME) && !(filp->f_flags & O_NOATIME))
229                 if (current->fsuid != inode->i_uid && !capable(CAP_FOWNER))
230                         return -EPERM;
231
232         /* required for strict SunOS emulation */
233         if (O_NONBLOCK != O_NDELAY)
234                if (arg & O_NDELAY)
235                    arg |= O_NONBLOCK;
236
237         if (arg & O_DIRECT) {
238                 if (!filp->f_mapping || !filp->f_mapping->a_ops ||
239                         !filp->f_mapping->a_ops->direct_IO)
240                                 return -EINVAL;
241         }
242
243         if (filp->f_op && filp->f_op->check_flags)
244                 error = filp->f_op->check_flags(arg);
245         if (error)
246                 return error;
247
248         lock_kernel();
249         if ((arg ^ filp->f_flags) & FASYNC) {
250                 if (filp->f_op && filp->f_op->fasync) {
251                         error = filp->f_op->fasync(fd, filp, (arg & FASYNC) != 0);
252                         if (error < 0)
253                                 goto out;
254                 }
255         }
256
257         filp->f_flags = (arg & SETFL_MASK) | (filp->f_flags & ~SETFL_MASK);
258  out:
259         unlock_kernel();
260         return error;
261 }
262
263 static void f_modown(struct file *filp, unsigned long pid,
264                      uid_t uid, uid_t euid, int force)
265 {
266         write_lock_irq(&filp->f_owner.lock);
267         if (force || !filp->f_owner.pid) {
268                 filp->f_owner.pid = pid;
269                 filp->f_owner.uid = uid;
270                 filp->f_owner.euid = euid;
271         }
272         write_unlock_irq(&filp->f_owner.lock);
273 }
274
275 int f_setown(struct file *filp, unsigned long arg, int force)
276 {
277         int err;
278         
279         err = security_file_set_fowner(filp);
280         if (err)
281                 return err;
282
283         f_modown(filp, arg, current->uid, current->euid, force);
284         return 0;
285 }
286
287 EXPORT_SYMBOL(f_setown);
288
289 void f_delown(struct file *filp)
290 {
291         f_modown(filp, 0, 0, 0, 1);
292 }
293
294 static long do_fcntl(int fd, unsigned int cmd, unsigned long arg,
295                 struct file *filp)
296 {
297         long err = -EINVAL;
298
299         switch (cmd) {
300         case F_DUPFD:
301                 get_file(filp);
302                 err = dupfd(filp, arg);
303                 break;
304         case F_GETFD:
305                 err = get_close_on_exec(fd) ? FD_CLOEXEC : 0;
306                 break;
307         case F_SETFD:
308                 err = 0;
309                 set_close_on_exec(fd, arg & FD_CLOEXEC);
310                 break;
311         case F_GETFL:
312                 err = filp->f_flags;
313                 break;
314         case F_SETFL:
315                 err = setfl(fd, filp, arg);
316                 break;
317         case F_GETLK:
318                 err = fcntl_getlk(filp, (struct flock __user *) arg);
319                 break;
320         case F_SETLK:
321         case F_SETLKW:
322                 err = fcntl_setlk(fd, filp, cmd, (struct flock __user *) arg);
323                 break;
324         case F_GETOWN:
325                 /*
326                  * XXX If f_owner is a process group, the
327                  * negative return value will get converted
328                  * into an error.  Oops.  If we keep the
329                  * current syscall conventions, the only way
330                  * to fix this will be in libc.
331                  */
332                 err = filp->f_owner.pid;
333                 force_successful_syscall_return();
334                 break;
335         case F_SETOWN:
336                 err = f_setown(filp, arg, 1);
337                 break;
338         case F_GETSIG:
339                 err = filp->f_owner.signum;
340                 break;
341         case F_SETSIG:
342                 /* arg == 0 restores default behaviour. */
343                 if (!valid_signal(arg)) {
344                         break;
345                 }
346                 err = 0;
347                 filp->f_owner.signum = arg;
348                 break;
349         case F_GETLEASE:
350                 err = fcntl_getlease(filp);
351                 break;
352         case F_SETLEASE:
353                 err = fcntl_setlease(fd, filp, arg);
354                 break;
355         case F_NOTIFY:
356                 err = fcntl_dirnotify(fd, filp, arg);
357                 break;
358         default:
359                 break;
360         }
361         return err;
362 }
363
364 asmlinkage long sys_fcntl(unsigned int fd, unsigned int cmd, unsigned long arg)
365 {       
366         struct file *filp;
367         long err = -EBADF;
368
369         filp = fget(fd);
370         if (!filp)
371                 goto out;
372
373         err = security_file_fcntl(filp, cmd, arg);
374         if (err) {
375                 fput(filp);
376                 return err;
377         }
378
379         err = do_fcntl(fd, cmd, arg, filp);
380
381         fput(filp);
382 out:
383         return err;
384 }
385
386 #if BITS_PER_LONG == 32
387 asmlinkage long sys_fcntl64(unsigned int fd, unsigned int cmd, unsigned long arg)
388 {       
389         struct file * filp;
390         long err;
391
392         err = -EBADF;
393         filp = fget(fd);
394         if (!filp)
395                 goto out;
396
397         err = security_file_fcntl(filp, cmd, arg);
398         if (err) {
399                 fput(filp);
400                 return err;
401         }
402         err = -EBADF;
403         
404         switch (cmd) {
405                 case F_GETLK64:
406                         err = fcntl_getlk64(filp, (struct flock64 __user *) arg);
407                         break;
408                 case F_SETLK64:
409                 case F_SETLKW64:
410                         err = fcntl_setlk64(fd, filp, cmd,
411                                         (struct flock64 __user *) arg);
412                         break;
413                 default:
414                         err = do_fcntl(fd, cmd, arg, filp);
415                         break;
416         }
417         fput(filp);
418 out:
419         return err;
420 }
421 #endif
422
423 /* Table to convert sigio signal codes into poll band bitmaps */
424
425 static const long band_table[NSIGPOLL] = {
426         POLLIN | POLLRDNORM,                    /* POLL_IN */
427         POLLOUT | POLLWRNORM | POLLWRBAND,      /* POLL_OUT */
428         POLLIN | POLLRDNORM | POLLMSG,          /* POLL_MSG */
429         POLLERR,                                /* POLL_ERR */
430         POLLPRI | POLLRDBAND,                   /* POLL_PRI */
431         POLLHUP | POLLERR                       /* POLL_HUP */
432 };
433
434 static inline int sigio_perm(struct task_struct *p,
435                              struct fown_struct *fown, int sig)
436 {
437         return (((fown->euid == 0) ||
438                  (fown->euid == p->suid) || (fown->euid == p->uid) ||
439                  (fown->uid == p->suid) || (fown->uid == p->uid)) &&
440                 !security_file_send_sigiotask(p, fown, sig));
441 }
442
443 static void send_sigio_to_task(struct task_struct *p,
444                                struct fown_struct *fown, 
445                                int fd,
446                                int reason)
447 {
448         if (!sigio_perm(p, fown, fown->signum))
449                 return;
450
451         switch (fown->signum) {
452                 siginfo_t si;
453                 default:
454                         /* Queue a rt signal with the appropriate fd as its
455                            value.  We use SI_SIGIO as the source, not 
456                            SI_KERNEL, since kernel signals always get 
457                            delivered even if we can't queue.  Failure to
458                            queue in this case _should_ be reported; we fall
459                            back to SIGIO in that case. --sct */
460                         si.si_signo = fown->signum;
461                         si.si_errno = 0;
462                         si.si_code  = reason;
463                         /* Make sure we are called with one of the POLL_*
464                            reasons, otherwise we could leak kernel stack into
465                            userspace.  */
466                         BUG_ON((reason & __SI_MASK) != __SI_POLL);
467                         if (reason - POLL_IN >= NSIGPOLL)
468                                 si.si_band  = ~0L;
469                         else
470                                 si.si_band = band_table[reason - POLL_IN];
471                         si.si_fd    = fd;
472                         if (!group_send_sig_info(fown->signum, &si, p))
473                                 break;
474                 /* fall-through: fall back on the old plain SIGIO signal */
475                 case 0:
476                         group_send_sig_info(SIGIO, SEND_SIG_PRIV, p);
477         }
478 }
479
480 void send_sigio(struct fown_struct *fown, int fd, int band)
481 {
482         struct task_struct *p;
483         int pid;
484         
485         read_lock(&fown->lock);
486         pid = fown->pid;
487         if (!pid)
488                 goto out_unlock_fown;
489         
490         read_lock(&tasklist_lock);
491         if (pid > 0) {
492                 p = find_task_by_real_pid(pid);
493                 if (p) {
494                         send_sigio_to_task(p, fown, fd, band);
495                 }
496         } else {
497                 do_each_task_pid(-pid, PIDTYPE_PGID, p) {
498                         send_sigio_to_task(p, fown, fd, band);
499                 } while_each_task_pid(-pid, PIDTYPE_PGID, p);
500         }
501         read_unlock(&tasklist_lock);
502  out_unlock_fown:
503         read_unlock(&fown->lock);
504 }
505
506 static void send_sigurg_to_task(struct task_struct *p,
507                                 struct fown_struct *fown)
508 {
509         if (sigio_perm(p, fown, SIGURG))
510                 group_send_sig_info(SIGURG, SEND_SIG_PRIV, p);
511 }
512
513 int send_sigurg(struct fown_struct *fown)
514 {
515         struct task_struct *p;
516         int pid, ret = 0;
517         
518         read_lock(&fown->lock);
519         pid = fown->pid;
520         if (!pid)
521                 goto out_unlock_fown;
522
523         ret = 1;
524         
525         read_lock(&tasklist_lock);
526         if (pid > 0) {
527                 p = find_task_by_real_pid(pid);
528                 if (p) {
529                         send_sigurg_to_task(p, fown);
530                 }
531         } else {
532                 do_each_task_pid(-pid, PIDTYPE_PGID, p) {
533                         send_sigurg_to_task(p, fown);
534                 } while_each_task_pid(-pid, PIDTYPE_PGID, p);
535         }
536         read_unlock(&tasklist_lock);
537  out_unlock_fown:
538         read_unlock(&fown->lock);
539         return ret;
540 }
541
542 static DEFINE_RWLOCK(fasync_lock);
543 static kmem_cache_t *fasync_cache __read_mostly;
544
545 /*
546  * fasync_helper() is used by some character device drivers (mainly mice)
547  * to set up the fasync queue. It returns negative on error, 0 if it did
548  * no changes and positive if it added/deleted the entry.
549  */
550 int fasync_helper(int fd, struct file * filp, int on, struct fasync_struct **fapp)
551 {
552         struct fasync_struct *fa, **fp;
553         struct fasync_struct *new = NULL;
554         int result = 0;
555
556         if (on) {
557                 new = kmem_cache_alloc(fasync_cache, SLAB_KERNEL);
558                 if (!new)
559                         return -ENOMEM;
560         }
561         write_lock_irq(&fasync_lock);
562         for (fp = fapp; (fa = *fp) != NULL; fp = &fa->fa_next) {
563                 if (fa->fa_file == filp) {
564                         if(on) {
565                                 fa->fa_fd = fd;
566                                 kmem_cache_free(fasync_cache, new);
567                         } else {
568                                 *fp = fa->fa_next;
569                                 kmem_cache_free(fasync_cache, fa);
570                                 result = 1;
571                         }
572                         goto out;
573                 }
574         }
575
576         if (on) {
577                 new->magic = FASYNC_MAGIC;
578                 new->fa_file = filp;
579                 new->fa_fd = fd;
580                 new->fa_next = *fapp;
581                 *fapp = new;
582                 result = 1;
583         }
584 out:
585         write_unlock_irq(&fasync_lock);
586         return result;
587 }
588
589 EXPORT_SYMBOL(fasync_helper);
590
591 void __kill_fasync(struct fasync_struct *fa, int sig, int band)
592 {
593         while (fa) {
594                 struct fown_struct * fown;
595                 if (fa->magic != FASYNC_MAGIC) {
596                         printk(KERN_ERR "kill_fasync: bad magic number in "
597                                "fasync_struct!\n");
598                         return;
599                 }
600                 fown = &fa->fa_file->f_owner;
601                 /* Don't send SIGURG to processes which have not set a
602                    queued signum: SIGURG has its own default signalling
603                    mechanism. */
604                 if (!(sig == SIGURG && fown->signum == 0))
605                         send_sigio(fown, fa->fa_fd, band);
606                 fa = fa->fa_next;
607         }
608 }
609
610 EXPORT_SYMBOL(__kill_fasync);
611
612 void kill_fasync(struct fasync_struct **fp, int sig, int band)
613 {
614         /* First a quick test without locking: usually
615          * the list is empty.
616          */
617         if (*fp) {
618                 read_lock(&fasync_lock);
619                 /* reread *fp after obtaining the lock */
620                 __kill_fasync(*fp, sig, band);
621                 read_unlock(&fasync_lock);
622         }
623 }
624 EXPORT_SYMBOL(kill_fasync);
625
626 static int __init fasync_init(void)
627 {
628         fasync_cache = kmem_cache_create("fasync_cache",
629                 sizeof(struct fasync_struct), 0, SLAB_PANIC, NULL, NULL);
630         return 0;
631 }
632
633 module_init(fasync_init)